*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth; scroll-padding-top: 70px;
  overflow-x: hidden; /* iOS Safari fix — body alone is not enough */
}
.cv-auto { content-visibility: auto; contain-intrinsic-size: auto 600px; }
body { font-family: 'Inter', sans-serif; color: #1C2B36; background: var(--cream); overflow-x: hidden; -webkit-text-size-adjust: 100%; width: 100%; }
* { box-sizing: border-box; max-width: 100%; }

:root {
  /* ── Exact match to price-estimator design system ── */
  --bg:           #F4F2ED;   /* main page background */
  --surface:      #FFFFFF;   /* white cards / sections */
  --surface2:     #F9F8F5;   /* subtle off-white */

  /* Brand greens */
  --deep:         #1A5C4A;
  --primary:      #2A7560;
  --priml:        rgba(26,92,74,0.07);
  --primb:        rgba(26,92,74,0.18);

  /* Gold */
  --gold:         #B8913A;
  --gold2:        #9a7832;
  --goldbg:       rgba(184,145,58,0.08);
  --goldbdr:      rgba(184,145,58,0.22);

  /* Text — blue-grey NOT green */
  --text:         #1C2B36;
  --textm:        #4D6070;
  --muted:        #8A9BAA;

  /* UI */
  --border:       rgba(0,0,0,0.07);
  --shadow:       0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:    0 4px 28px rgba(0,0,0,0.10);
  --radius:       14px;

  /* Legacy aliases — keep old code working */
  --green:        #1A5C4A;
  --green2:       #163D30;
  --green-light:  #2A7560;
  --ink:          #1C2B36;
  --ink2:         #4D6070;
  --ink3:         #8A9BAA;
  --bg-0:         #FFFFFF;
  --bg-1:         #F4F2ED;
  --bg-2:         #EDE8DF;
  --cream:        #F4F2ED;
  --cream2:       #EDE8DF;
  --dark:         #0a0a0a;
  --dark2:        #121212;
  --white:        #fff;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  padding: 0 6%;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-img { height: 30px; }
}

.nav-brand-inner {
  position: relative;
  height: 26px;
  transform-style: preserve-3d;
  animation: navFlip 6s ease-in-out infinite;
}

@keyframes navFlip {
  0%, 40%  { transform: rotateX(0deg); }
  50%, 90% { transform: rotateX(180deg); }
  100%     { transform: rotateX(360deg); }
}

.nav-brand-front, .nav-brand-back {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  white-space: nowrap;
}

.nav-brand-back {
  color: var(--gold);
  transform: rotateX(180deg);
}

.nav-links { display: flex; gap: 30px; list-style: none; margin-left: 40px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #3a4a44; text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--green); }

.nav-mobile-actions { display: none; align-items: center; gap: 8px; }
.nav-call-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s;
}
.nav-call-btn:active { transform: scale(0.95); }
.nav-hamburger {
  background: none; border: none; cursor: pointer;
  color: #444; padding: 8px;
}

.mobile-menu {
  display: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: absolute; top: 100%; left: 0; right: 0;
  background: white; border-bottom: 1px solid #eee;
  padding: 20px 6%;
  flex-direction: column; gap: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.hide-mobile { display: inline; }
.show-mobile { display: none; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: #333; text-decoration: none; }
.mobile-menu-cta {
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), #c9a94a); color: #0a0a0a !important;
  border-radius: 6px; font-weight: 600 !important;
  font-size: 15px !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 76vh;
  background: linear-gradient(135deg, #061510 0%, #0C2E1E 30%, #104030 60%, #1A5C4A 90%, #1E6653 100%);
  overflow: visible;
  display: block;
}
#hero .hero-glow, #hero .hero-accent-line { pointer-events: none; }

/* Ambient glow top-right */
#hero .hero-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,58,0.13) 0%, transparent 65%);
  pointer-events: none;
  max-width: none;
}

/* Subtle gold vertical accent */
#hero .hero-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(184,145,58,0.5) 40%, rgba(184,145,58,0.5) 60%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  min-height: 76vh;
  gap: 40px;
}

.hero-text {
  padding: 56px 0 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.hero-text h1 .gold-line {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-text h1 sup {
  font-family: 'Inter', sans-serif;
  font-size: 0.32em;
  font-weight: 400;
  color: rgba(184,145,58,0.65);
  vertical-align: super;
  font-style: normal;
  letter-spacing: 0;
}

/* ── CLINIC NAME HERO ── */
h1.hero-clinic-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 22px;
}
.hcn-top {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-transform: none;
  white-space: nowrap;
}
.hcn-bottom {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--gold);
}
.hcn-location {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.hero-specialties {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 6px;
  margin-bottom: 4px;
}
.hero-specialties span {
  font-family: 'Inter', sans-serif;
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-specialties .hsp-dot {
  color: var(--gold);
  opacity: 0.6;
  font-size: 14px;
  line-height: 1;
}

.hero-divider {
  width: 52px; height: 1px;
  background: linear-gradient(to right, rgba(184,145,58,0.8), transparent);
  margin: 30px 0;
}

.hero-desc {
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.015em;
}
.hero-desc strong { font-weight: 600; color: rgba(255,255,255,0.92); }

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-badge:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

/* CTA Button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(184,145,58,0.3);
  position: relative;
  overflow: hidden;
}
.btn-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
}
.btn-hero:hover::after { animation: shimmer 0.6s ease forwards; }
.btn-hero:hover { background: #9a7832; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,145,58,0.4); }
.btn-hero:active { transform: translateY(0) scale(0.98); }
@keyframes shimmer { to { transform: translateX(100%); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero Micro-Testimonial ── */
.hero-micro-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,145,58,0.28);
  border-top: 1px solid rgba(184,145,58,0.55);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(184,145,58,0.15);
}
.hmq-left { flex: 1; min-width: 0; }
.hmq-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 7px;
}
.hmq-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 8px;
}
.hmq-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.hmq-flag { font-size: 14px; }
.hmq-divider {
  width: 1px;
  height: 56px;
  background: rgba(184,145,58,0.2);
  flex-shrink: 0;
}
.hmq-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  gap: 4px;
}
.hmq-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hmq-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .hero-micro-quote { max-width: 100%; }
  .hmq-text { font-size: 13px; }
}

/* ── Before / After Hero Slider ── */
.hero-ba {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Decorative gold ring (same as old hero-image::before) */
.hero-ba::before {
  content: '';
  position: absolute;
  width: 88%; height: 88%;
  border-radius: 50%;
  border: 1px solid rgba(184,145,58,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Pill-shaped frame — perspective container */
.ba-frame {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 440px;
  height: clamp(420px, 55vw, 580px);
  border-radius: 220px 220px 160px 160px;
  overflow: hidden;
  cursor: pointer;
  perspective: 1400px;
  box-shadow:
    0 32px 72px rgba(0,0,0,0.45),
    0 0 0 1px rgba(184,145,58,0.22);
}

/* Both door panels fill the frame */
.ba-door {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.ba-door img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* AFTER — front face, visible by default */
.ba-door-after {
  z-index: 3;
  transform: rotateY(0deg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.6, 1);
}

/* BEFORE — folded away, revealed on press */
.ba-door-before {
  z-index: 2;
  transform: rotateY(90deg);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.4, 1) 0.12s;
}

/* Pressed: AFTER swings away, BEFORE swings in */
.ba-frame.show-before .ba-door-after {
  transform: rotateY(-90deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 1, 0.8);
}
.ba-frame.show-before .ba-door-before {
  transform: rotateY(0deg);
  transition: transform 0.58s cubic-bezier(0, 0.2, 0.3, 1) 0.1s;
}

/* AFTER / BEFORE label chips */
.ba-chip {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 40px;
  pointer-events: none;
  white-space: nowrap;
}
.ba-chip-after {
  background: linear-gradient(135deg, rgba(184,145,58,0.92), rgba(212,175,80,0.92));
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(184,145,58,0.35);
}
.ba-chip-before {
  background: rgba(10,10,10,0.58);
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hold-to-reveal hint */
.ba-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(10,10,10,0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.5s ease;
  animation: ba-pulse 3s ease-in-out 2.5s infinite;
}
.ba-hint svg { color: var(--gold); flex-shrink: 0; }
.ba-hint.hidden { opacity: 0; }

@keyframes ba-pulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 0.3;  }
}

/* Floating warranty badge */
.hero-float-badge {
  position: absolute;
  bottom: 80px;
  left: 0;
  z-index: 4;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184,145,58,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.badge-icon {
  width: 38px; height: 38px;
  background: rgba(184,145,58,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-float-badge .badge-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; line-height: 1.3; }
.hero-float-badge p { font-size: 11px; color: rgba(255,255,255,0.70); line-height: 1; }

.hero-image-fade { display: none; }

/* ── HERO MOBILE ── */
@media (max-width: 900px) {
  #hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-text {
    padding: max(52px, calc(env(safe-area-inset-top) + 36px)) 0 28px;
    text-align: center;
    order: 1;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; font-size: 15px; }
  .hero-badges { justify-content: center; }
  .hero-badge { font-size: 11px; padding-right: 16px; margin-right: 16px; }
  .btn-hero { width: 100%; justify-content: center; font-size: 15px; }
  .hero-ba {
    order: 2;
    padding: 0 0 80px;
  }
  .hero-ba::before { display: none; }
  .ba-frame {
    width: 75%;
    max-width: 280px;
    height: 360px;
    border-radius: 140px 140px 100px 100px;
  }
  .hero-float-badge {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/* ── CTA heading reveal + Smile 3D flip ── */
.cta-heading {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.cta-heading.cta-visible {
  opacity: 1;
  transform: translateY(0);
}
.smile-flip-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  vertical-align: baseline;
}
.smile-flip-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.smile-flip-inner.smile-flipped { transform: rotateX(180deg); }
.smile-flip-front, .smile-flip-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.smile-flip-front { position: relative; }
.smile-flip-back {
  position: absolute; inset: 0;
  transform: rotateX(180deg);
}
.smile-icon { width: 1em; height: 0.55em; display: block; }
.smile-icon path { fill: #f4f4f4; stroke: none; }

/* ── Premium CTA Button ── */
.cta-premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 56px;
  background: linear-gradient(165deg, #cc9f44 0%, #B8913A 35%, #9a7832 70%, #B8913A 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.5s ease, transform 0.3s ease;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.15) inset, 0 -1px 0 0 rgba(0,0,0,0.15) inset, 0 6px 20px rgba(0,0,0,0.2);
}
.cta-premium-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.25) 55%, transparent 65%, transparent 100%);
  transform: translateX(-100%);
  transition: none;
  z-index: 1;
}
.cta-premium-btn:hover::before { animation: ctaShimmerSweep 0.8s ease forwards; }
.cta-premium-btn:hover {
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.2) inset, 0 -1px 0 0 rgba(0,0,0,0.15) inset, 0 8px 32px rgba(184,145,58,0.35), 0 0 0 1px rgba(184,145,58,0.3);
  transform: translateY(-1px);
}
.cta-premium-btn:active { transform: translateY(0) scale(0.985); }
.cta-btn-text {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.cta-btn-arrow {
  position: relative; z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cta-premium-btn:hover .cta-btn-arrow { opacity: 1; transform: translateX(3px); }
.cta-btn-frame {
  display: inline-block;
  padding: 3px;
  border: 1px solid rgba(184,145,58,0.35);
}
.cta-btn-frame:hover { border-color: rgba(184,145,58,0.55); }
@keyframes ctaShimmerSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (max-width: 768px) {
  .cta-premium-btn { padding: 18px 32px; width: 100%; }
  .cta-btn-text { font-size: 16px; }
  .cta-btn-frame { display: block; width: 100%; }
}
.btn-gold {
  display: inline-block;
  padding: 18px 36px;
  background: var(--gold); color: #1C2B36;
  border: none; border-radius: 12px;
  font-size: 18px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-gold:hover { background: #9a7832; transform: translateY(-3px); }


/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0D7A35;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  letter-spacing: 0.02em;
}
.btn-whatsapp:hover { background: #0a5e28; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,122,53,0.4); }
.btn-whatsapp:active { transform: scale(0.98); }

.btn-green {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #c9a94a); color: #0a0a0a;
  border: none; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-green:hover { background: var(--gold); }
.btn-green:active { transform: scale(0.98); }

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: 48px 6%;
  overflow: hidden;
}
.content-section.bg-cream { background: var(--bg-1); }
.content-section.bg-white { background: var(--bg-0); }

.content-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 52px;
}
.content-grid.reverse .col-img { order: -1; }

.gold-bar { width: 40px; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-light)); margin-bottom: 20px; border-radius: 2px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px; opacity: 0.6;
}

.col-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.18;
  color: var(--ink); margin-bottom: 18px; font-weight: 600;
  letter-spacing: -0.01em;
}
.col-text p { font-size: 16px; line-height: 1.85; color: var(--ink2); }

.col-text ul {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px;
}
.col-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.6; color: var(--ink2);
}
.col-text ul li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--green); opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A5C4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.col-img {
  position: relative;
}
.col-img::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid rgba(26,92,74,0.12);
  border-radius: 16px;
  pointer-events: none;
}
.col-img img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26,92,74,0.12);
  display: block; max-width: 100%; height: auto;
  position: relative; z-index: 1;
}


