/* ════════════════════════════════════════════
   NEUROFIGHT SYSTEM — Premium Wellness Landing
   Design: VARIANCE 8 · MOTION 6 · DENSITY 4
   Font: DM Serif Display + Outfit
════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────── */
:root {
  --bg:          #FAFAF7;
  --fg:          #0a1628;
  --primary:     #081e35;
  --secondary:   #107b31;
  --accent:      #cb9439;
  --muted:       #f0f0eb;
  --muted-fg:    #687d7c;
  --border:      #c8ccb8;
  --card:        #ffffff;
  --radius:      0.75rem;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* Film grain — fixed, GPU isolated, pointer-events none */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 600; font-family: 'Outfit', sans-serif; }
em { font-style: italic; }

.logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--secondary); }

.overline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-fg);
  font-weight: 500;
}
.slogan {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.slogan-sep { color: var(--border); }

/* ── LAYOUT ──────────────────────────────── */
.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 7rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 9rem 0; } }

.section-header {
  margin-bottom: 5rem;
}
.section-header .overline { margin-bottom: 0.75rem; }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.5s var(--ease);
}
/* Before sticky: same dark color as h1 */
.navbar .nav-links a { color: var(--fg); }
.navbar .logo-text { color: var(--fg); }
.navbar .logo-text span { color: var(--secondary); }
.navbar .nav-cta { background: var(--primary); color: #fff !important; }

/* After sticky: normal colors */
.navbar.scrolled .nav-links a { color: var(--muted-fg); }
.navbar.scrolled .logo-text { color: var(--fg); }
.navbar.scrolled .logo-text span { color: var(--secondary); }
.navbar.scrolled .nav-cta { background: var(--primary); color: #fff !important; }
.navbar.scrolled {
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(10, 22, 40, 0.04);
}
.navbar-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted-fg);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 12px rgba(8, 30, 53, 0.18);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8, 30, 53, 0.25);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:last-child  { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
}
.nav-mobile-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.nav-mobile-link {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--fg);
  transition: color 0.2s;
}
.nav-mobile-link:hover, .nav-mobile-link.cta { color: var(--secondary); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 16px rgba(8, 30, 53, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8, 30, 53, 0.24);
}
.btn-ghost {
  background: transparent;
  color: var(--muted-fg);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-ghost:hover { color: var(--fg); }
.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* ── FLOW SVG ────────────────────────────── */
#flow-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 80rem;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.flow-line { fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Gaps between sections — no background, SVG visible here */
.flow-gap { position: relative; background: transparent; }

/* Images pass ABOVE the SVG line */
img, h1, h2,
.accroche-images, .contact-form, .form-ok, .temoignages-grid,
.faq-list, .contact-grid, .methode-timeline {
  position: relative;
  z-index: 2;
}

/* Text stroke to mask SVG line — apply .svg-text where needed */
/* Use --stroke-color to match section background */
.svg-text,
.methode-steps p,
.methode-steps h4 {
  -webkit-text-stroke: 3px var(--stroke-color, var(--bg));
  paint-order: stroke fill;
}
.svg-text-lg {
  -webkit-text-stroke: 6px var(--stroke-color, var(--bg));
  paint-order: stroke fill;
}
.hero-image-wrap, .pilier-image {
  z-index: 10;
}

/* Logo — clip to keep only the yin-yang icon (top 55% of image) */
.logo-link { display: flex; align-items: center; gap: 0.5rem; z-index: 10; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--fg); }
.logo-text span { color: var(--secondary); }
.logo-img { height: 3.5rem; width: auto; }
/* Footer logo */
.footer-logo-row { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-icon { height: 3.5rem; width: auto; border-radius: 50%; background: #fff; padding: 0.25rem; }
.footer-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: #fff; }
.footer-logo-text span { color: rgba(255,255,255,0.85); }

/* ── HERO ────────────────────────────────── */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* Left text col */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  gap: 1.5rem;
}
.hero-text .hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-text .hero-h1 em {
  color: var(--secondary);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.75;
  max-width: 38ch;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-fg);
  font-weight: 500;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Right image col */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-image-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 11;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(250, 250, 247, 0.6) 25%,
    rgba(250, 250, 247, 0.15) 50%,
    transparent 70%
  );
}
/* Hero floating badge */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -3rem;
  z-index: 12;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 204, 184, 0.6);
  border-radius: 1rem;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.badge-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  line-height: 1.1;
}
.badge-label {
  font-size: 0.72rem;
  color: var(--muted-fg);
  margin-top: 0.1rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted-fg));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6) translateY(10px); opacity: 0.8; }
}

