/* ==========================================================================
   Delorme Paysage — Design tokens
   ========================================================================== */
:root {
  --ink: #202B1E;
  --ink-soft: #2B3826;
  --paper: #F1ECD9;
  --paper-2: #E2DAB8;
  --paper-3: #FDFBF3;
  --primary: #E8611F;      /* orange casque Arborisud — CTA, tampon */
  --primary-dark: #C94E14;
  --accent: #1B4552;       /* bleu pétrole du logo — highlights */
  --accent-soft: #DCE7E9;
  --lime: #6B8F3F;         /* vert feuille — pop, micro-détails */
  --text: #202B1E;
  --text-soft: #6B7364;
  --text-on-dark: #F1ECD9;
  --text-on-dark-soft: #B9C2AE;
  --line: #D9D0AC;
  --line-dark: #3A4A34;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(32, 43, 30, 0.08);
  --shadow-md: 0 12px 36px rgba(32, 43, 30, 0.16);
  --shadow-cta: 0 10px 26px rgba(232, 97, 31, 0.32);

  --ease: cubic-bezier(.16,.84,.44,1);
  --dur-fast: 180ms;
  --dur: 320ms;

  --font-display: 'Clash Display', 'Outfit', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }

a, button, .zone-chip, .faq-item__q { cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; padding: 0 24px; }
.section-head--left { margin: 0 0 40px; text-align: left; max-width: 560px; padding: 0; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin: 14px 0 12px; }
.section-head__sub { color: var(--text-soft); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary);
}
.eyebrow--dark { color: var(--lime); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 20%, transparent); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn--cta { background: var(--primary); color: #fff; box-shadow: var(--shadow-cta); }
.btn--cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(193,98,46,0.42); }
.btn--cta:active { transform: translateY(0); }
.btn--ghost { background: rgba(32,43,30,0.05); color: var(--text); }
.btn--ghost:hover { background: rgba(32,43,30,0.09); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(241,236,217,0.1); color: var(--text-on-dark); border: 1.5px solid rgba(241,236,217,0.2); }
.btn--ghost-light:hover { background: rgba(241,236,217,0.18); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid rgba(241,236,217,0.35); color: var(--text-on-dark); }
.btn--outline:hover { background: rgba(241,236,217,0.1); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 16px 0;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.nav.is-scrolled { background: rgba(241,236,217,0.85); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 10px 0; }
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--text-on-dark); transition: color var(--dur); }
.nav__logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--primary); color: var(--paper-3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.nav__logo-text em { font-style: normal; color: var(--primary); }
.nav__links { display: flex; gap: 30px; font-size: 0.92rem; font-weight: 500; color: var(--text-on-dark); transition: color var(--dur); }
.nav__links a { position: relative; padding: 4px 0; transition: color var(--dur-fast); }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--primary); transition: width var(--dur-fast) var(--ease); }
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone { display: flex; align-items: center; gap: 7px; font-size: 0.92rem; font-weight: 600; color: var(--text-on-dark); transition: color var(--dur); }
.nav__cta { padding: 11px 20px; font-size: 0.88rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav__burger span { display: block; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: background var(--dur), transform var(--dur-fast), opacity var(--dur-fast); }

.nav.is-scrolled .nav__logo,
.nav.is-scrolled .nav__links,
.nav.is-scrolled .nav__phone { color: var(--text); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; background: var(--ink); color: var(--text-on-dark);
  padding: 150px 24px 0; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(184,168,58,0.14), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -10%; width: 45%; height: 50%;
  background: radial-gradient(circle, rgba(193,98,46,0.12), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero__inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
  padding-bottom: 100px;
}
.hero__title { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.hero__title-highlight { position: relative; color: var(--lime); display: inline-block; }
.hero__underline { position: absolute; left: 0; bottom: -8px; width: 100%; height: 14px; color: var(--primary); }
.hero__sub { margin-top: 22px; font-size: 1.12rem; color: var(--text-on-dark-soft); max-width: 480px; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; font-size: 0.92rem; color: var(--text-on-dark-soft); }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--ink);
  margin-left: calc(var(--i) * -10px);
  background: linear-gradient(135deg, hsl(calc(var(--i)*70 + 70), 45%, 45%), hsl(calc(var(--i)*70 + 110), 45%, 35%));
}
.hero__trust strong { color: var(--text-on-dark); }

.hero__visual { position: relative; }
.quote-card {
  position: relative; z-index: 2;
  background: var(--paper-3); color: var(--text);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .quote-card { animation: none; } }
.quote-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.quote-card__tag { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); }
.quote-card__live { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--primary); }
.quote-card__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.quote-card__row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.quote-card__price { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); }
.quote-card__bars { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.quote-card__bar-row { display: flex; flex-direction: column; gap: 6px; }
.quote-card__bar-label { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 0.76rem; color: var(--text-soft); }
.quote-card__bar-label strong { color: var(--text); font-weight: 600; }
.quote-card__bar { height: 8px; background: var(--paper-2); border-radius: var(--radius-full); overflow: hidden; }
.quote-card__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--primary)); border-radius: inherit; transition: width 1.2s var(--ease); }
.quote-card.in-view .quote-card__bar span { width: var(--w); }
.quote-card__foot { display: flex; gap: 30px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote-card__stat strong { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.quote-card__stat small { color: var(--text-soft); font-size: 0.78rem; }

.hero__shape { position: absolute; border-radius: 50%; z-index: 1; }
.hero__shape--2 { width: 50px; height: 50px; border: 2px solid var(--accent); bottom: 10%; left: -10px; }

.box-sticker { position: absolute; z-index: 3; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35)); }
.box-sticker--1 { width: 84px; top: -46px; right: -10px; animation: bob 5s ease-in-out infinite; }
.box-sticker--2 { width: 60px; bottom: 8%; left: -38px; animation: bob 5.5s ease-in-out infinite 0.6s; }
.box-sticker--3 { width: 74px; top: 50%; right: -50px; animation: spinSlow 18s linear infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-14px) rotate(4deg); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .box-sticker { animation: none; } }
@media (max-width: 1024px) { .box-sticker--3 { display: none; } }
@media (max-width: 480px) { .box-sticker--1, .box-sticker--2 { display: none; } }

