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

:root {
  --font-body:    'DM Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Palette Adélaïde — sage & warm */
  --bg:           #f5f3fa;
  --bg-card:      rgba(255, 255, 255, 0.85);
  --text:         #2C3028;
  --text-muted:   #6B7566;
  --text-light:   #9CA898;
  --accent:       #7A9E8E;
  --accent-hover: #5f8678;
  --accent-soft:  #A8C4B6;
  --accent-light: #E8F0EC;
  --warm:         #C4956A;
  --warm-light:   #F2E6D9;
  --border:       rgba(44, 48, 40, 0.09);
}

/* ── MESH GRADIENT BACKGROUND ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 5%  10%,  rgba(180,210,240,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 95%  5%,  rgba(220,180,230,0.38) 0%, transparent 58%),
    radial-gradient(ellipse 60% 55% at 85%  90%, rgba(190,230,210,0.40) 0%, transparent 62%),
    radial-gradient(ellipse 50% 45% at 10%  88%, rgba(210,195,245,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 50%  50%, rgba(230,215,250,0.15) 0%, transparent 60%),
    #f5f3fa;
  animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { opacity: 1; }
  100% { opacity: 0.84; filter: hue-rotate(6deg) brightness(1.02); }
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

html { background: var(--bg); scroll-behavior: auto; }
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 10000; background: transparent; pointer-events: none;
}
#scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--warm) 100%);
  transition: width 0.1s linear;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-brand {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 2.8rem;
}
#loader-bar-wrap { width: 160px; height: 1px; background: rgba(122,158,142,0.2); }
#loader-bar { height: 100%; width: 0; background: var(--accent); transition: width 0.12s linear; }
#loader-percent { font-size: 0.62rem; letter-spacing: 0.28em; color: var(--text-light); margin-top: 1.2rem; font-weight: 300; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1.4rem 2.5rem; z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.site-header.scrolled {
  background: rgba(245, 243, 250, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(0,0,0,0.04);
}
.site-logo {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 400; color: var(--text); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.3s ease;
}
.site-logo em { font-style: italic; color: var(--accent); }
.site-logo:hover { color: var(--accent); }

.main-nav { display: flex; gap: 1.2rem; align-items: center; }
.main-nav a {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.18em;
  transition: color 0.3s ease;
}
.main-nav a:hover { color: var(--text); }
a { text-decoration: none; }
.nav-cta {
  background: var(--accent) !important; color: #ffffff !important;
  padding: 0.62rem 1.4rem; font-size: 0.7rem !important;
  letter-spacing: 0.16em !important;
  border-radius: 50px !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 4px 16px rgba(122,158,142,0.28);
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,158,142,0.38) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 1001;
  width: 30px; height: 25px; position: relative;
}
.mobile-menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); margin: 5px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}
.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; height: 100vh; background: var(--bg);
    flex-direction: column; justify-content: flex-start;
    padding: 5rem 2.5rem;
    box-shadow: -1px 0 0 var(--border), -20px 0 60px rgba(0,0,0,0.05);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
  }
  .main-nav.active { right: 0; }
  .main-nav a { display: block; padding: 0.9rem 0; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
}

/* ── HERO ── */
.hero-standalone {
  position: fixed; inset: 0;
  background: linear-gradient(150deg, #f5f3fa 0%, #ede9f5 45%, var(--accent-light) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10.5rem 6vw 5.5rem; z-index: 10;
}
.hero-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem; font-weight: 500;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 13rem);
  font-weight: 400; line-height: 0.88;
  color: var(--text); margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}
.hero-heading-sub {
  display: block;
  font-size: clamp(2.6rem, 5vw, 6rem);
  font-weight: 300; font-style: italic;
  color: var(--accent); line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-tagline {
  font-size: 0.86rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.03em;
  line-height: 1.7; margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
  max-width: 560px;
}
.hero-desc {
  font-size: 0.92rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85; margin-bottom: 3rem;
  max-width: 520px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.55s;
}
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
.scroll-indicator {
  position: absolute; right: 3rem; bottom: 3rem;
  display: flex; flex-direction: column; align-items: center;
  color: var(--accent); font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed; gap: 0.8rem;
}
.scroll-line {
  width: 1px; height: 48px; background: var(--accent); transform-origin: top;
  animation: linePulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes linePulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── CANVAS ── */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 5; pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  transition: none;
}
#canvas { display: block; width: 100%; height: 100%; }

/* ── DARK OVERLAY ── */
#dark-overlay {
  position: fixed; inset: 0; z-index: 6;
  background: rgba(7, 21, 16, 0.92);
  opacity: 0; pointer-events: none; transition: none;
}

