@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --bg: #f8fafc;
  --text: #1e293b;
  --gray: #64748b;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3vw;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar__logo {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.3rem;
  gap: 0.5rem;
  color: var(--primary);
}

.navbar__logo-img {
  height: 68px;
  width: auto;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

.navbar__menu a:hover {
  color: var(--primary);
}

.navbar__cta {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.navbar__cta:hover {
  background: var(--primary-light);
}

.navbar__hamburger {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 3vw 2rem 3vw;
  gap: 2rem;
  min-height: 80vh;
}

.hero__content {
  max-width: 600px;
}

.hero__badges-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
}
.hero__badges {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 1.13rem;
  color: var(--gray);
}
.hero__stars {
  color: #fbbf24;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.18rem;
  font-size: 1.25rem;
}
.hero__badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__badges .bx-user,
.hero__badges .bx-shield-check {
  color: var(--primary);
  font-size: 1.2em;
}
.hero__partner-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.7rem;
}
.hero__partner {
  background: #e7f0ff;
  color: var(--primary);
  padding: 0.7rem 2.2rem;
  border-radius: 999px;
  font-size: 1.13rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(37,99,235,0.06);
}
.hero__partner .bx-check-circle {
  color: var(--primary);
  font-size: 1.2em;
}
h1 {
  font-size: 3.3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.highlight {
  color: var(--primary);
  border-bottom: 4px solid var(--primary);
  padding-bottom: 2px;
}
.highlight--big {
  font-size: 4.1rem;
  font-weight: 900;
  letter-spacing: -2px;
  display: inline-block;
  line-height: 1.05;
  border-bottom: 7px solid var(--primary);
  padding-bottom: 6px;
  margin-bottom: 0.2em;
}
.hero__subtitle {
  font-size: 2.1rem;
  font-weight: 700;
  color: #333;
  display: inline-block;
  margin-top: 0.2em;
}
.macostep {
  color: var(--primary);
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  color: var(--gray);
  margin-bottom: 2.2rem;
  margin-top: 0.7rem;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-light);
}

.btn--secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: #fff;
}

.hero__features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.06);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 180px;
  flex: 1;
}

.feature i {
  font-size: 2rem;
  color: var(--primary);
}

.feature b {
  font-size: 1.05rem;
  color: var(--text);
}

.feature span {
  display: block;
  color: var(--gray);
  font-size: 0.95rem;
}

.hero__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f0f6ff 60%, #e0f2fe 100%);
  border-radius: 2.7rem;
  padding: 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.10);
  overflow: hidden;
}
.hero__image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  background: url('assets/img/favicon.ico') no-repeat center center;
  background-size: contain;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.hero__image img {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  border-radius: 2.5rem;
  box-shadow: 0 12px 48px 0 rgba(37,99,235,0.13);
  border: 3px solid #fff;
  background: #f8fafc;
  padding: 0.5rem;
  display: block;
}