.hero__marquee { position: relative; border-top: 1px solid var(--line-dark); overflow: hidden; padding: 18px 0; }
.hero__marquee-track { display: flex; gap: 16px; white-space: nowrap; width: max-content; animation: marquee 22s linear infinite; }
.hero__marquee-track span { font-family: var(--font-display); font-size: 0.95rem; color: var(--text-on-dark-soft); text-transform: uppercase; letter-spacing: 0.08em; }
@keyframes marquee { to { transform: translateX(-25%); } }
@media (prefers-reduced-motion: reduce) { .hero__marquee-track { animation: none; } }

/* ==========================================================================
   Tape divider
   ========================================================================== */
.tape-divider {
  background: repeating-linear-gradient(-45deg, var(--lime), var(--lime) 22px, var(--ink) 22px, var(--ink) 44px);
  overflow: hidden; white-space: nowrap; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.tape-divider__track { display: inline-flex; gap: 14px; padding: 9px 0; width: max-content; animation: marquee 26s linear infinite; }
.tape-divider__track span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.05em;
  color: var(--ink); background: var(--paper-3); padding: 4px 12px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center;
}
.tape-divider__dot { background: transparent !important; color: var(--ink); padding: 0 !important; font-size: 0.9rem; }
@media (prefers-reduced-motion: reduce) { .tape-divider__track { animation: none; } }

/* ==========================================================================
   Proof / real photo section
   ========================================================================== */
.proof { padding: 100px 24px; background: var(--paper); }
.proof__inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
.proof__media { position: relative; }
.proof__media img {
  width: 100%; max-height: 360px; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg);
  border: 6px solid var(--paper-3); box-shadow: var(--shadow-md); transform: rotate(-2deg);
}
.proof__sticker { position: absolute; width: 78px; bottom: -20px; right: -24px; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.25)); animation: bob 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .proof__sticker { animation: none; } }
.proof__lead { color: var(--text-soft); font-size: 1.08rem; margin: 18px 0 26px; max-width: 480px; }
.proof__list { display: flex; flex-direction: column; gap: 16px; }
.proof__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 0.98rem; }
.proof__list svg {
  flex-shrink: 0; width: 26px; height: 26px; padding: 4px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { background: var(--paper); padding: 64px 24px; border-bottom: 1px solid var(--line); }
.stats__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); display: block; }
.stat span { color: var(--text-soft); font-size: 0.9rem; }