/* ── TAP HIGHLIGHT FIX ── */
button, a { -webkit-tap-highlight-color: transparent; }
input, select, textarea { -webkit-appearance: none; border-radius: 0; }

/* ── GALLERY ── */
#gallery {
  background: var(--bg-1);
  padding: 60px 0 48px;
}
.gallery-header {
  text-align: center;
  padding: 0 6% 36px;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--ink); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em;
}
.gallery-header p { font-size: 12px; color: var(--textm); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.gallery-header .gold-bar { margin: 0 auto 20px; background: linear-gradient(90deg, var(--green), var(--green-light)); }
/* ── CARD (see gallery section below) ── */

/* Gradient overlay */
.g-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.88) 100%
  );
  pointer-events: none;
}

/* Info block at bottom */
.g-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
  z-index: 2;
}
.card-label {
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.card-brand-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; flex-wrap: wrap;
}
.card-brand {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,145,58,0.12);
  border: 1px solid rgba(184,145,58,0.3);
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap;
}
.card-origin {
  font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em; white-space: nowrap;
}
.card-warranty {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.card-warranty svg { color: var(--gold); flex-shrink: 0; }
.card-warranty span { color: var(--gold); font-weight: 700; }

/* Flag badge */
.g-card-flag {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 0;
}

/* Gold border on hover */
.g-card-hover-border {
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(184,145,58,0);
  transition: border-color 0.35s ease;
  pointer-events: none; z-index: 4;
}
.g-card:hover .g-card-hover-border { border-color: rgba(184,145,58,0.5); }

.gallery-hint {
  text-align: center; font-size: 12px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.12em;
  margin: 0 0 40px; text-transform: uppercase;
}
.gallery-cta { text-align: center; padding-bottom: 20px; }
#gallery {
  background: var(--bg-1);
  padding-top: 56px; padding-bottom: 28px;
}
.gallery-header { text-align: center; padding: 0 6% 36px; }
.gallery-header .gold-bar { margin: 0 auto 24px; }
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 500; letter-spacing: 1px;
  color: var(--ink); margin-bottom: 12px;
}
.gallery-header p {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; color: var(--ink2);
}

.gallery-track-wrap {
  overflow-x: auto; cursor: grab; user-select: none;
  padding: 0 6% 16px 12%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track-wrap:active { cursor: grabbing; }

.gallery-track { display: flex; gap: 40px; }

.g-card {
  flex-shrink: 0;
  width: clamp(240px, 32vw, 360px);
  height: clamp(320px, 42vw, 480px);
  border-radius: 18px; overflow: hidden;
  position: relative; background: #222;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.g-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,145,58,0.35);
}
.g-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.g-card:hover img { transform: scale(1.08); filter: brightness(1.05); }
.g-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.3) 25%, rgba(10,10,10,0.05) 45%, transparent);
  box-shadow: inset 0 0 40px 12px rgba(10,10,10,0.5);
  border-radius: 18px;
  pointer-events: none;
}
.g-card-flag {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  background: rgba(10,10,10,0.75); border-radius: 5px;
  padding: 4px 6px; display: flex; align-items: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.4);
  overflow: hidden;
}
.g-card-flag svg {
  display: block; border-radius: 2px;
  width: 26px; height: 18px;
}
.g-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; z-index: 2;
}
.g-card-info p { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; line-height: 1.3; margin-bottom: 4px; }
.g-card-info span { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--gold); }
.g-card-hover-border {
  position: absolute; inset: 0; border-radius: 18px;
  border: 1px solid rgba(184,145,58,0); pointer-events: none;
  transition: border-color 0.4s;
}
.g-card:hover .g-card-hover-border { border-color: rgba(184,145,58,0.2); }

/* ── GALLERY VIDEO PLAY BUTTON ── */
/* Hide old play button overlay on all cards */
.g-card-play-btn { display: none !important; }

/* ── Card + YouTube button wrapper (column layout in gallery track) ── */
.g-card-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.g-card-wrap .g-card { flex-shrink: 0; }

/* ── YouTube button below card ── */
.g-card-yt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--goldbdr);
  color: var(--deep); text-decoration: none;
  border-radius: 30px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.g-card-yt-btn svg {
  width: 22px; height: 22px;
  background: #FF0000;
  border-radius: 6px;
  padding: 4px;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.g-card-yt-btn:hover {
  background: var(--goldbg);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184,145,58,0.15);
}
.g-card-yt-btn:hover svg { transform: scale(1.1); }

.g-card-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  pointer-events: none; /* fully decorative — card onclick handles it */
}
.gcpb-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c9a94a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(184,145,58,0.25), 0 8px 32px rgba(0,0,0,0.4);
  transform: scale(0.88); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.g-card[data-video]:hover .gcpb-circle { transform: scale(1); }
.gcpb-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ── VIDEO MODAL ── */
.vm-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(10,8,5,0.88);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.vm-overlay.open { display: flex; }
.vm-box {
  position: relative;
  background: linear-gradient(160deg, #1a1610 0%, #0f0d09 100%);
  border: 1px solid rgba(184,145,58,0.25);
  border-radius: 20px;
  width: 100%; max-width: 760px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(184,145,58,0.08);
  overflow: hidden;
}
.vm-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.vm-close:hover { background: rgba(184,145,58,0.25); border-color: var(--gold); }
.vm-header {
  padding: 28px 32px 16px;
}
.vm-eyebrow {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.vm-title {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700;
  color: #fff; letter-spacing: -0.01em; margin: 0;
}
.vm-iframe-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-top: 1px solid rgba(184,145,58,0.12);
  border-bottom: 1px solid rgba(184,145,58,0.12);
}
.vm-iframe-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.vm-footer {
  padding: 20px 32px 28px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.vm-flag { flex-shrink: 0; }
.vm-caption {
  flex: 1; font-size: 13px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em; margin: 0;
}
.vm-cta {
  display: inline-block; padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold), #c9a94a);
  color: #1a1500; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 40px; text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.vm-cta:hover { opacity: 0.88; transform: translateY(-1px); }
@media (max-width: 500px) {
  .vm-header { padding: 20px 20px 12px; }
  .vm-footer { padding: 16px 20px 22px; gap: 10px; }
  .vm-cta { width: 100%; text-align: center; }
}

.gallery-hint {
  text-align: center; margin-top: 24px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink2);
}
.gallery-cta { text-align: center; margin-top: 32px; padding: 0 6%; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,5,5,0.95);
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 85vw; max-height: 82vh; border-radius: 12px;
  object-fit: contain; cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  transform-origin: center;
}
.lightbox-img.zoomed { transform: scale(2); cursor: zoom-out; max-width: 170vw; max-height: 164vh; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.lightbox-close:hover { border-color: rgba(184,145,58,0.5); color: white; }
.lightbox-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); pointer-events: none;
}