/* Hero animation classes */
.anim-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .hero-image-wrap {
    height: 55vw;
    min-height: 260px;
    max-height: 420px;
    order: -1;
  }
  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      var(--bg) 100%
    );
  }
  .hero-text {
    padding: 2.5rem 1.5rem 4rem;
    margin: 0;
    max-width: 100%;
  }
  .hero-badge {
    bottom: 1rem;
    left: 1rem;
  }
  .scroll-hint { display: none; }
}

/* ── ACCROCHE ────────────────────────────── */
.accroche-section { background: var(--bg); }
.accroche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.accroche-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.accroche-text h2 { letter-spacing: -0.01em; }
.accroche-text p {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  max-width: 40ch;
  transition-delay: calc(var(--stagger, 0) * 0.08s);
}

/* Asymmetric image grid */
.accroche-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  position: relative;
  gap: 0.75rem;
  height: 480px;
}
.accroche-img-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.accroche-img {
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.accroche-img--tall { height: 100%; }
.accroche-img--wide { flex: 1 1 55%; }
.accroche-img--square { flex: 1 1 45%; }
.accroche-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.accroche-img:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .accroche-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .accroche-images { height: 380px; }
  .accroche-text p { max-width: 100%; }
}

/* ── 3 PILIERS ───────────────────────────── */
.piliers-section {
  background: var(--muted);
  overflow: visible;
}
.pilier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  margin: 0 auto;
  max-width: 90rem;
}
.pilier-row--ltr .pilier-image { order: 1; }
.pilier-row--ltr .pilier-content { order: 2; }
.pilier-row--rtl .pilier-content { order: 1; }
.pilier-row--rtl .pilier-image { order: 2; }

.pilier-row + .pilier-row { margin-top: 0; }

/* Image side */
.pilier-image {
  position: relative;
  overflow: hidden;
}
.pilier-image-inner {
  width: 100%;
  height: 100%;
}
.pilier-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.pilier-row:hover .pilier-image-inner img { transform: scale(1.03); }
.pilier-image-tint {
  position: absolute;
  inset: 0;
  z-index: 11;
}
.pilier-number {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  border: 2px solid;
  border-radius: 0.5rem;
  padding: 0.2em 0.4em;
  backdrop-filter: blur(4px);
  background: rgba(250, 250, 247, 0.7);
}

/* Content side */
.pilier-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 2;
  transform: scale(0);
  opacity: 0;
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease;
}
.pilier-content.pilier-visible {
  transform: scale(1);
  opacity: 1;
}
.pilier-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 2rem;
  width: fit-content;
}
.pilier-h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  border-left: 3px solid var(--accent-clr, var(--primary));
  padding-left: 1rem;
  margin-left: -1rem;
}
.pilier-desc {
  font-size: 0.97rem;
  color: var(--muted-fg);
  line-height: 1.8;
  max-width: 44ch;
}
.pilier-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.5rem;
}
.pilier-features li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}
.pilier-bar {
  width: 40px;
  height: 2px;
  border-radius: 1px;
  margin-top: 0.5rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .pilier-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pilier-row--ltr .pilier-image,
  .pilier-row--rtl .pilier-image { order: 1; height: 260px; }
  .pilier-row--ltr .pilier-content,
  .pilier-row--rtl .pilier-content { order: 2; padding: 2.5rem 1.5rem; }
  .pilier-number { font-size: 3rem; }
}

