/* ============================================================
   ATOUT PROPRE — style.css
   Font: Plus Jakarta Sans
   Palette: Navy #0D1230 · Teal #77BBBC · White #FBFBFB
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  background: #F6F8FA;
  color: #0D1230;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TOKENS ===== */
:root {
  --navy:       #0D1230;
  --navy-2:     #1A223F;
  --navy-3:     #2B3560;
  --teal:       #77BBBC;
  --teal-d:     #24676F;
  --teal-l:     #C7E4E1;
  --teal-xl:    #EAF5F4;
  --gray:       #878FA6;
  --gray-l:     #E8ECF2;
  --white:      #FBFBFB;
  --bg:         #F6F8FA;

  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --t: .28s cubic-bezier(.4, 0, .2, 1);
  --shadow: 0 2px 16px rgba(13,18,48,.08);
  --shadow-md: 0 8px 32px rgba(13,18,48,.12);
  --shadow-lg: 0 20px 60px rgba(13,18,48,.16);
}

/* ===== LAYOUT ===== */
.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }

/* ===== SCROLL ANIMATION ===== */
[data-animate] { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
[data-animate].visible { opacity: 1; transform: none; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-d);
  background: var(--teal-xl);
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--teal); background: rgba(119,187,188,.15); }

.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-head--center h2 { max-width: 520px; margin-inline: auto; }
.section-head { display: flex; align-items: flex-end; gap: 3rem; flex-wrap: wrap; }
.section-head__left { flex: 1; min-width: 260px; }
.section-head__right { flex: 1; min-width: 260px; color: var(--gray); font-size: 1.05rem; max-width: 420px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
}

/* ===== CHIPS ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 50px;
}
.chip svg { width: 10px; height: 10px; }
.chip--teal { background: var(--teal); color: var(--navy); }
.chip--outline { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.9rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(119,187,188,.35);
}
.btn--primary:hover {
  background: var(--teal-d);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(36,103,112,.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(13,18,48,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: .7rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { transition: opacity var(--t); }
.nav__logo:hover img { opacity: .75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--teal); }

.nav__cta {
  display: inline-flex !important;
  align-items: center;
  gap: .45rem;
  background: var(--teal) !important;
  color: var(--navy) !important;
  padding: .6rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: background var(--t), color var(--t), transform var(--t) !important;
}
.nav__cta svg { width: 15px; height: 15px; transition: transform var(--t); }
.nav__cta:hover { background: var(--teal-d) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(119,187,188,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(36,103,112,.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  flex: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

/* Hero content */
.hero__content { position: relative; z-index: 1; }
.hero__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }

.hero__content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__content h1 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(251,251,251,.65);
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.hv {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.hv__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(119,187,188,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
.hv__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(119,187,188,.2);
}
.hv__circle--lg {
  width: 340px; height: 340px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 20s linear infinite;
}
.hv__circle--md {
  width: 220px; height: 220px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(119,187,188,.15);
  animation: rotateSlow 14s linear infinite reverse;
}

/* Floating service cards */
.hv__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
  min-width: 170px;
}
.hv__card strong { display: block; color: var(--white); font-size: .88rem; font-weight: 700; }
.hv__card span { display: block; color: rgba(255,255,255,.5); font-size: .73rem; }
.hv__card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv__card-icon svg { width: 22px; height: 22px; }
.hv__card-icon--1 { background: rgba(119,187,188,.2); color: var(--teal); }
.hv__card-icon--2 { background: rgba(199,228,225,.15); color: var(--teal-l); }
.hv__card-icon--3 { background: rgba(36,103,112,.3); color: var(--teal); }

.hv__card--1 { top: 10%; left: -5%; animation: floatA 6s ease-in-out infinite; }
.hv__card--2 { top: 50%; right: -8%; transform: translateY(-50%); animation: floatB 7s ease-in-out infinite; }
.hv__card--3 { bottom: 12%; left: 5%; animation: floatC 5.5s ease-in-out infinite; }

/* Dots */
.hv__dots {
  position: absolute;
  bottom: 5%; right: 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.hv__dots span {
  width: 5px; height: 5px;
  background: rgba(119,187,188,.35);
  border-radius: 50%;
}

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatB { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 12px))} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes glowPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes rotateSlow { to{transform:translate(-50%,-50%) rotate(360deg)} }

/* Hero scroll cue */
.hero__cue {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.hero__cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(119,187,188,.6), transparent);
  animation: cueGrow 2s ease-in-out infinite;
}
@keyframes cueGrow { 0%,100%{transform:scaleY(1);opacity:.6} 50%{transform:scaleY(.5);opacity:1} }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.05);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 2rem 0;
}
.stat-item {
  text-align: center;
  padding: .5rem 1.5rem;
  flex: 1;
  min-width: 120px;
}
.stat-item strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat-unit { font-size: 1.2rem; font-weight: 700; color: var(--teal); }
.stat-item p { font-size: .8rem; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .04em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: var(--bg); }