/* ── TRUST MARQUEE ── */
.trust-bar {
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid rgba(26,92,74,0.12);
  border-bottom: 1px solid rgba(26,92,74,0.12);
  overflow: hidden; position: relative;
}
.trust-fade-l, .trust-fade-r {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-fade-l { left: 0; background: linear-gradient(to right, #fff, transparent); }
.trust-fade-r { right: 0; background: linear-gradient(to left, #fff, transparent); }

.trust-track {
  display: inline-flex; align-items: center; gap: 70px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.trust-bar:hover .trust-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.t-item { font-size: 15px; letter-spacing: 1px; color: rgba(26,46,38,0.75); white-space: nowrap; }
.t-item-link { text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.t-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }

/* G-FLEX cinematic chrome */
.t-gflex {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 900; letter-spacing: 2.5px;
  position: relative;
  display: inline-block;
}
.t-gflex .gflex-chrome {
  background: linear-gradient(
    90deg,
    #1A5C4A 0%, #14a34a 15%, #39FF14 30%, #39FF14 42%,
    #e0ffe0 47%, #ffffff 50%, #e0ffe0 53%,
    #39FF14 58%, #39FF14 70%, #14a34a 85%, #1A5C4A 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gflexCinemaShine 5s linear infinite;
  position: relative;
}
.t-gflex .gflex-chrome::after {
  content: 'G-FLEX';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%, transparent 40%,
    rgba(255,255,255,0.95) 50%,
    transparent 60%, transparent 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gflexBlink 5s linear infinite;
  pointer-events: none;
  font: inherit;
  letter-spacing: inherit;
}
@keyframes gflexCinemaShine {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}
@keyframes gflexBlink {
  0%   { background-position: 200% center; opacity: 0; }
  35%  { opacity: 0; }
  40%  { opacity: 1; }
  60%  { opacity: 1; }
  65%  { opacity: 0; }
  100% { background-position: -100% center; opacity: 0; }
}

.t-warranty {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(26,92,74,0.25); border-radius: 20px;
  padding: 4px 16px; font-size: 13px; color: var(--green); letter-spacing: 0.06em;
  background: rgba(26,92,74,0.06);
}
.t-google-g { font-size: 18px; font-weight: 700; color: #4285F4; }

/* ── CTA SECTION ── */
#cta-section {
  background: linear-gradient(145deg, #0D2E25 0%, #14483A 40%, #1A5C4A 75%, #1E6653 100%);
  padding: 68px 6%;
  text-align: center;
  position: relative; overflow: hidden;
}
#cta-section .top-bar {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 2px; background: var(--gold);
}

/* Floating ambient orbs */
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px); opacity: 0.18;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #B8913A, transparent);
  top: -180px; right: -100px;
  animation: ctaOrb1 12s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2A9D7F, transparent);
  bottom: -140px; left: -80px;
  animation: ctaOrb2 15s ease-in-out infinite alternate;
}
.cta-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #B8913A, transparent);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: ctaOrb3 10s ease-in-out infinite alternate;
  opacity: 0.08;
}
@keyframes ctaOrb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px, 30px) scale(1.15); } }
@keyframes ctaOrb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(30px, -25px) scale(1.2); } }
@keyframes ctaOrb3 { from { opacity: 0.06; transform: translate(-50%,-50%) scale(0.9); } to { opacity: 0.12; transform: translate(-50%,-50%) scale(1.1); } }

/* Subtle dot grid overlay */
.cta-dots-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.cta-inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Eyebrow badge */
.cta-eyebrow-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(184,145,58,0.12);
  border: 1px solid rgba(184,145,58,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.cta-eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold);
  animation: ctaPulse 2s ease-out infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,145,58,0.7); }
  70%  { box-shadow: 0 0 0 7px rgba(184,145,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,145,58,0); }
}

/* Heading */
#cta-section h2.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; color: white;
  line-height: 1.2; margin: 0 0 16px; text-align: center;
}
#cta-section h2.cta-heading em {
  font-style: italic; font-weight: 400;
  color: var(--gold); display: block;
}

/* Body text */
#cta-section p.cta-sub {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.65);
  text-align: center; margin: 0;
  max-width: 520px;
}

/* Trust pills */
.cta-proof-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 22px;
}
.cta-proof-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 14px;
}
.cta-proof-pill svg { color: var(--gold); flex-shrink: 0; }

/* Button */
.cta-btn-wrap {
  margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cta-estimator-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #cc9f44 0%, #B8913A 60%, #9a7832 100%);
  color: white; text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 28px rgba(184,145,58,0.5), 0 0 0 1px rgba(184,145,58,0.2);
  transition: transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.cta-estimator-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 44px rgba(184,145,58,0.6), 0 0 0 1px rgba(184,145,58,0.4);
}
.cta-estimator-btn:active { transform: scale(0.97); }

.cta-est-main { font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.cta-est-arrow { opacity: 0.85; display: flex; align-items: center; }

.cta-est-shimmer {
  position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: ctaShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShimmer {
  0%   { left: -80%; }
  55%  { left: 140%; }
  100% { left: 140%; }
}

.cta-btn-note {
  font-size: 12px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em; margin: 0;
}

.cta-reassure {
  margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.35);
}
.cta-reassure-link {
  color: rgba(255,255,255,0.55); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.cta-reassure-link:hover { color: var(--gold); }

@media (max-width: 600px) {
  .cta-estimator-btn { padding: 15px 26px; }
  .cta-est-main { font-size: 15px; }
  .cta-proof-pill { font-size: 11.5px; padding: 5px 12px; }
}

/* ── FORM SECTION ── */
#form-section {
  background: var(--bg-2);
  padding: 48px 6%;
}
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 28px; }
.form-header .gold-bar { margin: 0 auto 20px; }
.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--ink); margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink2); margin-bottom: 24px;
}
.form-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.form-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink2);
}
.form-trust-item svg { color: var(--gold); flex-shrink: 0; }

.form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10), 0 1px 0 rgba(184,145,58,0.12);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(184,145,58,0.14);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), #c9a94a, var(--gold), transparent);
}

/* Stepper */
.stepper {
  padding: 32px 32px 0;
  display: flex; align-items: center;
}
.step-node { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(184,145,58,0.06);
  border: 1px solid rgba(184,145,58,0.2);
  color: rgba(26,92,74,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.step-circle.active, .step-circle.done { background: linear-gradient(135deg, var(--gold), #c9a94a); color: #0a0a0a; border-color: var(--gold); }
.step-lbl { font-size: 11px; color: var(--ink3); letter-spacing: 0.03em; }
.step-lbl.active { color: var(--gold); font-weight: 600; }
.step-conn {
  flex: 1; height: 1px; background: rgba(184,145,58,0.15);
  margin: 0 6px 18px;
  transition: background 0.3s;
}
.step-conn.done { background: linear-gradient(to right, var(--gold), #c9a94a); }

/* Steps */
.form-body { padding: 0 32px 32px; }
.form-step { display: none; padding-top: 28px; }
.form-step.active { display: block; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--ink); margin-bottom: 20px;
}
.step-sub {
  font-size: 13px; color: #7a8a90; margin: -14px 0 16px;
  font-style: italic; line-height: 1.5;
}
.field-hint {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  opacity: 0.5; font-size: 11px;
}
.field-lbl {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--green); margin-bottom: 10px;
}

/* X-ray upload area */
.xray-upload-wrap { display: none; margin-top: 14px; }
.xray-upload-area {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1.5px dashed rgba(184,145,58,0.4); border-radius: 10px;
  padding: 22px 16px; cursor: pointer; text-align: center;
  background: rgba(184,145,58,0.04);
  transition: border-color 0.2s, background 0.2s;
}
.xray-upload-area:hover { border-color: var(--gold); background: rgba(184,145,58,0.04); }
.xray-upload-area svg { color: var(--gold); }
.xray-upload-main { font-size: 14px; font-weight: 600; color: var(--ink); }
.xray-upload-sub { font-size: 12px; color: var(--ink3); }
#xrayFile { display: none; }
.xray-file-chosen {
  font-size: 13px; color: var(--gold); font-weight: 500;
  margin-top: 6px; text-align: center;
}
.xray-alt-note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: #888; margin-top: 10px; line-height: 1.5;
}
.xray-alt-note svg { flex-shrink: 0; margin-top: 1px; color: #aaa; }

.opt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(184,145,58,0.15);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}
.opt-row:hover { border-color: rgba(184,145,58,0.45); background: rgba(184,145,58,0.03); }

/* Hide native input */
.opt-row input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
  pointer-events: none;
}
.opt-row span { font-size: 15px; color: var(--ink); flex: 1; line-height: 1.4; }

/* Circle indicator — right side */
.opt-row::after {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(184,145,58,0.25);
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
/* Selected state */
.opt-row:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,145,58,0.07);
  box-shadow: 0 0 0 3px rgba(184,145,58,0.10);
}
.opt-row:has(input:checked) span { color: #0a0a0a; font-weight: 500; }
.opt-row:has(input:checked)::after {
  background-color: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

.field-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(184,145,58,0.18); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 16px;
  background: var(--cream); color: var(--ink);
  outline: none; margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.field-input:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(184,145,58,0.12), 0 2px 8px rgba(184,145,58,0.10); }
.field-input::placeholder { color: #bbb; }

.contact-lbl { font-size: 13px; font-weight: 500; color: var(--ink2); margin-bottom: 10px; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 8px; }
.cm-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 8px 12px;
  border: 1.5px solid rgba(184,145,58,0.15); border-radius: 10px;
  background: var(--cream); cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500; color: #777;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  position: relative;
}
.cm-btn:hover { border-color: rgba(184,145,58,0.45); background: rgba(184,145,58,0.03); }
.cm-btn svg { width: 20px; height: 20px; transition: color 0.22s; }

/* Circle indicator top-right */
.cm-btn::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(184,145,58,0.2);
  background: transparent;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.cm-btn.sel {
  border-color: var(--gold);
  background: rgba(184,145,58,0.07);
  color: #0a0a0a; font-weight: 600;
  box-shadow: 0 0 0 3px rgba(184,145,58,0.10);
}
.cm-btn.sel svg { color: var(--gold); }
.cm-btn.sel::after {
  background-color: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
}
.btn-back {
  padding: 12px 24px; min-height: 44px;
  border: 1.5px solid rgba(184,145,58,0.18); background: white; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; color: var(--ink2); transition: all 0.2s;
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); }
.btn-cont {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px; min-height: 44px;
  background: #aaa; color: white; border: none; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: all 0.3s; opacity: 0.5;
}
.btn-cont.on { background: linear-gradient(135deg, var(--gold), #c9a94a); color: #0a0a0a; opacity: 1; }
.btn-cont.on:hover { background: var(--green2); box-shadow: 0 2px 12px rgba(26,92,74,0.3); }
.btn-cont:disabled { cursor: not-allowed; }

.btn-submit {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; min-height: 44px;
  background: #aaa; color: white; border: none; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: all 0.3s; opacity: 0.5;
}
.btn-submit.on { background: linear-gradient(135deg, var(--gold), #c9a94a); color: #0a0a0a; opacity: 1; }
.btn-submit.on:hover { background: var(--green2); box-shadow: 0 2px 12px rgba(26,92,74,0.3); }

.mobile-step-count {
  display: none; text-align: center;
  font-size: 12px; color: #555; letter-spacing: 0.05em;
  padding: 16px 0;
}

/* Success */
.form-success {
  display: none; text-align: center;
  padding: 64px 24px;
}
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c9a94a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(184,145,58,0.35);
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.form-success p { font-size: 16px; line-height: 1.7; color: var(--ink2); max-width: 420px; margin: 0 auto; }

.form-privacy {
  text-align: center; font-size: 12px; color: var(--ink2); margin-top: 16px;
}


/* ── LOCATION PHOTO ── */
.clinic-location-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.location-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 6s ease;
}
.clinic-location-photo:hover .location-photo { transform: scale(1.04); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.clinic-location-photo .location-card { z-index: 2; }
.location-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(245,240,232,0.96);
  border: 1px solid rgba(26,92,74,0.2);
  border-radius: 14px;
  padding: 18px 20px;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.location-card-top {
  display: flex; align-items: flex-start; gap: 12px;
}
.location-pin-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(184,145,58,0.15);
  border: 1px solid rgba(184,145,58,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.location-card-top h3 {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px;
}
.location-card-top p { font-size: 12px; color: rgba(26,46,38,0.55); }
.location-card-divider {
  height: 1px; background: rgba(26,92,74,0.1);
  margin: 14px 0;
}
.location-details { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.location-detail-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(26,46,38,0.65);
}
.location-detail-item svg { color: var(--gold); flex-shrink: 0; }
.location-directions-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 10px;
  background: var(--gold); color: white;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}
.location-directions-btn:hover { background: #9a7832; transform: translateY(-1px); }
@media (max-width: 900px) {
  .location-card { bottom: 16px; left: 16px; right: 16px; padding: 14px 16px; }
  .location-card-top h3 { font-size: 13px; }
}

/* ── MAP / CLINIC ── */
#clinic {
  background: var(--bg-0); color: var(--ink);
  padding: 48px 4%;
}
.clinic-header { text-align: center; margin-bottom: 32px; }
.clinic-header .gold-bar { margin: 0 auto 16px; }
.clinic-header h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.clinic-header p { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--deep); }

.clinic-grid {
  max-width: 960px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.clinic-grid.visible { opacity: 1; transform: translateY(0); }

.clinic-map iframe {
  width: 100%; height: 360px; border: none;
  filter: grayscale(100%) invert(90%) contrast(85%) brightness(90%);
  display: block;
}
.clinic-map { position: relative; isolation: isolate; }
.map-pill {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,10,10,0.9); border-radius: 12px;
  border: 1px solid rgba(184,145,58,0.25);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
.map-pill svg { color: var(--gold); flex-shrink: 0; }
.map-pill h3 { font-size: 13px; font-weight: 500; color: white; margin-bottom: 2px; }
.map-pill p { font-size: 11px; color: var(--ink3); }
.map-ext-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(184,145,58,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s; flex-shrink: 0;
}
.map-ext-btn:hover { background: rgba(184,145,58,0.25); }

.clinic-slideshow { position: relative; height: 420px; background: #000; overflow: hidden; isolation: isolate; }
.clinic-slideshow--full { height: 480px; }

/* Directions row below slideshow */
.clinic-directions-row {
  max-width: 960px; margin: 20px auto 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
  padding: 0 6%;
}
.clinic-directions-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: var(--deep); color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,92,74,0.25);
}
.clinic-directions-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,74,0.3); }
.clinic-hours {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--textm); letter-spacing: 0.02em;
}
.c-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s ease, transform 6s ease;
  transform: scale(1.08);
}
.c-slide.active { opacity: 1; transform: scale(1); }
.c-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.04); }
.c-slide-grad {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
}
.c-arrows {
  position: absolute; bottom: 20px; right: 20px; z-index: 4;
  display: flex; gap: 8px;
}
.c-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.c-arrow:hover { background: rgba(184,145,58,0.3); border-color: rgba(184,145,58,0.5); }
.c-slide-caption {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: rgba(10,10,10,0.88); border-radius: 12px;
  border: 1px solid rgba(184,145,58,0.25); padding: 12px 18px;
}
.c-slide-caption h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: white; margin-bottom: 2px; }
.c-slide-caption span { font-size: 11px; color: #bbb; }
.c-dots {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
}
.c-dot {
  height: 7px; border-radius: 4px;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: width 0.4s ease, background 0.4s ease; padding: 0;
}
.c-dot.active { background: var(--gold); width: 20px !important; }

/* ── FOOTER ── */
footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 44px 6% 0;
  position: relative;
}
.footer-top-bar {
  position: absolute; top: 0; left: 6%; right: 6%;
  height: 1px; background: var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.5px; margin-bottom: 14px;
}
.footer-tagline {
  font-size: 13px; color: var(--textm); line-height: 1.8;
  margin-bottom: 24px; max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  text-decoration: none;
}
.footer-social-link:hover {
  border-color: var(--deep);
  color: var(--deep);
  background: var(--priml);
}
.footer-heading {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--deep); font-weight: 600;
  margin-bottom: 20px; font-family: 'Inter', sans-serif;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 13.5px; color: var(--textm); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--deep); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 1px; color: var(--deep); }