.hero__cta-group--big {
  margin-top: 2.5rem;
  margin-bottom: 1.7rem;
  display: flex;
  gap: 1.2rem;
}
.btn--cta-main {
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.05rem 2.3rem;
  border-radius: 1.1rem;
  box-shadow: 0 4px 16px 0 rgba(37,99,235,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn--cta-main:hover {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 6px 24px 0 rgba(37,99,235,0.18);
}
.btn--cta-secondary {
  background: #fff;
  color: #222;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 1.05rem 2.3rem;
  border-radius: 1.1rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 8px 0 rgba(30,41,59,0.04);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border 0.2s, color 0.2s;
}
.btn--cta-secondary:hover {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--cta-secondary .bx {
  font-size: 1.3em;
}

.hero__stats {
  display: flex;
  gap: 4vw;
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
}
.stat {
  text-align: left;
  min-width: 150px;
}
.stat__value {
  font-size: 2.1rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.1rem;
}
.stat__label {
  font-size: 1.08rem;
  font-weight: 700;
  color: #222;
}
.stat__desc {
  font-size: 0.98rem;
  color: var(--gray);
  margin-top: 0.1rem;
}

/* Rimuovi cta-stats */
.cta-stats, .cta-stats__cta, .cta-stats__divider, .cta-stats__stats { display: none !important; }

.specializations {
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
  max-width: 1300px;
}
.specializations__header {
  text-align: center;
  margin-bottom: 2.7rem;
}
.specializations__header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.specializations__header p {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
}
.specializations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2.2rem;
}
.spec-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 2.1rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.spec-card:hover {
  box-shadow: 0 6px 32px 0 rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.025);
}
.spec-card__icon {
  background: linear-gradient(135deg, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  border-radius: 0.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.1rem;
}
.spec-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.3rem;
}
.spec-card__desc {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.spec-card__list {
  list-style: disc inside;
  color: var(--primary);
  font-size: 1.01rem;
  margin-left: 0.2rem;
}
.spec-card__list li {
  color: var(--gray);
  margin-bottom: 0.2rem;
}

@media (max-width: 1100px) {
  .specializations__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .specializations__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .spec-card {
    padding: 1.3rem 1rem 1.1rem 1rem;
    min-height: unset;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 4vw 1rem 4vw;
  }
  .hero__image {
    margin-top: 2rem;
    width: 100%;
    justify-content: flex-start;
  }
  .hero__image img {
    max-width: 100%;
  }
  .hero__features {
    gap: 1rem;
  }
  .hero__cta-group--big {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .hero__stats {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .stat {
    min-width: unset;
    text-align: left;
  }
  .navbar__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2vw;
  }
  .navbar__menu {
    gap: 1rem;
  }
  .hero {
    padding: 1.5rem 2vw 1rem 2vw;
  }
  h1 {
    font-size: 2.1rem;
  }
  .hero__badges-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .hero__features {
    flex-direction: column;
    gap: 1rem;
  }
  .feature {
    min-width: unset;
    width: 100%;
  }
  .cta-stats__cta {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-stats__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat {
    min-width: unset;
  }
  .highlight--big {
    font-size: 2.5rem;
    border-bottom-width: 4px;
    padding-bottom: 3px;
  }
}

.services {
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
  max-width: 1300px;
}
.services__header {
  text-align: center;
  margin-bottom: 2.7rem;
}
.services__header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.services__header p {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2.2rem;
}
.services__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 2.1rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 6px 32px 0 rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.025);
}
.service-card__icon {
  background: linear-gradient(135deg, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  border-radius: 0.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.1rem;
}
.service-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.3rem;
}
.service-card__desc {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.service-card__list {
  list-style: disc inside;
  color: var(--primary);
  font-size: 1.01rem;
  margin-left: 0.2rem;
}
.service-card__list li {
  color: var(--gray);
  margin-bottom: 0.2rem;
}

@media (max-width: 1200px) {
  .services__grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .services__grid--4 {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card {
    padding: 1.3rem 1rem 1.1rem 1rem;
    min-height: unset;
  }
}

.about {
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
  max-width: 1200px;
}
.about__header {
  text-align: center;
  margin-bottom: 2.7rem;
}
.about__header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.about__header p {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
}
.about__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 3.2rem;
}
.about__mission {
  flex: 1.2;
}
.about__mission h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.1rem;
}
.about__mission p {
  color: #222;
  font-size: 1.07rem;
  margin-bottom: 1.1rem;
}
.about__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image img {
  max-width: 420px;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.10);
  background: #e7f0ff;
  padding: 0.7rem;
  border: 3px solid #e7f0ff;
}
.about__stats {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-top: 2.2rem;
}
.about-stat {
  background: #f8fafc;
  border-radius: 1.1rem;
  padding: 1.2rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.04);
}
.about-stat__icon {
  background: #e7f0ff;
  color: var(--primary);
  border-radius: 0.7rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}
.about-stat__value {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.1rem;
}
.about-stat__label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