/* ==========================================================================
   Simulator
   ========================================================================== */
.simulator { background: var(--ink); color: var(--text-on-dark); padding: 100px 24px; }
.simulator__inner { max-width: 780px; margin: 0 auto; }
.simulator .section-head h2 { color: var(--text-on-dark); }
.simulator .section-head__sub { color: var(--text-on-dark-soft); }

.sim { background: var(--ink-soft); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 40px; }
.sim__progress { height: 4px; background: var(--line-dark); border-radius: var(--radius-full); margin-bottom: 34px; overflow: hidden; }
.sim__progress-bar { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--accent), var(--lime)); border-radius: inherit; transition: width var(--dur) var(--ease); }
.sim__label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-on-dark-soft); margin-bottom: 18px; }
.sim__step { display: none; }
.sim__step.is-active { display: block; animation: stepIn 0.4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.sim__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sim__option {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 18px; border-radius: var(--radius-md); border: 1.5px solid var(--line-dark);
  color: var(--text-on-dark); font-weight: 500; font-size: 0.95rem;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.sim__option svg { flex-shrink: 0; color: var(--lime); }
.sim__option:hover { border-color: var(--accent); background: rgba(75,99,80,0.18); transform: translateY(-2px); }
.sim__option.is-selected { border-color: var(--lime); background: rgba(184,168,58,0.14); }

.sim__result { display: none; text-align: center; }
.sim__result.is-active { display: block; animation: stepIn 0.4s var(--ease); }
.sim__price { font-family: var(--font-display); font-size: 3rem; color: var(--lime); margin: 6px 0; }
.sim__price small { font-family: var(--font-body); font-size: 1rem; color: var(--text-on-dark-soft); }
.sim__price-note { color: var(--text-on-dark-soft); font-size: 0.85rem; margin-bottom: 26px; }
.sim__form { display: flex; flex-direction: column; gap: 12px; max-width: 360px; margin: 0 auto; }
.sim__form input {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-dark);
  background: var(--ink); color: var(--text-on-dark); font: inherit;
}
.sim__form input::placeholder { color: var(--text-on-dark-soft); }
.sim__form input:focus { border-color: var(--accent); outline: none; }
.sim__form .btn { margin-top: 6px; }

.sim__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.sim__back { color: var(--text-on-dark-soft); font-size: 0.88rem; font-weight: 600; visibility: hidden; }
.sim__back.is-visible { visibility: visible; }
.sim__back:hover { color: var(--text-on-dark); }
.sim__dots { display: flex; gap: 8px; }
.sim__dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-dark); transition: background var(--dur-fast); }
.sim__dots span.is-active { background: var(--lime); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 110px 24px; max-width: 1240px; margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative;
  background: var(--paper-3); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 0 0 26px; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card h3, .service-card p, .service-card__link { margin-left: 26px; margin-right: 26px; }
.service-card__media { position: relative; height: 168px; }
.service-card__media-inner { width: 100%; height: 100%; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-card__media-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card__media-inner img { transform: scale(1.08); }
.service-card__icon {
  position: absolute; left: 18px; bottom: -22px;
  width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: transform var(--dur) var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.15rem; margin-top: 38px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 18px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.88rem; color: var(--primary); }
.service-card__link svg { transition: transform var(--dur-fast); }
.service-card__link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--ink); color: var(--text-on-dark); padding: 110px 24px; }
.process .section-head h2 { color: var(--text-on-dark); }
.process__timeline {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.process__line { position: absolute; top: 22px; left: 6%; right: 6%; height: 2px; background: var(--line-dark); z-index: 0; }
.process__line span { display: block; height: 100%; width: 0; background: var(--lime); transition: width 1.4s var(--ease); }
.process__step { position: relative; z-index: 1; }
.process__num {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--ink-soft); border: 2px solid var(--line-dark);
  font-family: var(--font-display); font-size: 0.9rem; color: var(--lime); margin-bottom: 20px;
}
.process__step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process__step p { color: var(--text-on-dark-soft); font-size: 0.9rem; }