.footer-contact li span,
.footer-contact li a {
  font-size: 13px; color: var(--textm); line-height: 1.6;
  text-decoration: none; transition: color 0.2s;
}
.footer-contact li a:hover { color: var(--deep); }
/* ── OUR TEAM ── */
#our-team {
  background: var(--surface);
  padding: 56px 24px;
}
.team-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.team-header {
  text-align: center;
  margin-bottom: 36px;
}
.team-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 10px;
}
.team-header p {
  color: var(--textm);
  font-size: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.team-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  border-color: rgba(26,92,74,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(26,92,74,0.08);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.team-card:hover .team-photo-wrap img {
  filter: grayscale(0%);
}
.team-info {
  padding: 20px 18px 22px;
}
.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.team-title {
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-badge {
  font-size: 0.68rem;
  color: var(--textm);
  background: var(--priml);
  border: 1px solid var(--primb);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}
.team-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.team-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--textm);
  font-size: 0.875rem;
}
.team-trust-item svg {
  color: var(--deep);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-info { padding: 14px 12px 16px; }
  .team-info h3 { font-size: 0.85rem; }
  .team-trust-row { gap: 20px; }
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.6;
  text-align: center;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom a { font-size: 12px; color: var(--textm); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--deep); }

/* ── QUICK LEAD BAR ── */
.qlb {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9500;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(26,92,74,0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 13px 5%;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.qlb.qlb-visible { transform: translateY(0); }

.qlb-form {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.qlb-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.qlb-label svg { color: var(--deep); flex-shrink: 0; }

.qlb-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.qlb-input {
  flex: 1;
  min-width: 0;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 13px;
  min-height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.qlb-input::placeholder { color: var(--muted); }
.qlb-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--priml); }

.qlb-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--deep);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s;
}
.qlb-btn:hover { background: var(--primary); transform: translateY(-1px); }
.qlb-btn:active { transform: translateY(0); }

.qlb-close {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.18s;
}
.qlb-close:hover { color: var(--text); }

.qlb-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep);
}
.qlb-success svg { flex-shrink: 0; }

@media (max-width: 900px) {
  /* Hide QLB on mobile — mobile sticky bar handles lead capture */
  .qlb { display: none !important; }
}