/* ── MARQUEE ── */
.marquee-wrap {
  position: fixed; bottom: 2.2rem; left: 0; right: 0;
  z-index: 8; overflow: hidden; opacity: 0; pointer-events: none;
  white-space: nowrap;
}
.marquee-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em; text-transform: uppercase;
  will-change: transform;
}

/* ── SCROLL CONTAINER ── */
#scroll-container { height: 1100vh; position: relative; }

/* ── SCROLL SECTIONS ── */
.scroll-section {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center;
  padding: 0 6vw; z-index: 7;
  opacity: 0; pointer-events: none;
  transition: none;
}
.scroll-section.visible { opacity: 1; pointer-events: auto; }
.scroll-section.align-right { justify-content: flex-end; }
.scroll-section.align-left  { justify-content: flex-start; }

/* ── SECTION INNER (card) ── */
.section-inner {
  max-width: 480px; width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.95);
  border-left: 3px solid var(--accent-soft);
  border-radius: 20px;
  padding: 2.6rem 2.4rem;
  box-shadow:
    0 8px 40px rgba(44,48,40,0.07),
    0 2px 8px rgba(0,0,0,0.04),
    0 0 0 1px rgba(122,158,142,0.06);
  position: relative;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, var(--accent-soft), transparent);
  opacity: 0.5;
}

/* ── SECTION CONTENT ── */
.section-label {
  display: block; font-size: 0.58rem;
  letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--text);
  line-height: 1.1; margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 0.85rem;
}
.section-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; font-weight: 300;
  color: var(--accent); line-height: 1.7;
  padding-left: 1rem; border-left: 2px solid var(--accent-soft);
  margin-bottom: 1.2rem;
}
.section-note {
  display: block; font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}

/* ── SECTION LIST ── */
.section-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.section-list li {
  font-size: 0.88rem; color: var(--text-muted); font-weight: 400;
  padding-left: 1.1rem; position: relative; line-height: 1.5;
}
.section-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent-soft); font-weight: 300;
}
.list-sub {
  display: block; font-size: 0.75rem;
  color: var(--text-light); font-weight: 300;
  margin-top: 0.1rem; font-style: italic;
}

/* ── STATS SECTION ── */
.section-stats {
  align-items: center; justify-content: center;
}
.stats-text {
  max-width: 680px; padding: 3.5rem 3rem;
  background: rgba(7, 21, 16, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(160,210,196,0.15);
  border-radius: 24px;
}
.stats-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: #ffffff; margin-bottom: 2.4rem; line-height: 1.15;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; margin-bottom: 2.4rem;
}
.stat-block {
  display: flex; flex-direction: column;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(160,210,196,0.15);
  border-radius: 14px; gap: 0.5rem;
  background: rgba(255,255,255,0.04);
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--accent-soft);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); line-height: 1.5; font-weight: 300; }
.stats-body { font-size: 0.88rem; line-height: 1.9; color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 1rem; }
.stats-note { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item::before { content: '✦'; font-size: 0.42rem; color: var(--accent-soft); }

/* ── CTA ── */
.cta-group { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.8rem; }
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--accent); color: #ffffff !important;
  padding: 1.1rem 2.2rem; border-radius: 50px;
  text-decoration: none; font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center; min-width: 220px;
  box-shadow: 0 6px 24px rgba(122,158,142,0.28);
}
.cta-button:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(122,158,142,0.38); color: #ffffff !important;
}
.cta-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  color: var(--text-muted) !important; text-decoration: none;
  font-weight: 300; font-size: 0.84rem; letter-spacing: 0.02em;
  transition: color 0.3s ease; padding: 0.4rem 0;
}
.cta-phone:hover { color: var(--accent) !important; }

/* ── INLINE CTA ── */
.inline-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: white !important;
  padding: 0.9rem 1.8rem; text-decoration: none; border-radius: 50px;
  font-weight: 500; font-size: 0.76rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 1.6rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(122,158,142,0.22);
}
.inline-cta:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,158,142,0.32); color: white !important;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  position: relative; z-index: 8; background: transparent;
  padding: 6rem 6vw; border-top: 1px solid var(--border);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-note {
  font-size: 0.72rem; color: var(--text-light); font-style: italic;
  margin-bottom: 3rem; margin-top: -1.5rem;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 20px rgba(44,48,40,0.05);
}
.testimonial-text {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 1.1rem;
}
.testimonial-author {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

/* ── FAQ ── */
.faq-section {
  position: relative; z-index: 8; background: transparent;
  padding: 5rem 6vw; border-top: 1px solid var(--border);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 600; margin-bottom: 2rem; display: block;
}
.faq-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 400; color: var(--text); margin-bottom: 3rem; line-height: 1.2;
  font-style: italic;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 1.6rem 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; }