.services__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gray-l);
  transition: background var(--t);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.svc-card:hover::before { background: var(--teal); }

.svc-card--featured {
  background: var(--navy);
  border-color: transparent;
}
.svc-card--featured::before { background: var(--teal); }
.svc-card--featured .svc-card__num { color: rgba(119,187,188,.2); }
.svc-card--featured h3 { color: var(--white); }
.svc-card--featured .svc-card__body p { color: rgba(251,251,251,.6); }
.svc-card--featured ul li { color: rgba(251,251,251,.55); border-color: rgba(255,255,255,.08); }
.svc-card--featured ul li::before { background: var(--teal); }
.svc-card--featured .svc-card__link { color: var(--teal); }
.svc-card--featured .svc-card__link:hover { background: rgba(119,187,188,.12); }

.svc-card__badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--teal);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.svc-card__num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(13,18,48,.06);
  line-height: 1;
  min-width: 80px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -4px;
}

.svc-card__body { display: flex; gap: 2rem; align-items: flex-start; flex: 1; }

.svc-card__icon {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-card__icon svg { width: 42px; height: 42px; }
.svc-card__icon--a { background: var(--teal-xl); color: var(--teal-d); }
.svc-card__icon--b { background: rgba(119,187,188,.18); color: var(--teal); }
.svc-card__icon--c { background: var(--teal-xl); color: var(--teal-d); }

.svc-card__text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}
.svc-card__text p { color: var(--gray); font-size: .93rem; margin-bottom: 1rem; max-width: 380px; }
.svc-card__text ul { display: flex; flex-wrap: wrap; gap: .4rem .85rem; }
.svc-card__text ul li {
  color: var(--gray);
  font-size: .82rem;
  font-weight: 500;
  padding-left: .9rem;
  position: relative;
  border-bottom: none;
}
.svc-card__text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-3);
  padding: .65rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--t), color var(--t), gap var(--t);
  flex-shrink: 0;
}
.svc-card__link svg { width: 14px; height: 14px; transition: transform var(--t); }
.svc-card__link:hover { background: var(--teal-xl); color: var(--teal-d); gap: .7rem; }
.svc-card__link:hover svg { transform: translateX(3px); }

/* ===== PROCESS ===== */
.process { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(119,187,188,.08) 0%, transparent 60%);
  pointer-events: none;
}
.process .section-head--center .eyebrow { background: rgba(119,187,188,.15); color: var(--teal); }
.process .section-head--center h2 { color: var(--white); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 36px); right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(119,187,188,.2));
  z-index: 0;
}

.process__step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.process__num {
  width: 72px; height: 72px;
  background: var(--navy-2);
  border: 2px solid rgba(119,187,188,.3);
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.process__step.visible .process__num {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  box-shadow: 0 0 0 8px rgba(119,187,188,.12);
}
.process__content h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.process__content p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { padding: 6rem 0; background: var(--navy-2); }

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.reviews__header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.reviews__score {
  text-align: right;
  flex-shrink: 0;
}
.reviews__stars { font-size: 1.1rem; color: #F59E0B; letter-spacing: .1em; margin-bottom: .2rem; }
.reviews__score strong { display: block; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.reviews__score span { font-size: .8rem; color: rgba(255,255,255,.4); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: background var(--t), transform var(--t);
  position: relative;
}
.review-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.review-card--accent {
  background: rgba(119,187,188,.1);
  border-color: rgba(119,187,188,.2);
}
.review-card--accent:hover { background: rgba(119,187,188,.15); }

.review-card__quote {
  width: 32px; height: 26px;
  color: var(--teal);
  opacity: .35;
  margin-bottom: 1.1rem;
}
.review-card > p {
  color: rgba(255,255,255,.75);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: .85rem; }
.review-card__avatar {
  width: 42px; height: 42px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
}
.review-card__author strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .1rem; }
.review-card__author span { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ===== ZONE ===== */
.zone { padding: 6rem 0; background: var(--bg); }
.zone__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Radar */
.zone__visual { display: flex; align-items: center; justify-content: center; }
.zone__radar {
  position: relative;
  width: 100%; height: 100%;
}
.zone__radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(36,103,112,.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.zone__radar-ring--1 { width: 120px; height: 120px; border-color: rgba(119,187,188,.5); }
.zone__radar-ring--2 { width: 210px; height: 210px; animation: radarPulse 2.5s ease-out infinite; }
.zone__radar-ring--3 { width: 300px; height: 300px; animation: radarPulse 2.5s ease-out infinite .5s; }

.zone__radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(119,187,188,.25) 0deg, transparent 60deg);
  border-radius: 0 100% 0 0 / 0 100% 0 0;
  animation: sweep 3s linear infinite;
}
.zone__radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(119,187,188,.15), 0 0 0 16px rgba(119,187,188,.07);
  z-index: 2;
}
.zone__radar-center svg { width: 26px; height: 26px; }

.zone__dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  z-index: 2;
}
.zone__dot--1 { top: 20%; left: 55%; animation: dotBlink 2.5s .3s infinite; }
.zone__dot--2 { top: 60%; left: 20%; animation: dotBlink 2.5s .9s infinite; }
.zone__dot--3 { top: 75%; left: 70%; animation: dotBlink 2.5s 1.5s infinite; }