/* ── MOBILE STICKY BAR ── */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  flex-direction: column;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 8px 14px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.07);
}
.ms-quiz-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 7px 16px;
  margin-bottom: 8px;
  background: var(--goldbg);
  border: 1px solid var(--goldbdr);
  border-radius: 30px;
  text-decoration: none;
  color: var(--gold2);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
  align-self: center;
}
.ms-quiz-link:active { opacity: 0.8; }
.ms-form { width: 100%; }
.ms-row { display: flex; gap: 6px; align-items: center; }
.ms-input {
  flex: 1; min-width: 0;
  height: 44px; padding: 0 10px;
  border: 1px solid var(--border); border-radius: 7px;
  font-size: 12px; color: var(--ink); background: var(--surface2);
  outline: none; transition: border-color 0.2s;
}
.ms-input::placeholder { color: var(--muted); }
.ms-input:focus { border-color: var(--primary); background: #fff; }
.ms-input--phone { flex: 1.2; }
.ms-submit {
  display: flex; align-items: center; gap: 5px;
  height: 44px; padding: 0 14px;
  background: var(--deep); color: #fff;
  border: none; border-radius: 7px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s;
}
.ms-submit:active { background: var(--primary); }
.ms-success {
  display: flex; align-items: center; gap: 7px;
  justify-content: center; padding: 8px;
  font-size: 13px; font-weight: 600; color: var(--deep);
}

/* ── iOS ZOOM FIX — inputs/buttons must be ≥16px to prevent auto-zoom ── */
@media (max-width: 900px) {
  input, textarea, select, button { font-size: 16px !important; }
  .qlb-input, .ms-input { font-size: 16px !important; }
}

/* ── RESPONSIVE ── */
/* ══════════════════════════════════
   TABLET (max 900px)
══════════════════════════════════ */
@media (max-width: 900px) {

  /* NAV */
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; margin-left: auto; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 88px; }
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline !important; }

  /* HERO */
  #hero { min-height: auto !important; height: auto !important; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
    min-height: auto !important; height: auto !important;
    padding: 0 5%;
    width: 100%;
  }
  .hero-text {
    padding: 72px 0 28px;
    text-align: center;
    order: 1;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-text h1 { font-size: clamp(30px, 7vw, 42px); }
  .hero-divider { margin: 18px auto; }
  .hero-desc { font-size: 15px; margin-left: auto; margin-right: auto; margin-bottom: 20px; }
  .hero-badges {
    justify-content: center;
    padding: 12px 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 0;
  }
  .hero-badge { font-size: 11px; padding-right: 14px; margin-right: 14px; }
  .btn-hero { width: 100%; justify-content: center; font-size: 15px; padding: 15px 24px; }
  .hero-image {
    order: 2;
    padding: 0 0 64px;
    justify-content: center;
  }
  .hero-image img {
    width: 70%;
    max-width: 260px;
    height: 320px;
    border-radius: 130px 130px 100px 100px;
  }
  .hero-image::before { display: none; }
  .hero-float-badge {
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* CONTENT SECTIONS */
  .content-section { padding: 36px 5%; }
  .content-grid { grid-template-columns: 1fr; gap: 24px; }
  .content-grid.reverse .col-img { order: 0; }
  .col-text h2 { font-size: clamp(22px, 5vw, 30px); margin-bottom: 14px; }
  .col-text p { font-size: 15px; line-height: 1.75; }
  .col-img { height: 220px; overflow: hidden; border-radius: 12px; }
  .col-img img { width: 100%; height: 100%; object-fit: cover; }
  .btn-whatsapp { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; box-sizing: border-box; }

  /* GALLERY */
  #gallery { padding: 36px 0 24px; }
  .gallery-header { padding: 0 5% 24px; }
  .gallery-header h2 { font-size: clamp(22px, 5vw, 30px); }
  .gallery-track-wrap { padding: 8px 5% 20px; }
  .gallery-track { gap: 14px; }
  .g-card { width: clamp(220px, 72vw, 280px); height: clamp(360px, 90vw, 440px); }

  /* TRUST MARQUEE */
  .trust-fade-l, .trust-fade-r { width: 24px; }

  /* CTA SECTION */
  #cta-section { padding: 40px 5%; }
  #cta-section h2 { font-size: clamp(22px, 5vw, 32px) !important; }
  #cta-section p { font-size: 15px !important; }
  .cta-btn-frame { width: 100%; }
  .cta-premium-btn { width: 100%; justify-content: center; }

  /* FORM */
  #form-section { padding: 36px 5%; }
  .form-header h2 { font-size: clamp(20px, 5vw, 26px); }
  .form-wrap { padding: 0; }
  .form-body { padding: 0 16px 20px; }
  .stepper { padding: 20px 16px 0; gap: 0; }
  .step-node { flex: 1; }
  .step-lbl { display: none; }
  .step-circle { width: 28px; height: 28px; font-size: 11px; }
  .step-title { font-size: 16px; }
  .mobile-step-count { display: block; }
  .step-sub { font-size: 12px; }
  .field-lbl { font-size: 12px; }
  .step-options { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* CLINIC / MAP */
  .clinic-header { padding: 0 5% 32px; }
  .clinic-header h2 { font-size: clamp(20px, 5vw, 26px); }
  .clinic-slideshow--full { height: 300px; }
  .clinic-directions-row { flex-direction: column; gap: 12px; text-align: center; }
  .clinic-directions-btn { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-inner { padding: 32px 5%; gap: 8px; }

  /* PRICE ANCHOR */
  .hero-price-anchor { width: 100%; justify-content: center; box-sizing: border-box; }

  /* TESTIMONIALS */
  #testimonials { padding: 36px 0; }
  .reviews-fade-l, .reviews-fade-r { width: 60px; }

  /* FAQ */
  #faq { padding: 36px 5%; }
  .faq-q span { font-size: 15px; }
  .faq-header h2 { font-size: 26px; }

  /* FOOTER */
  footer { padding: 36px 5% 0; }
  .footer-top-bar { left: 5%; right: 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: none; }
}

/* ══════════════════════════════════
   MOBILE (max 480px)
══════════════════════════════════ */
@media (max-width: 480px) {

  /* HERO tighter on small phones */
  .hero-text { padding: 60px 0 20px; }
  .hero-text h1 { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-badges { gap: 0; }
  .hero-badge { font-size: 10px; padding-right: 10px; margin-right: 10px; }
  .hero-image img { width: 75%; max-width: 220px; height: 280px; }
  .hero-float-badge { padding: 10px 14px; gap: 10px; }
  .hero-float-badge .badge-title { font-size: 12px; }
  .hero-float-badge p { font-size: 10px; }

  /* CONTENT */
  .content-section { padding: 36px 4%; }
  .col-img { height: 200px; }

  /* GALLERY cards — taller on small phones */
  .g-card { width: clamp(200px, 78vw, 250px); height: clamp(340px, 92vw, 400px); }
  .gallery-header { padding: 0 4% 24px; }
  .gallery-track-wrap { padding: 6px 4% 16px; }

  /* FORM */
  #form-section { padding: 36px 4%; }
  .step-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-input, .form-input select { font-size: 16px; } /* prevent iOS zoom */

  /* CTA */
  #cta-section { padding: 36px 4%; }

  /* NAVBAR */
  #navbar { padding: 0 4%; }

  /* PRICE ANCHOR */
  .price-value, .price-save-value { font-size: 18px; }
  .hero-price-anchor { padding: 12px 16px; }
  .price-divider { margin: 0 14px; }

  /* TESTIMONIALS */
  #testimonials { padding: 36px 0; }

  /* FAQ */
  #faq { padding: 36px 4%; }
  .faq-q span { font-size: 14px; }
  .faq-q { padding: 16px 0; }
}

/* ── PRICE ANCHOR ── */
.hero-price-anchor {
  display: flex; align-items: center; gap: 0;
  margin: 22px 0 28px;
  max-width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,145,58,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.price-from, .price-saving { display: flex; flex-direction: column; gap: 2px; }
.price-label, .price-save-label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 500;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1;
}
.price-currency { font-size: 13px; font-weight: 500; }
.price-save-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: white; line-height: 1;
}
.price-vs { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); }
.price-divider {
  width: 1px; height: 44px;
  background: rgba(184,145,58,0.25);
  margin: 0 20px;
}


/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg-0);
  padding: 52px 0 44px;
  overflow: hidden;
}
.testi-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 6%;
}
.testi-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--ink); font-weight: 600; margin-bottom: 10px;
}
.testi-header p { font-size: 13px; color: var(--ink2); letter-spacing: 0.1em; text-transform: uppercase; }

/* Google rating badge */
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(26,92,74,0.15);
  border-radius: 40px;
  padding: 8px 18px;
}
.google-g-svg { flex-shrink: 0; }
.google-rating-score {
  font-size: 15px; font-weight: 700; color: #1C2B36; letter-spacing: 0.02em;
}
.google-rating-stars { color: #FBBC05; font-size: 12px; letter-spacing: 2px; }
.google-rating-count { font-size: 12px; color: rgba(28,43,54,0.75); letter-spacing: 0.04em; }

/* Marquee wrapper */
.reviews-marquee-wrapper {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
}
.reviews-fade-l,
.reviews-fade-r {
  position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.reviews-fade-l { left: 0; background: linear-gradient(to right, var(--bg-0), transparent); }
.reviews-fade-r { right: 0; background: linear-gradient(to left, var(--bg-0), transparent); }

.reviews-row { overflow: hidden; }
.reviews-track {
  display: flex; gap: 16px;
  width: max-content;
}
.reviews-track--left  { animation: reviewsLeft  35s linear infinite; }
.reviews-track--right { animation: reviewsRight 35s linear infinite; }
.reviews-track--left:hover,
.reviews-track--right:hover { animation-play-state: paused; }

@keyframes reviewsLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes reviewsRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Review card */
.review-card {
  background: #fff;
  border: 1px solid rgba(26,92,74,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  width: 260px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, padding 0.35s ease;
  box-shadow: 0 2px 8px rgba(26,92,74,0.06);
  user-select: none;
  -webkit-user-select: none;
}
.review-card.expanded {
  border-color: rgba(26,92,74,0.25);
  box-shadow: 0 4px 20px rgba(26,92,74,0.12);
  padding: 16px 18px;
}
.review-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.review-google-g { flex-shrink: 0; }
.review-stars { color: #FBBC05; font-size: 11px; letter-spacing: 2px; }

/* Collapsed: name + 1 line of text */
.review-author {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.review-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 12px; color: #1C2B36; font-weight: 600; }
.review-author span { font-size: 10px; color: rgba(28,43,54,0.70); letter-spacing: 0.03em; }
.review-text {
  font-size: 12px; line-height: 1.55; color: rgba(28,43,54,0.85);
  font-style: italic; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  transition: -webkit-line-clamp 0s;
}
/* Expanded: show full text */
.review-card.expanded .review-text {
  -webkit-line-clamp: unset; overflow: visible;
  display: block;
  margin-top: 8px;
  border-top: 1px solid rgba(26,92,74,0.08);
  padding-top: 8px;
}
/* Hold-progress ring */
.review-card::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  width: 0%;
  margin-top: 8px;
  transition: none;
}
.review-card.holding::after {
  width: 100%;
  transition: width 2.5s linear;
}


/* ── FAQ ── */
#faq {
  background: var(--bg-1);
  padding: 48px 6%;
}
.faq-inner {
  max-width: 780px; margin: 0 auto;
}
.faq-header { margin-bottom: 32px; }
.faq-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink); margin-bottom: 10px; font-weight: 600;
}
.faq-header p { font-size: 14px; color: var(--ink2); letter-spacing: 0.02em; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(26,92,74,0.1);
  transition: background 0.2s;
}
.faq-item:first-child { border-top: 1px solid rgba(26,92,74,0.1); }
.faq-item.open { background: rgba(26,92,74,0.03); border-radius: 8px; }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 16px 22px 0; cursor: pointer; gap: 16px;
  text-align: left;
}
.faq-item.open .faq-q { padding-left: 16px; }
.faq-q span {
  font-size: 16px; font-weight: 600; color: var(--ink);
  line-height: 1.4;
}
.faq-item.open .faq-q span { color: var(--green); }
.faq-icon {
  flex-shrink: 0; color: var(--green); opacity: 0.6;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); opacity: 1; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease, padding 0.35s ease;
}
.faq-a > * { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding: 0 16px 22px 16px; }
.faq-a p {
  font-size: 15px; line-height: 1.85; color: var(--ink2);
  border-left: 3px solid rgba(26,92,74,0.2); padding-left: 14px;
}