@media (max-width: 900px) {
  .about__main {
    flex-direction: column;
    gap: 2rem;
  }
  .about__image img {
    max-width: 100%;
  }
  .about__stats {
    gap: 2vw;
  }
}
@media (max-width: 600px) {
  .about__stats {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .about-stat {
    min-width: unset;
    width: 100%;
  }
}

.contacts {
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
  max-width: 1300px;
}
.contacts__header {
  text-align: center;
  margin-bottom: 2.7rem;
}
.contacts__header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.contacts__header p {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
}
.contacts__main {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: center;
}
.contacts__info-col--full {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.contacts__form-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 2.2rem 2.2rem 2rem 2.2rem;
  flex: 1.2;
  min-width: 340px;
  max-width: 520px;
}
.contacts__form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contacts__form-row {
  display: flex;
  gap: 1.1rem;
}
.contacts__form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contacts__form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.contacts__form-group input,
.contacts__form-group textarea {
  border: 1.5px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
  transition: border 0.2s;
  resize: none;
}
.contacts__form-group input:focus,
.contacts__form-group textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contacts__form-btn {
  width: 100%;
  margin-top: 0.7rem;
  font-size: 1.1rem;
}
.contacts__info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 320px;
}
.contacts__info-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 1.7rem 2rem 1.3rem 2rem;
}
.contacts__info-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.contacts__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contacts__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.contacts__info-icon {
  background: #e7f0ff;
  color: var(--primary);
  border-radius: 0.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.contacts__info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts__info-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: #1e293b;
  margin-bottom: 0.1rem;
}
.contacts__info-value {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 500;
}
.contacts__map-card {
  background: #e7f0ff;
  border-radius: 2.2rem;
  padding: 2.1rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts__map-iframe {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
  margin-bottom: 1.1rem;
  background: #e7f0ff;
}
.contacts__map-label {
  color: #2563eb;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contacts__map-address {
  color: #64748b;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contacts__cta-card {
  background: var(--primary);
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.10);
}
.contacts__cta-title {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contacts__cta-desc {
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.contacts__cta-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 0.7rem 2.1rem;
  font-size: 1.08rem;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.contacts__cta-btn:hover {
  background: #e7f0ff;
  color: #222;
}

@media (max-width: 1000px) {
  .contacts__main {
    flex-direction: column;
    gap: 2.2rem;
  }
  .contacts__form-card, .contacts__info-col {
    max-width: 100%;
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .contacts__form-card, .contacts__info-card, .contacts__map-card, .contacts__cta-card {
    padding: 1.1rem 0.7rem 1rem 0.7rem;
  }
  .contacts__main {
    gap: 1.2rem;
  }
  .contacts__map-iframe {
    height: 160px;
  }
} 

.footer {
  background: #232936;
  color: #e5e7eb;
  padding: 3.5rem 0 1.5rem 0;
  margin-top: 3rem;
}
.footer__main {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1400px;
  margin: 0 auto 2.2rem auto;
  flex-wrap: wrap;
}
.footer__col {
  min-width: 160px;
  flex: 1;
}
.footer__brand {
  flex: 2;
  min-width: 260px;
  max-width: 340px;
}
.footer__logo {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.3rem;
  gap: 0.5rem;
  color: #3b82f6;
  margin-bottom: 0.7rem;
}
.footer__desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contacts li {
  font-size: 1rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contacts i {
  color: #3b82f6;
  font-size: 1.2em;
}
.footer__col-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__col ul li {
  color: #cbd5e1;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.18s;
}
.footer__col ul li:hover {
  color: #3b82f6;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #334155;
  padding-top: 1.2rem;
  font-size: 0.98rem;
  color: #94a3b8;
}
.footer__copyright {
  flex: 1;
}
.footer__social {
  display: flex;
  gap: 0.7rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border-radius: 0.5rem;
  width: 32px;
  height: 32px;
  color: #cbd5e1;
  font-size: 1.3rem;
  transition: background 0.18s, color 0.18s;
}
.footer__social a:hover {
  background: #3b82f6;
  color: #fff;
}

@media (max-width: 1000px) {
  .footer__main {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer__col, .footer__brand {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .footer__main {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding-top: 1.5rem;
  }
} 

.clients {
  background: #f8fafc;
  padding: 3.5rem 0 2.5rem 0;
  margin-top: 2.5rem;
}
.clients__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 2.2rem;
}
.clients__slider {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients__logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  min-width: 700px;
  justify-content: center;
}
.clients__logos img {
  height: 80px;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: box-shadow 0.2s;
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.04);
}
.clients__logos img:hover {
  background: #f0f6ff;
  box-shadow: 0 4px 24px 0 rgba(37,99,235,0.10);
}
@media (max-width: 900px) {
  .clients__logos {
    gap: 2rem;
  }
  .clients__slider {
    padding: 0.5rem 0.5rem;
  }
  .clients__logos img {
    height: 54px;
    max-width: 140px;
    padding: 0.7rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .clients__logos img {
    height: 38px;
    max-width: 100px;
    padding: 0.4rem 0.7rem;
  }
  .clients__logos {
    gap: 1.1rem;
  }
} 

.hero-extra {
  max-width: 950px;
  margin: 0 auto;
  padding: 2.5rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-extra__features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.7rem;
}
.feature-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 1.5rem 2.1rem 1.2rem 2.1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 220px;
  flex: 1;
}
.feature-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: #e7f0ff;
}
.feature-card__icon--blue { color: #2563eb; }
.feature-card__icon--green { color: #22c55e; background: #e6f9ed; }
.feature-card__icon--black { color: #222; background: #f3f4f6; }
.feature-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.2rem;
}
.feature-card__desc {
  color: #64748b;
  font-size: 1.05rem;
}
.hero-extra__cta-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 2.5rem 0 2.5rem 0;
}
.hero-extra__cta-main {
  font-size: 1.35rem;
  padding: 1.2rem 3.2rem;
  border-radius: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px 0 rgba(37,99,235,0.10);
}
.hero-extra__cta-secondary {
  font-size: 1.25rem;
  padding: 1.2rem 3.2rem;
  border-radius: 1.2rem;
  font-weight: 700;
  border: 2.5px solid #d1d5db;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px 0 rgba(30,41,59,0.04);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border 0.2s, color 0.2s;
}
.hero-extra__cta-secondary:hover {
  border: 2.5px solid var(--primary);
  color: var(--primary);
}
.hero-extra__stats {
  display: flex;
  gap: 4vw;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2.5rem;
  width: 100%;
  border-top: 1.5px solid #ececec;
  padding-top: 2.2rem;
}
.hero-extra__stat {
  text-align: center;
  min-width: 180px;
}
.hero-extra__stat-value {
  font-size: 2.7rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.2rem;
}
.hero-extra__stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
}
.hero-extra__stat-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .hero-extra__features {
    gap: 1rem;
  }
  .feature-card {
    padding: 1.1rem 1rem 1rem 1rem;
    min-width: unset;
  }
  .hero-extra__stats {
    gap: 2vw;
  }
}
@media (max-width: 600px) {
  .hero-extra__features {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .feature-card {
    width: 100%;
  }
  .hero-extra__cta-row {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-extra__stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  .hero-extra__stat {
    min-width: unset;
    width: 100%;
  }
} 

.hero__main-title {
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  line-height: 1.05;
  letter-spacing: -2px;
}
.macostep-title {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1em;
  letter-spacing: -2px;
}
.hero__subtitle-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.hero__desc {
  font-size: 1.18rem;
  color: var(--gray);
  margin-bottom: 2.2rem;
  margin-top: 0.7rem;
} 

.links-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 3rem 1rem;
}
.links-page__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 2.5rem;
  text-align: center;
}
.links-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}
.links-page__card {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  padding: 1.1rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: box-shadow 0.18s, color 0.18s, background 0.18s;
  min-width: 0;
  min-height: 110px;
  justify-content: flex-start;
}
.links-page__card i {
  font-size: 2.8rem;
  color: var(--primary);
  transition: color 0.18s;
}
.links-page__card:hover {
  color: var(--primary);
  background: #e7f0ff;
  box-shadow: 0 4px 24px 0 rgba(37,99,235,0.10);
}
.links-page__card:hover i {
  color: #1e293b;
}
@media (max-width: 900px) {
  .links-page__list {
    max-width: 700px;
  }
  .links-page__card {
    font-size: 1.15rem;
    padding: 1.3rem 1.2rem;
    min-height: 90px;
  }
  .links-page__card i {
    font-size: 1.7rem;
  }
}
@media (max-width: 600px) {
  .links-page__card {
    font-size: 1rem;
    padding: 1rem 1.1rem;
    min-height: 70px;
  }
  .links-page__card i {
    font-size: 1.3rem;
  }
} 

.projects {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
}
.projects__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.projects__title span {
  border-bottom: 7px solid var(--primary);
  padding-bottom: 2px;
}
.projects__subtitle {
  color: var(--gray);
  font-size: 1.18rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.7rem;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2.2rem;
}
.project-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.18s, transform 0.18s;
}
.project-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.project-card {
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
}
.project-card:hover, .project-card a:hover .project-card {
  box-shadow: 0 6px 32px 0 rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.025);
}
.project-card__name, .project-card__desc, .project-card__tags span {
  text-decoration: none !important;
}
.project-card__img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.project-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #2563eb;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 0.32rem 1.1rem;
  z-index: 2;
  box-shadow: 0 2px 8px 0 rgba(37,99,235,0.10);
  display: inline-block;
}
.project-card__badge--blue { background: #2563eb; }
.project-card__badge--indigo { background: #6366f1; }
.project-card__badge--cyan { background: #06b6d4; }
.project-card__body {
  padding: 1.5rem 1.5rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.project-card__name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1e293b;
}
.project-card__year {
  color: #64748b;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.project-card__desc {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-card__tags span {
  background: #f1f5f9;
  color: #2563eb;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 0.7rem;
  padding: 0.22rem 0.9rem;
}
.project-card__img {
  position: relative;
}
.project-card__logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  z-index: 4;
  padding: 0;
}
.project-card {
  position: relative;
}
.project-card__more {
  color: #2563eb;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: color 0.18s;
}
.project-card__more i {
  font-size: 1.2em;
}
.project-card__more:hover {
  color: #1746a2;
}
@media (max-width: 1100px) {
  .projects__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .project-card__img img {
    height: 180px;
  }
} 

/* Navbar mobile */
@media (max-width: 700px) {
  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 56px;
    padding: 0.7rem 3vw;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(30,41,59,0.13);
    border: none;
  }
  body {
    padding-top: 56px;
  }
  .navbar__logo {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    order: 1;
  }
  .navbar__hamburger {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 2.1rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 0.7rem;
    transition: background 0.18s;
    z-index: 1001;
  }
  .navbar__hamburger:focus, .navbar__hamburger:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .navbar__hamburger:hover {
    background: #e7f0ff;
  }
  .navbar__menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    gap: 0.7rem;
    box-shadow: 0 8px 32px 0 rgba(30,41,59,0.10);
    z-index: 1000;
    padding: 1.2rem 0 0.7rem 0;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
    transition: max-height 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  .navbar__menu.active {
    display: flex;
    max-height: 400px;
    opacity: 1;
    overflow: visible;
  }
  .navbar__menu li {
    width: 100%;
    text-align: left;
    padding: 0.7rem 2rem;
    font-size: 1.18rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .navbar__menu li:last-child {
    border-bottom: none;
  }
  .navbar__menu a {
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  .navbar__cta {
    display: block;
    margin: 1.2rem 2rem 0.5rem 2rem;
    font-size: 1.13rem;
    padding: 1rem 0;
    border-radius: 1.1rem;
    text-align: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.10);
  }
  .navbar__cta {
    display: none !important;
  }
  .navbar__logo-text {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    margin-left: 0;
  }
}
/* Hero e sezioni principali mobile */
@media (max-width: 700px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 2vw 0.5rem 2vw;
  }
  .hero__main-title {
    font-size: 2.1rem;
  }
  .hero__subtitle-main {
    font-size: 1.3rem;
  }
  .hero__desc {
    font-size: 1rem;
  }
  .hero__features {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .feature {
    width: 100%;
    min-width: unset;
  }
  .hero__image {
    padding: 0.7rem;
    border-radius: 1.2rem;
  }
  .hero__image img {
    max-width: 100%;
    border-radius: 1.2rem;
  }
  .hero-extra {
    padding: 1.2rem 0 0.5rem 0;
    max-width: 100vw;
  }
  .hero-extra__features {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .feature-card {
    width: 100%;
    min-width: unset;
    padding: 1rem 0.7rem;
  }
  .hero-extra__cta-row {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-extra__stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  .hero-extra__stat {
    min-width: unset;
    width: 100%;
  }
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .project-card__img img {
    height: 160px;
  }
  .projects {
    padding: 2rem 0 1rem 0;
  }
} 

@media (max-width: 700px) {
  body {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .hero,
  .hero-extra,
  .projects,
  .contacts,
  .about,
  .specializations,
  .services,
  .clients,
  .footer,
  .links-page {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  .feature-card,
  .project-card,
  .contacts__info-card,
  .contacts__map-card,
  .contacts__cta-card,
  .about-stat,
  .spec-card,
  .service-card {
    margin-left: 0.5vw;
    margin-right: 0.5vw;
  }
} 

.navbar__logo a,
.navbar__logo a:visited,
.navbar__logo a:active,
.navbar__logo a:focus {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: var(--primary) !important;
  font-weight: 900;
  transition: color 0.18s;
}
.navbar__logo a:hover {
  color: var(--primary-light) !important;
} 

@media (max-width: 700px) {
  .hero__main-title {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    line-height: 1.1;
  }
  .hero__subtitle-main {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }
  .hero__desc {
    font-size: 1.08rem;
  }
}

.navbar__cta-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.navbar__cta--secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.navbar__cta--secondary:hover {
  background: var(--primary);
  color: #fff;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__cta i {
  font-size: 1.15em;
}