@keyframes radarPulse { 0%{transform:translate(-50%,-50%) scale(.8);opacity:1} 100%{transform:translate(-50%,-50%) scale(1.1);opacity:0} }
@keyframes sweep { to{transform:rotate(360deg)} }
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* Zone content */
.zone__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.zone__content > p { color: var(--gray); margin-bottom: 2rem; }
.zone__content strong { color: var(--navy); }

.zone__pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.zpill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal-d);
  background: var(--teal-xl);
  border: 1px solid rgba(36,103,112,.15);
  padding: .5rem 1rem;
  border-radius: 50px;
}
.zpill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== ENGAGEMENTS ===== */
.engagements { padding: 6rem 0; background: var(--white); }
.engagements .section-head--center h2 { color: var(--navy); }

.eng__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.eng__item {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--gray-l);
  border-radius: var(--r);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.eng__item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal-l); }

.eng__icon {
  width: 48px; height: 48px;
  background: var(--teal-xl);
  color: var(--teal-d);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--t);
}
.eng__item:hover .eng__icon { background: var(--teal); color: var(--navy); }
.eng__icon svg { width: 22px; height: 22px; }
.eng__item h4 { font-size: .98rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.eng__item p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(36,103,112,.2) 0%, transparent 55%);
  pointer-events: none;
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

/* Panel */
.contact__panel { padding-top: 1rem; }
.contact__panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact__panel > p { color: rgba(255,255,255,.55); font-size: .95rem; margin-bottom: 2.5rem; }
.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__info li { display: flex; align-items: center; gap: 1rem; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(119,187,188,.12);
  border: 1px solid rgba(119,187,188,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ci-icon svg { width: 18px; height: 18px; }
.contact__info strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .1rem; }
.contact__info span { color: rgba(255,255,255,.5); font-size: .85rem; }

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-field:last-of-type { margin-bottom: 0; }
.form-field label { font-size: .82rem; font-weight: 700; color: var(--navy-2); }

.form-field input,
.form-field textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--gray-l);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .93rem;
  color: var(--navy);
  background: var(--bg);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(119,187,188,.2);
  background: var(--white);
}
.form-field input.error,
.form-field textarea.error { border-color: #EF4444; }
.form-field textarea { resize: vertical; min-height: 110px; }

/* Service picker */
.service-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.spick { cursor: pointer; }
.spick input { position: absolute; opacity: 0; pointer-events: none; }
.spick span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: .75rem .5rem;
  border: 1.5px solid var(--gray-l);
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--bg);
  text-align: center;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.spick span svg { width: 22px; height: 22px; }
.spick input:checked + span {
  border-color: var(--teal);
  background: var(--teal-xl);
  color: var(--teal-d);
}
.spick:hover span { border-color: var(--teal-l); color: var(--navy); }

.btn--submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.form__note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: .75rem;
}
.form__success {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  margin-top: .75rem;
}
.form__success[hidden] { display: none; }
.form__success svg { width: 20px; height: 20px; flex-shrink: 0; color: #10B981; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.05); padding: 2.5rem 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand img { opacity: .8; }
.footer__brand p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer__nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer__nav a { font-size: .85rem; color: rgba(255,255,255,.45); font-weight: 500; transition: color var(--t); }
.footer__nav a:hover { color: var(--teal); }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer__copy a { color: var(--teal); opacity: .7; transition: opacity var(--t); }
.footer__copy a:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .eng__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews__grid .review-card:nth-child(1),
  .reviews__grid .review-card:nth-child(2),
  .reviews__grid .review-card:nth-child(3) { display: block; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero__container { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero__visual { display: none; }
  .svc-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .svc-card__num { display: none; }
  .svc-card__body { flex-direction: column; gap: 1.25rem; }
  .svc-card__link { align-self: flex-start; }
  .process__steps { grid-template-columns: 1fr; gap: 2rem; }
  .process__steps::before { display: none; }
  .zone__inner { grid-template-columns: 1fr; }
  .zone__visual { display: none; }
  .contact__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.25rem; color: rgba(255,255,255,.85); }
  .nav__cta { font-size: 1.1rem !important; padding: .8rem 2rem !important; }

  .stats-bar__inner { gap: 1rem; }
  .stat-divider { display: none; }

  .service-picker { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .eng__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:last-child { grid-column: auto; }
  .reviews__header { flex-direction: column; align-items: flex-start; }
  .reviews__score { text-align: left; }
  .contact__form { padding: 1.75rem; }
  .section-head { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 2.2rem; }
  .btn { padding: .8rem 1.4rem; font-size: .88rem; }
}