/* ── FORM RESPOND NOTE ── */
.form-respond-note {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 12px;
  font-size: 12px; color: var(--ink3); letter-spacing: 0.03em;
}
.form-respond-note svg { color: var(--gold); flex-shrink: 0; }

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  border-top: 2px solid var(--border);
  padding: 16px 5%;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(12px);
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-icon { color: var(--deep); flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 4px; }
.cookie-text p { font-size: 12px; color: var(--textm); line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-decline {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  background: none; color: var(--textm);
  border-radius: 6px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.cookie-decline:hover { border-color: var(--deep); color: var(--deep); }
.cookie-accept {
  padding: 9px 22px;
  background: var(--deep); color: white; border: none;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.cookie-accept:hover { background: var(--primary); }
@media (max-width: 900px) {
  .cookie-banner { bottom: 68px; }
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-decline, .cookie-accept { flex: 1; text-align: center; }
}

/* ── MOBILE COMPREHENSIVE FIX ──
   Several base styles are declared after the main responsive blocks,
   causing cascade overrides. This section re-applies all critical mobile
   rules last so they always win, ensuring full-width layout on iOS/Android.
*/
@media (max-width: 900px) {

  /* Clip the 600px hero-glow div (positioned at right:-80px) that bleeds outside viewport */
  #hero { overflow: hidden !important; }

  /* hero-float-badge white-space:nowrap can push beyond screen */
  .hero-float-badge {
    white-space: normal !important;
    max-width: calc(100% - 48px) !important;
    box-sizing: border-box !important;
  }

  /* hero-price-anchor base style sets width:fit-content after the media query */
  .hero-price-anchor {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* Testimonials */
  #testimonials { padding: 40px 0 36px !important; }
  .testi-header { margin-bottom: 24px !important; padding: 0 4% !important; }
  .review-card { width: 230px !important; padding: 12px 14px !important; }
  .google-rating-badge { flex-wrap: wrap; justify-content: center; gap: 6px; }

  /* Section padding overrides */
  #faq { padding: 48px 5% !important; }

  /* Ensure all top-level sections never exceed viewport */
  #hero, #gallery, #faq, #form-section, #testimonials,
  #cta-section, #clinic, footer, .trust-bar {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

@media (max-width: 480px) {
  .hero-price-anchor { padding: 12px 16px !important; }
  .price-value, .price-save-value { font-size: 18px !important; }
  .price-divider { margin: 0 14px !important; }
  #testimonials { padding: 32px 0 28px !important; }
  .review-card { width: 200px !important; }
  #faq { padding: 36px 4% !important; }
}

/* ══════════════════════════════════════════
   PRICE ESTIMATOR — embedded section
   All rules scoped under .estimator-section
   ══════════════════════════════════════════ */

#estimator-section { background: #F4F2ED; padding: 72px 6%; }

.estimator-section {
  --est-bg: #F4F2ED; --est-surface: #FFFFFF; --est-surface2: #F9F8F5;
  --est-deep: #0F5C3B; --est-primary: #1a7a52;
  --est-priml: rgba(26,92,74,0.07); --est-primb: rgba(26,92,74,0.18); --est-primbh: rgba(26,92,74,0.30);
  --est-gold: #B8913A; --est-goldl: #C9A44A;
  --est-goldbg: rgba(184,145,58,0.08); --est-goldbdr: rgba(184,145,58,0.22);
  --est-text: #1C2B36; --est-textm: #4D6070; --est-muted: #6B7C8D;
  --est-border: rgba(0,0,0,0.07);
  --est-shadow: 0 2px 16px rgba(0,0,0,0.07); --est-shadow-lg: 0 4px 28px rgba(0,0,0,0.10);
  --est-radius: 14px; --est-radius-sm: 10px;
  --est-success: #22A56E; --est-error: #D94535;
  /* Aliases for inline JS template strings */
  --muted: #6B7C8D; --primary: #1a7a52; --deep: #0F5C3B;
  --gold: #B8913A; --goldbg: rgba(184,145,58,0.08); --goldbdr: rgba(184,145,58,0.22);
  --priml: rgba(26,92,74,0.07); --textm: #4D6070; --error: #D94535;
  --surface: #FFFFFF; --text: #1C2B36; --bg: #F4F2ED;
}

.estimator-section .est-section-header { text-align: center; margin-bottom: 40px; }
.estimator-section .est-section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,4vw,2.2rem); color: var(--ink); margin: 8px 0; }
.estimator-section .est-section-header p { color: #666; font-size: 1rem; }

.estimator-section .est-card { max-width: 560px; margin: 0 auto; background: white; border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.10); overflow: hidden; }
.estimator-section .est-prog-wrap { position: relative; height: 4px; background: rgba(0,0,0,0.06); }
.estimator-section .est-prog-bar { height: 100%; background: linear-gradient(90deg, var(--est-deep), var(--est-success)); transition: width 0.5s cubic-bezier(0.4,0,0.2,1); border-radius: 0 3px 3px 0; }

.estimator-section .est-btn-back { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1.5px solid var(--est-border); color: var(--est-primary); font-size: 0.9rem; cursor: pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: background 0.15s, opacity 0.2s; margin-bottom: 12px; }
.estimator-section .est-btn-back:active { background: var(--est-priml); }
.estimator-section .est-btn-back.hidden { opacity: 0; pointer-events: none; }

.estimator-section .slide { display: none; position: relative; z-index: 1; min-height: auto; flex-direction: column; align-items: center; justify-content: flex-start; padding: 24px 20px 32px; }
.estimator-section .slide.active { display: flex; animation: estSlideIn 0.35s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes estSlideIn { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@media (prefers-reduced-motion: reduce) { .estimator-section .slide.active { animation: none !important; } }
.estimator-section .inner { width: 100%; max-width: 500px; text-align: center; }

.estimator-section .tag { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--est-primb); background: var(--est-priml); border-radius: 100px; padding: 6px 13px; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--est-primary); margin-bottom: 16px; font-weight: 500; }
.estimator-section .tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--est-success); animation: estPulse 2s infinite; flex-shrink: 0; }
@keyframes estPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.8)} }
.estimator-section .qn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--est-primary); margin-bottom: 10px; font-weight: 600; opacity: 0.85; }
.estimator-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem,6vw,2.2rem); font-weight: 400; line-height: 1.22; color: var(--est-text); margin-bottom: 11px; letter-spacing: -0.02em; }
.estimator-section h2 em { font-style: italic; color: var(--est-deep); }
.estimator-section .div { width: 32px; height: 2px; background: linear-gradient(90deg, transparent, var(--est-gold), transparent); margin: 0 auto 18px; border-radius: 2px; }
.estimator-section .sub { font-size: 0.95rem; color: var(--est-textm); line-height: 1.7; font-weight: 400; margin-bottom: 22px; }
.estimator-section .sub strong { color: var(--est-text); font-weight: 600; }

.estimator-section .proof-bar { display: flex; justify-content: center; align-items: center; margin-bottom: 22px; background: var(--est-surface); border-radius: 50px; border: 1.5px solid var(--est-border); overflow: hidden; box-shadow: var(--est-shadow); }
.estimator-section .proof-item { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 0.73rem; color: var(--est-textm); font-weight: 400; padding: 10px 6px; flex: 1; min-width: 0; }
.estimator-section .proof-num { font-family: 'Playfair Display', serif; color: var(--est-deep); font-size: 0.88rem; font-weight: 500; }
.estimator-section .proof-sep { width: 1px; height: 22px; background: var(--est-border); flex-shrink: 0; }

.estimator-section .opt-card { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 16px 12px; cursor: pointer; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--est-shadow); -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s; user-select: none; position: relative; }
.estimator-section .opt-card:active { transform: scale(0.97); box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.estimator-section .opt-card.sel { border-color: var(--est-deep); background: var(--est-priml); box-shadow: 0 0 0 3px rgba(26,92,74,0.10), var(--est-shadow); }
.estimator-section .opt-card.sel::after { content: '✓'; position: absolute; top: 8px; right: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--est-deep); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.estimator-section .opt-card:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }

.estimator-section .sit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.estimator-section .sit-card { min-height: 106px; }
.estimator-section .sit-card-wide { grid-column: 1 / -1; min-height: 72px; flex-direction: row; gap: 12px; justify-content: flex-start; padding: 14px 16px; }
.estimator-section .sit-card-wide .sit-icon { font-size: 1.5rem; margin-bottom: 0; }
.estimator-section .sit-card-wide .sit-label,.estimator-section .sit-card-wide .sit-sub { text-align: left; }
.estimator-section .sit-icon { font-size: 1.7rem; margin-bottom: 8px; display: block; }
.estimator-section .sit-label { font-size: 0.82rem; color: var(--est-text); font-weight: 500; line-height: 1.35; display: block; }
.estimator-section .sit-sub { font-size: 0.64rem; color: var(--est-muted); margin-top: 5px; display: block; font-weight: 400; }

.estimator-section .porc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.estimator-section .porc-card { background: var(--est-surface); border: 2px solid var(--est-border); border-radius: var(--est-radius); padding: 14px 12px; cursor: pointer; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--est-shadow); position: relative; -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: border-color 0.15s, background 0.15s, transform 0.12s; user-select: none; }
.estimator-section .porc-card:active { transform: scale(0.97); }
.estimator-section .porc-card.sel { border-color: var(--est-deep); background: var(--est-priml); box-shadow: 0 0 0 3px rgba(26,92,74,0.10); }
.estimator-section .porc-card.sel::after { content: '✓'; position: absolute; top: 8px; right: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--est-deep); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.estimator-section .porc-card:focus-visible,.estimator-section .porc-card:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
.estimator-section .porc-badge { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--est-goldbg); border: 1px solid var(--est-goldbdr); border-radius: 4px; padding: 3px 7px; color: var(--est-gold); font-weight: 700; margin-bottom: 8px; }
.estimator-section .porc-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--est-deep); line-height: 1; margin-bottom: 2px; font-weight: 500; }
.estimator-section .porc-origin { font-size: 0.6rem; color: var(--est-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.estimator-section .porc-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--est-gold); margin-bottom: 4px; }
.estimator-section .porc-warranty { font-size: 0.62rem; color: var(--est-primary); font-weight: 500; margin-bottom: 6px; }
.estimator-section .porc-desc { font-size: 0.64rem; color: var(--est-textm); line-height: 1.4; }

.estimator-section .crown-count-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.estimator-section .crown-count-card { min-height: 72px; justify-content: center; }
.estimator-section .crown-count-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--est-deep); display: block; line-height: 1; }
.estimator-section .crown-count-lbl { font-size: 0.6rem; color: var(--est-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

.estimator-section .count-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.estimator-section .count-card { min-height: 74px; justify-content: center; }
.estimator-section .count-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--est-deep); display: block; line-height: 1; }
.estimator-section .count-lbl { font-size: 0.6rem; color: var(--est-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

.estimator-section .allon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.estimator-section .allon-card { background: var(--est-surface); border: 2px solid var(--est-border); border-radius: var(--est-radius); padding: 16px 11px 14px; cursor: pointer; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--est-shadow); position: relative; -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s; user-select: none; }
.estimator-section .allon-card:active { transform: scale(0.97); }
.estimator-section .allon-card.sel { border-color: var(--est-deep); background: var(--est-priml); box-shadow: 0 0 0 3px rgba(26,92,74,0.10), var(--est-shadow); }
.estimator-section .allon-card.sel::after { content: '✓'; position: absolute; top: 8px; right: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--est-deep); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.estimator-section .allon-card:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
.estimator-section .allon-badge { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--est-priml); border: 1px solid var(--est-primb); border-radius: 4px; padding: 3px 8px; color: var(--est-primary); font-weight: 700; margin-bottom: 10px; }
.estimator-section .allon-badge-gold { background: var(--est-goldbg); border-color: var(--est-goldbdr); color: var(--est-gold); }
.estimator-section .allon-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--est-deep); line-height: 1; font-weight: 400; letter-spacing: -0.03em; }
.estimator-section .allon-name { font-size: 0.84rem; color: var(--est-text); font-weight: 700; margin: 4px 0 3px; letter-spacing: 0.03em; }
.estimator-section .allon-tagline { font-size: 0.63rem; color: var(--est-primary); font-weight: 500; margin-bottom: 12px; line-height: 1.4; }
.estimator-section .allon-list { list-style: none; text-align: left; width: 100%; margin-bottom: 12px; display: flex; flex-direction: column; gap: 5px; }
.estimator-section .allon-list li { font-size: 0.67rem; color: var(--est-textm); padding-left: 14px; position: relative; line-height: 1.4; }
.estimator-section .allon-list li::before { content: '✓'; position: absolute; left: 0; color: var(--est-success); font-weight: 700; font-size: 0.62rem; }
.estimator-section .allon-for { background: var(--est-surface2); border-radius: 8px; padding: 8px 9px; width: 100%; text-align: left; margin-top: auto; }
.estimator-section .allon-for-lbl { display: block; font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--est-muted); font-weight: 600; margin-bottom: 3px; }
.estimator-section .allon-for-txt { font-size: 0.65rem; color: var(--est-textm); line-height: 1.4; }