/* ==========================================================================
   Zones
   ========================================================================== */
.zones { padding: 100px 24px; }
.zones__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.zones__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.zones__media img { width: 100%; height: 100%; min-height: 300px; max-height: 380px; object-fit: cover; display: block; }
.zones__media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,43,30,0.15), rgba(32,43,30,0.78)); }
.zones__grid { position: absolute; inset: 0; z-index: 1; display: flex; flex-wrap: wrap; align-content: flex-end; gap: 10px; padding: 28px; }
.zone-chip {
  padding: 9px 16px; border-radius: var(--radius-full); border: 1.5px solid rgba(241,236,217,0.3);
  font-size: 0.86rem; font-weight: 600; background: rgba(32,43,30,0.45); color: var(--text-on-dark);
  backdrop-filter: blur(6px);
  transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast), background var(--dur-fast);
}
.zone-chip:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); background: rgba(32,43,30,0.7); }
.zone-chip--more { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { padding: 100px 0; background: var(--paper-2); }
.testimonials .section-head { padding: 0 24px; }
.testimonials__track-wrap { overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 24px 10px; scrollbar-width: none; }
.testimonials__track-wrap::-webkit-scrollbar { display: none; }
.testimonials__track { display: flex; gap: 22px; max-width: 1240px; margin: 0 auto; }
.testi-card {
  scroll-snap-align: start; flex: 0 0 340px; background: var(--paper-3);
  border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line);
}
.testi-card__stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-card p { font-size: 0.98rem; margin-bottom: 22px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 0.8rem; font-family: var(--font-display);
}
.testi-card__author strong { display: block; font-size: 0.92rem; }
.testi-card__author small { color: var(--text-soft); font-size: 0.8rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 110px 24px; }
.faq__inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; text-align: left; font-family: var(--font-display); font-size: 1.02rem; font-weight: 500;
}
.faq-item__q svg { flex-shrink: 0; color: var(--primary); transition: transform var(--dur) var(--ease); }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-item__a p { padding-bottom: 22px; color: var(--text-soft); font-size: 0.95rem; max-width: 560px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: linear-gradient(135deg, var(--accent), #263329); padding: 100px 24px; text-align: center; color: #fff; }
.final-cta__inner { max-width: 620px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; }
.final-cta p { margin: 16px 0 32px; opacity: 0.85; font-size: 1.05rem; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: var(--text-on-dark-soft); padding: 70px 24px 30px; }
.footer__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer__brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; }
.footer__col h4 { color: var(--text-on-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer__col a:hover { color: var(--text-on-dark); }
.footer__bottom { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 24px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  display: none; align-items: center; gap: 10px; padding: 12px 16px;
  background: var(--paper-3); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(0,0,0,0.08);
}
.sticky-cta__call { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--ink); color: var(--lime); display: flex; align-items: center; justify-content: center; }
.sticky-cta__main { flex: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 70px; }
  .hero__visual { max-width: 440px; }
  .proof__inner { grid-template-columns: 1fr; gap: 40px; }
  .proof__media { max-width: 360px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .process__line { display: none; }
  .zones__inner { grid-template-columns: 1fr; gap: 30px; }
  .zones__media img { min-height: 260px; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 768px) {
  .nav__phone { display: none; }
  .nav__burger { display: flex; z-index: 501; }
  .nav__links {
    position: fixed; inset: 0; top: 0; z-index: 500;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    background: var(--ink); font-size: 1.4rem;
    transform: translateY(-100%); transition: transform var(--dur) var(--ease);
  }
  .nav__links a { color: var(--text-on-dark); }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open .nav__burger span { background: var(--text-on-dark); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .sim { padding: 26px; }
  .sim__options { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .hero { padding-top: 120px; }
  body { padding-bottom: 76px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.1rem; }
  .quote-card { transform: none; }
  .hero__shape { display: none; }
  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .btn { width: 100%; }
}