/* ── METHODE ─────────────────────────────── */
.methode-section { background: var(--bg); }
.methode-timeline {
  position: relative;
  margin-top: 1rem;
}
.methode-line-track {
  position: absolute;
  top: 1.75rem;
  left: calc(12.5% - 0.5px);
  right: calc(12.5% - 0.5px);
  height: 2.5px;
  background: var(--border);
  z-index: 0;
}
.methode-line-fill {
  height: 100%;
  background: var(--secondary);
  width: 0%;
  transition: width 0.05s linear;
}
.methode-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}
.methode-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 4px solid;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-circle span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.methode-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.methode-step p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .methode-steps { grid-template-columns: 1fr 1fr; }
  .methode-line-track { display: none; }
}
@media (max-width: 480px) {
  .methode-steps { grid-template-columns: 1fr; }
}

/* ── TEMOIGNAGES ─────────────────────────── */
.temoignages-section { background: var(--muted); }

/* Carousel */
.carousel { position: relative; }
.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.temoignage {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem 2rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.4s var(--ease);
  box-shadow: 0 1px 4px rgba(10, 22, 40, 0.04);
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.temoignage:hover {
  box-shadow: 0 12px 48px rgba(10, 22, 40, 0.07);
  transform: translateY(-3px);
}
.temoignage--featured {
  padding: 3rem 2.75rem 2.5rem;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
}
.temoignage-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--secondary);
  line-height: 0.6;
  margin-bottom: 1.25rem;
  opacity: 0.3;
}
.temoignage-quote-mark.small { font-size: 2.5rem; }
.temoignage-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.temoignage--featured .temoignage-text { font-size: 1.2rem; }
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.author-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-weight: 500;
}
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active { background: var(--primary); }

@media (max-width: 768px) {
  .carousel-track {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .carousel-track > .temoignage {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .carousel-dots { display: flex; }
}

/* ── CTA BAND ────────────────────────────── */
.cta-band {
  background: var(--primary);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band-text h2 {
  color: #fff;
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.cta-bars div { height: 100%; }

@media (max-width: 640px) {
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band-inner .btn { width: 100%; justify-content: center; }
}

/* ── FAQ ─────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}
.faq-header { position: sticky; top: 6rem; }
.faq-header h2 { margin: 0.75rem 0 1rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 204, 184, 0.2);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
  transition: box-shadow 0.3s var(--ease);
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(10, 22, 40, 0.07); }
.faq-item[open] { box-shadow: 0 4px 20px rgba(10, 22, 40, 0.07); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  font-size: 0.93rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--border-clr, var(--primary)); }
.faq-chevron {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-header { position: static; }
}

/* ── CONTACT ─────────────────────────────── */
.contact-section { background: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-left .overline { margin-bottom: 0.75rem; }
.contact-left h2 { margin-bottom: 1.25rem; }
.contact-desc {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-reassurances {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.reassurance-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reassurance-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.reassurance-sub {
  font-size: 0.83rem;
  color: var(--muted-fg);
  line-height: 1.6;
}
.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form */
.contact-form {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.05),
              0 1px 0 rgba(200, 204, 184, 0.6);
  position: relative;
}
.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--fg);
}
.form-input {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border-radius: 0.6rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input::placeholder { color: rgba(104, 125, 124, 0.6); }
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 30, 53, 0.06);
}

/* Success state */
.form-success {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.05);
}
.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(16, 123, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-image { display: none; }
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--fg);
  color: rgba(255, 255, 255, 0.75);
  z-index: 10;
  padding: 3.5rem 0 2rem;
  position: relative;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
.footer-slogan {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.7);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── FLOATING CTA ────────────────────────── */
#float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 24px rgba(8, 30, 53, 0.3);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: all 0.45s var(--ease);
}
#float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8, 30, 53, 0.35);
}

/* ── SCROLL REVEAL (GSAP driven, set base state) ─ */
.anim {
  opacity: 0;
  transform: translateY(36px);
  /* GSAP overrides these */
}

/* ── UTILITY ─────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 5rem 0; }
}