.estimator-section .arch-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.estimator-section .arch-card { min-height: 92px; }
.estimator-section .arch-icon { font-size: 1.5rem; margin-bottom: 7px; display: block; }
.estimator-section .arch-lbl { font-size: 0.8rem; color: var(--est-text); font-weight: 500; display: block; }
.estimator-section .arch-sub { font-size: 0.62rem; color: var(--est-muted); margin-top: 4px; display: block; }

.estimator-section .brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.estimator-section .brand-card { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 15px 13px 13px; cursor: pointer; text-align: left; display: flex; flex-direction: column; box-shadow: var(--est-shadow); -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s; user-select: none; position: relative; }
.estimator-section .brand-card:active { transform: scale(0.97); }
.estimator-section .brand-card.sel { border-color: var(--est-deep); background: var(--est-priml); box-shadow: 0 0 0 3px rgba(26,92,74,0.10), var(--est-shadow); }
.estimator-section .brand-card.sel::after { content: '✓'; position: absolute; top: 9px; right: 10px; width: 18px; height: 18px; border-radius: 50%; background: var(--est-deep); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.estimator-section .brand-card:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
.estimator-section .brand-badge { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--est-goldbg); border: 1px solid var(--est-goldbdr); border-radius: 4px; padding: 3px 7px; color: var(--est-gold); display: inline-block; margin-bottom: 9px; align-self: flex-start; font-weight: 600; }
.estimator-section .brand-name { font-size: 0.83rem; color: var(--est-text); font-weight: 600; line-height: 1.3; }
.estimator-section .brand-desc { font-size: 0.64rem; color: var(--est-muted); line-height: 1.4; margin-top: 3px; }
.estimator-section .brand-plbl { font-size: 0.6rem; color: var(--est-muted); margin-top: 2px; margin-bottom: 7px; }
.estimator-section .brand-warranty { font-size: 0.64rem; color: var(--est-primary); margin-top: auto; padding-top: 6px; font-weight: 500; }
.estimator-section .brand-price-compare { margin-top: 9px; }
.estimator-section .bpc-au { font-size: 0.7rem; color: var(--est-muted); font-weight: 400; text-decoration: line-through; text-decoration-color: var(--est-error); display: block; margin-bottom: 1px; }
.estimator-section .bpc-gf { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--est-gold); display: block; font-weight: 500; }
.estimator-section .bpc-save { display: inline-block; background: rgba(34,165,110,0.12); border: 1px solid rgba(34,165,110,0.25); border-radius: 4px; padding: 2px 7px; font-size: 0.62rem; color: var(--est-success); font-weight: 700; margin-top: 4px; letter-spacing: 0.02em; }

.estimator-section .prosth-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 16px; }
.estimator-section .prosth-card { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 16px; cursor: pointer; text-align: left; display: flex; align-items: flex-start; gap: 13px; box-shadow: var(--est-shadow); -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s; user-select: none; position: relative; overflow: hidden; }
.estimator-section .prosth-card:active { transform: scale(0.985); }
.estimator-section .prosth-card.sel { border-color: var(--est-deep); background: var(--est-priml); box-shadow: 0 0 0 3px rgba(26,92,74,0.10), var(--est-shadow); }
.estimator-section .prosth-card.sel::after { content: '✓'; position: absolute; top: 12px; right: 13px; width: 18px; height: 18px; border-radius: 50%; background: var(--est-deep); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.estimator-section .prosth-card:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
.estimator-section .prosth-icon { font-size: 1.7rem; flex-shrink: 0; padding-top: 1px; }
.estimator-section .prosth-info { flex: 1; padding-right: 18px; }
.estimator-section .prosth-tier { font-size: 0.57rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--est-muted); font-weight: 600; margin-bottom: 2px; }
.estimator-section .prosth-name { font-size: 0.9rem; color: var(--est-text); font-weight: 600; margin-bottom: 4px; }
.estimator-section .prosth-desc { font-size: 0.73rem; color: var(--est-textm); line-height: 1.5; margin-bottom: 7px; }
.estimator-section .prosth-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--est-gold); }
.estimator-section .popular-ribbon { position: absolute; top: -1px; right: -1px; background: var(--est-deep); color: #fff; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 0 var(--est-radius) 0 var(--est-radius-sm); }

.estimator-section .rec-tip { background: rgba(184,145,58,0.08); border: 1px solid var(--est-goldbdr); border-radius: var(--est-radius-sm); padding: 12px 14px; margin-bottom: 14px; font-size: 0.8rem; color: var(--est-textm); line-height: 1.55; text-align: left; display: none; }
.estimator-section .rec-tip.show { display: block; animation: estSlideIn 0.3s ease; }
.estimator-section .rec-tip strong { color: var(--est-text); font-weight: 600; }

.estimator-section .result-hero { background: linear-gradient(135deg, var(--est-deep) 0%, var(--est-primary) 100%); border-radius: var(--est-radius); padding: 24px 20px 20px; margin-bottom: 14px; text-align: center; box-shadow: 0 6px 30px rgba(26,92,74,0.22); position: relative; overflow: hidden; }
.estimator-section .result-hero::before { content: ''; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.estimator-section .result-treat { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.65); margin-bottom: 8px; font-weight: 500; }
.estimator-section .compare-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.estimator-section .compare-col { text-align: center; }
.estimator-section .cmp-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.5); margin-bottom: 4px; display: block; font-weight: 600; }
.estimator-section .cmp-price-au { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: rgba(255,255,255,0.38); text-decoration: line-through; text-decoration-color: rgba(239,68,68,0.7); display: block; line-height: 1; }
.estimator-section .cmp-arrow { font-size: 1.3rem; color: rgba(255,255,255,0.30); flex-shrink: 0; padding-top: 14px; }
.estimator-section .cmp-price-gf { font-family: 'Playfair Display', serif; font-size: clamp(2rem,8.5vw,3.8rem); color: #FFFFFF; display: block; line-height: 1; letter-spacing: -0.03em; font-weight: 500; word-break: break-word; }
.estimator-section .cmp-curr { font-size: 1rem; vertical-align: super; font-family: 'Inter'; font-weight: 300; }
.estimator-section .save-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--est-success); color: #fff; border-radius: 50px; padding: 5px 14px; margin-top: 10px; font-size: 0.8rem; font-weight: 700; }
.estimator-section .valid-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: 50px; padding: 5px 13px; margin-top: 10px; font-size: 0.72rem; color: rgba(255,255,255,0.80); font-weight: 500; }

.estimator-section .breakdown { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 16px; margin-bottom: 12px; text-align: left; box-shadow: var(--est-shadow); }
.estimator-section .bd-title { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--est-muted); margin-bottom: 12px; font-weight: 600; }
.estimator-section .bd-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--est-border); }
.estimator-section .bd-row:last-child { border-bottom: none; padding-top: 10px; }
.estimator-section .bd-lbl { font-size: 0.76rem; color: var(--est-textm); flex: 1; line-height: 1.4; }
.estimator-section .bd-val { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--est-text); flex-shrink: 0; }
.estimator-section .bd-total .bd-lbl { color: var(--est-text); font-weight: 600; font-size: 0.82rem; }
.estimator-section .bd-total .bd-val { color: var(--est-gold); font-size: 1rem; }

.estimator-section .incl-box { background: var(--est-priml); border: 1.5px solid var(--est-primb); border-radius: var(--est-radius); padding: 16px; margin-bottom: 12px; text-align: left; }
.estimator-section .incl-title { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--est-deep); margin-bottom: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.estimator-section .incl-title::before { content: '✦'; color: var(--est-gold); font-size: 0.5rem; }
.estimator-section .incl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.estimator-section .incl-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.78rem; color: var(--est-textm); line-height: 1.45; }
.estimator-section .incl-chk { color: var(--est-success); font-size: 0.7rem; flex-shrink: 0; padding-top: 2px; font-weight: 700; }
.estimator-section .free-value-total { background: var(--est-deep); color: #fff; border-radius: var(--est-radius-sm); padding: 11px 16px; margin-top: 10px; font-size: 0.82rem; text-align: center; font-weight: 500; }

.estimator-section .why-box { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 16px; margin-bottom: 12px; text-align: left; box-shadow: var(--est-shadow); }
.estimator-section .why-title { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--est-muted); margin-bottom: 11px; font-weight: 600; }
.estimator-section .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.estimator-section .why-item { font-size: 0.75rem; color: var(--est-textm); display: flex; align-items: flex-start; gap: 7px; line-height: 1.35; }
.estimator-section .why-icon { color: var(--est-success); font-weight: 700; font-size: 0.68rem; flex-shrink: 0; padding-top: 1px; }

.estimator-section .est-testi { background: var(--est-surface); border: 1.5px solid var(--est-border); border-left: 3px solid var(--est-gold); border-radius: var(--est-radius-sm); padding: 14px 16px; margin-bottom: 14px; text-align: left; box-shadow: var(--est-shadow); }
.estimator-section .est-testi-quote { font-size: 0.82rem; color: var(--est-textm); line-height: 1.65; font-style: italic; }
.estimator-section .est-testi-name { font-size: 0.68rem; color: var(--est-gold); margin-top: 9px; font-style: normal; font-weight: 600; }

.estimator-section .urgency-bar { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: 50px; padding: 9px 18px; margin-bottom: 14px; font-size: 0.77rem; color: var(--est-text); font-weight: 500; box-shadow: var(--est-shadow); }
.estimator-section .u-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--est-success); animation: estPulse 1.6s infinite; flex-shrink: 0; }