.faq-question-text { font-size: 0.96rem; font-weight: 500; color: var(--text); line-height: 1.5; transition: color 0.3s ease; }
.faq-item:hover .faq-question-text { color: var(--accent); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative; color: var(--accent-soft); margin-top: 0.2rem;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-item.open .faq-question-text { color: var(--accent); }
.faq-answer {
  font-size: 0.88rem; line-height: 1.85; color: var(--text-muted); font-weight: 300;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 320px; padding-top: 1.1rem; }

/* ── FOOTER ── */
.site-footer {
  position: relative; z-index: 8; background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(122,158,142,0.12); padding: 3.5rem 3rem;
}
.footer-inner { display: flex; gap: 4rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col strong {
  font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase;
  font-weight: 600; color: var(--text); margin-bottom: 0.3rem;
}
.footer-col p, .footer-col a, .footer-col span {
  font-size: 0.8rem; color: var(--text-muted); text-decoration: none;
  line-height: 1.8; font-weight: 300;
}
.footer-col a:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  #scroll-container { height: 600vh; }

  .scroll-section {
    position: fixed !important; top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0; pointer-events: none; background: transparent !important;
    align-items: flex-end; padding-bottom: 2rem; padding-top: 0;
  }
  .scroll-section.visible { opacity: 1; pointer-events: auto; }
  .scroll-section::after { display: none; }

  #canvas-wrap { display: block; width: 100vw !important; height: 100vh !important; overflow: hidden !important; }
  #canvas { width: 100vw !important; height: 100vh !important; }
  .marquee-wrap { display: none; }
  .hero-standalone { position: fixed !important; inset: 0; min-height: unset; }

  .section-inner {
    max-width: 94vw; width: 94vw;
    margin-left: 3vw !important; margin-right: 3vw !important;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 18px 18px 14px 14px;
    padding: 1.6rem 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.9);
    border-left: 3px solid var(--accent-soft);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.07), 0 8px 24px rgba(0,0,0,0.03);
    max-height: 52vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .section-stats { align-items: center !important; padding-bottom: 0 !important; }
  .section-stats .stats-text {
    max-width: 94vw; padding: 2rem 1.2rem; margin: 0 auto;
    max-height: 82vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: rgba(7, 21, 16, 0.80);
  }
  .stats-body { font-size: 0.86rem; line-height: 1.9; margin-bottom: 1.2rem; }
  .stats-heading { font-size: clamp(1.5rem, 5vw, 1.9rem); margin-bottom: 1.4rem; }
  .section-cta .section-inner { max-height: 66vh; }
  .section-heading { font-size: clamp(1.55rem, 5.5vw, 2rem); margin-bottom: 0.8rem; line-height: 1.15; }
  .section-body { font-size: 0.84rem; line-height: 1.75; margin-bottom: 0.6rem; }
  .section-label { margin-bottom: 0.7rem; }
  .section-note { margin-top: 0.9rem; font-size: 0.6rem; }
  .hero-heading { font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .hero-heading-sub { font-size: clamp(1.7rem, 7vw, 2.8rem); }
  .stats-grid { grid-template-columns: 1fr; gap: 0.7rem; margin-bottom: 1.4rem; }
  .stat-block { padding: 1rem 1.2rem; flex-direction: row; align-items: center; gap: 1rem; }
  .stat-big { font-size: clamp(1.6rem, 6vw, 2rem); flex-shrink: 0; }
  .stat-label { font-size: 0.72rem; }
  .testimonials-section { padding: 3.5rem 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem 1.4rem; }
  .section-list li { font-size: 0.84rem; }
  .section-quote { font-size: 0.88rem; }
  .scroll-indicator { display: none; }
  .hero-standalone { padding: 7rem 5vw 3.5rem; }
  .hero-desc { max-width: 100%; margin-bottom: 0; font-size: 0.82rem; }
  .hero-tagline { font-size: 0.78rem; }
  .site-header { padding: 1.1rem 1.4rem; }
  .footer-inner { flex-direction: column; gap: 2rem; padding: 0; }
  .trust-bar { gap: 0.6rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; flex-direction: column; align-items: flex-start; }
  .cta-button { padding: 0.95rem 1.5rem; font-size: 0.76rem; min-width: unset; width: 100%; }
  .cta-phone { font-size: 0.82rem; }
  .cta-group { gap: 0.7rem; margin-top: 1.1rem; }
  .faq-section { padding: 3rem 1.4rem; }
  .faq-heading { font-size: clamp(1.6rem, 5vw, 2rem); margin-bottom: 2rem; }
  .inline-cta { padding: 0.82rem 1.4rem; font-size: 0.72rem; margin-top: 1rem; }
}