.estimator-section .btn-cta { width: 100%; min-height: 58px; padding: 16px 20px; background: linear-gradient(135deg, var(--est-deep) 0%, var(--est-primary) 100%); border: none; border-radius: var(--est-radius-sm); color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; margin-top: 4px; box-shadow: 0 4px 18px rgba(26,92,74,0.30); -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: opacity 0.15s, transform 0.12s, box-shadow 0.15s; }
.estimator-section .btn-cta:active { opacity: 0.88; transform: scale(0.985); }
.estimator-section .btn-cta:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
@keyframes estCtaPulse { 0%,100%{box-shadow:0 4px 18px rgba(26,92,74,0.30)} 50%{box-shadow:0 4px 36px rgba(26,92,74,0.58)} }
.estimator-section .btn-cta.pulse { animation: estCtaPulse 1.8s ease-in-out 3; }
.estimator-section .btn-ghost-sm { background: transparent; border: none; color: var(--est-textm); font-size: 0.78rem; font-family: 'Inter', sans-serif; cursor: pointer; margin-top: 12px; display: block; width: 100%; text-align: center; padding: 8px; text-decoration: underline; text-underline-offset: 2px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.estimator-section .btn-ghost-sm:focus-visible,.estimator-section .btn-cta:focus-visible,.estimator-section .btn-action:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }
.estimator-section .btn-wa { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; min-height: 52px; background: #25D366; color: #fff; border: none; border-radius: var(--est-radius-sm); padding: 14px 20px; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 700; cursor: pointer; margin-top: 10px; box-shadow: 0 3px 14px rgba(37,211,102,0.28); -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: opacity 0.15s, transform 0.12s; }
.estimator-section .btn-wa:active { opacity: 0.88; transform: scale(0.985); }

.estimator-section .psy-note { font-size: 0.76rem; color: var(--est-muted); margin-top: -10px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.estimator-section .psy-strip { background: var(--est-priml); border: 1.5px solid var(--est-primb); border-radius: var(--est-radius-sm); padding: 11px 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--est-primary); font-weight: 500; text-align: left; }
.estimator-section .psy-strip-icon { font-size: 1rem; flex-shrink: 0; }

.estimator-section .stay-card { display: flex; align-items: center; gap: 13px; background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 14px 16px; margin-bottom: 12px; box-shadow: var(--est-shadow); text-align: left; }
.estimator-section .stay-icon { font-size: 1.8rem; flex-shrink: 0; }
.estimator-section .stay-info { flex: 1; min-width: 0; }
.estimator-section .stay-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--est-muted); font-weight: 600; margin-bottom: 3px; }
.estimator-section .stay-days { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--est-deep); }
.estimator-section .stay-detail { font-size: 0.72rem; color: var(--est-textm); margin-top: 2px; line-height: 1.4; }
.estimator-section .stay-badge { background: var(--est-priml); border: 1px solid var(--est-primb); border-radius: 6px; padding: 5px 9px; font-size: 0.68rem; color: var(--est-primary); font-weight: 600; flex-shrink: 0; text-align: center; }

.estimator-section .expand-box { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); margin-bottom: 12px; overflow: hidden; box-shadow: var(--est-shadow); }
.estimator-section .expand-hd { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; cursor: pointer; font-size: 0.83rem; color: var(--est-text); font-weight: 500; gap: 10px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 44px; user-select: none; }
.estimator-section .exp-arr { color: var(--est-primary); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.estimator-section .expand-box.open .exp-arr { transform: rotate(90deg); }
.estimator-section .expand-bd { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 16px; }
.estimator-section .expand-box.open .expand-bd { max-height: 4000px; padding-bottom: 16px; }

.estimator-section .tl-item { display: flex; gap: 12px; margin-bottom: 10px; text-align: left; }
.estimator-section .tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 12px; }
.estimator-section .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--est-deep); margin-top: 3px; flex-shrink: 0; }
.estimator-section .tl-line { width: 2px; flex: 1; background: var(--est-primb); min-height: 14px; margin-top: 3px; }
.estimator-section .tl-day { font-size: 0.63rem; color: var(--est-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.estimator-section .tl-txt { font-size: 0.76rem; color: var(--est-textm); line-height: 1.45; padding-bottom: 6px; }

.estimator-section .est-faq-box { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); margin-bottom: 12px; box-shadow: var(--est-shadow); overflow: hidden; }
.estimator-section .est-faq-item { border-bottom: 1px solid var(--est-border); }
.estimator-section .est-faq-item:last-child { border-bottom: none; }
.estimator-section .est-faq-q { padding: 14px 16px; font-size: 0.82rem; color: var(--est-text); font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; -webkit-tap-highlight-color: transparent; line-height: 1.4; touch-action: manipulation; min-height: 44px; user-select: none; }
.estimator-section .est-faq-arr { color: var(--est-primary); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.estimator-section .est-faq-item.open .est-faq-arr { transform: rotate(90deg); }
.estimator-section .est-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 0.79rem; color: var(--est-textm); line-height: 1.65; }
.estimator-section .est-faq-item.open .est-faq-a { max-height: 600px; padding: 0 16px 14px; }

.estimator-section .coord-card { display: flex; align-items: center; gap: 13px; background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 14px 16px; margin-bottom: 14px; box-shadow: var(--est-shadow); text-align: left; }
.estimator-section .coord-av { width: 46px; height: 46px; border-radius: 50%; background: var(--est-priml); border: 2px solid var(--est-primb); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.estimator-section .coord-name { font-size: 0.83rem; color: var(--est-text); font-weight: 600; margin-bottom: 3px; }
.estimator-section .coord-status { display: flex; align-items: center; gap: 6px; font-size: 0.73rem; color: var(--est-textm); margin-bottom: 2px; }
.estimator-section .coord-note { font-size: 0.68rem; color: var(--est-muted); }

.estimator-section .action-row { display: flex; gap: 8px; margin-top: 10px; margin-bottom: 6px; }
.estimator-section .btn-action { flex: 1; padding: 12px 8px; border-radius: var(--est-radius-sm); border: 1.5px solid var(--est-border); background: var(--est-surface); font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--est-textm); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; transition: background 0.15s, color 0.15s; }
.estimator-section .btn-action:active { background: var(--est-priml); color: var(--est-primary); }

.estimator-section .consult-box { background: var(--est-surface); border: 1.5px solid var(--est-border); border-radius: var(--est-radius); padding: 22px 18px; margin-bottom: 14px; text-align: left; box-shadow: var(--est-shadow); }
.estimator-section .consult-icon { font-size: 2.1rem; display: block; text-align: center; margin-bottom: 14px; }
.estimator-section .consult-title { font-size: 0.92rem; color: var(--est-text); font-weight: 600; margin-bottom: 10px; text-align: center; line-height: 1.4; }
.estimator-section .consult-text { font-size: 0.8rem; color: var(--est-textm); line-height: 1.7; }
.estimator-section .consult-text strong { color: var(--est-text); font-weight: 600; }

.estimator-section .est-restore-banner { position: relative; background: var(--est-text); color: #fff; border-radius: var(--est-radius); padding: 12px 16px; margin: 16px 20px; display: flex; align-items: center; gap: 10px; font-size: 0.78rem; box-shadow: 0 4px 20px rgba(0,0,0,0.28); }
.estimator-section .est-restore-banner span { flex: 1; }

.estimator-section .disclaimer { font-size: 0.69rem; color: var(--est-muted); line-height: 1.55; text-align: center; margin: 12px 0; }
.estimator-section .est-trust { display: flex; justify-content: center; flex-wrap: wrap; row-gap: 6px; margin-top: 20px; }
.estimator-section .est-ti { font-size: 0.61rem; color: var(--est-muted); letter-spacing: 0.09em; text-transform: uppercase; font-weight: 500; padding: 0 11px; border-right: 1px solid var(--est-border); }
.estimator-section .est-ti:last-child { border-right: none; }

.estimator-section .cur-row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.estimator-section .cur-btn { padding: 10px 12px; min-height: 44px; border-radius: 20px; border: 1.5px solid var(--est-border); background: var(--est-surface); font-size: 0.72rem; font-weight: 600; cursor: pointer; color: var(--est-textm); transition: all 0.15s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.estimator-section .cur-btn.active { background: var(--est-deep); color: #fff; border-color: var(--est-deep); }
.estimator-section .cur-btn:focus-visible { outline: 3px solid var(--est-primary); outline-offset: 2px; }

.estimator-section .est-form-bridge { text-align: center; margin-top: 32px; padding: 24px; }
.estimator-section .est-form-bridge p { font-size: 1rem; color: var(--est-textm); margin-bottom: 16px; }
.estimator-section .btn-gold { display: inline-block; background: linear-gradient(135deg, var(--est-deep), var(--est-primary)); color: #fff; padding: 14px 28px; border-radius: var(--est-radius-sm); font-weight: 700; text-decoration: none; font-size: 1rem; letter-spacing: 0.03em; box-shadow: 0 4px 18px rgba(26,92,74,0.28); transition: opacity 0.15s; }
.estimator-section .btn-gold:hover { opacity: 0.9; }

/* Estimate pre-fill summary */
.form-estimate-summary { display: flex; gap: 12px; background: linear-gradient(135deg, #0F5C3B, #1a7a52); border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; color: white; }
.fes-content { flex: 1; }
.fes-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.fes-treatment { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.fes-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; }

/* Responsive */
@media (min-width: 560px) {
  .estimator-section .slide { padding: 32px 32px 42px; }
  .estimator-section h2 { font-size: clamp(1.85rem,4vw,2.2rem); }
  .estimator-section .btn-cta,.estimator-section .btn-wa { max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 414px) { .estimator-section .count-grid { gap: 8px; } }
@media (max-width: 393px) {
  .estimator-section .compare-row { gap: 8px; }
  .estimator-section .cmp-price-gf { font-size: clamp(1.85rem,7.5vw,2.6rem); }
}
@media (max-width: 360px) {
  .estimator-section .count-num { font-size: 1.5rem; }
  .estimator-section .arch-grid { gap: 8px; }
  .estimator-section .allon-num { font-size: 2.2rem; }
}
@media (max-width: 340px) {
  .estimator-section .brand-grid { grid-template-columns: 1fr; }
  .estimator-section h2 { font-size: 1.4rem; }
}

/* ── WHATSAPP LEAD GATE MODAL ── */
.wa-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(5,5,5,0.72);
  align-items: center; justify-content: center;
  animation: fadeIn 0.25s ease;
  padding: 16px;
}
.wa-modal-overlay.open { display: flex; }
.wa-modal {
  background: #fff; border-radius: 20px; padding: 40px 32px 32px;
  max-width: 400px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}
.wa-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f5f5f5; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 18px; line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.wa-modal-close:hover { background: #eee; color: #333; }
.wa-modal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #e8f5e9; color: #2e7d32;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
.wa-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--deep); margin-bottom: 8px; line-height: 1.3;
}
.wa-modal p {
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: 22px; line-height: 1.55;
}
.wa-modal-field {
  margin-bottom: 12px;
}
.wa-modal-row {
  display: flex; gap: 8px;
}
.wa-modal-row input { flex: 1; min-width: 0; }
.wa-modal-field input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  background: #fafafa; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.wa-modal-field input:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px var(--priml);
}
.wa-modal-field input::placeholder { color: #aaa; }
.wa-modal-btn {
  width: 100%; padding: 15px;
  background: #25D366; color: #fff;
  border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 600; font-family: inherit;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 9px;
  margin-top: 8px; transition: background 0.2s, transform 0.15s;
}
.wa-modal-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-modal-btn:active { transform: translateY(0); }
.wa-modal-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.wa-modal-skip {
  display: block; text-align: center; margin-top: 14px;
  font-size: 0.8rem; color: var(--muted);
  cursor: pointer; text-decoration: underline;
  background: none; border: none; font-family: inherit;
  width: 100%;
}
.wa-modal-skip:hover { color: var(--text); }
