/* ============================================================
   DENTAL MOON CLINIC & SPA — CSS 2026 PREMIUM
   Mobile-first · Glassmorphism · Moon aesthetics
   ============================================================ */

/* ──────────────── TOKENS ──────────────── */
:root {
  /* Color palette */
  --navy-950:  #060f22;
  --navy-900:  #0c1c3e;
  --navy-800:  #152e62;
  --navy-700:  #1e4080;
  --blue-600:  #2563a8;
  --blue-500:  #4a87c8;
  --blue-400:  #72a9dc;
  --blue-300:  #a8ccee;
  --blue-100:  #dff0fb;
  --blue-50:   #f0f8ff;
  --rose-400:  #f472b6;
  --rose-300:  #fda4cf;
  --gold-400:  #e2c97a;
  --wa-green:  #25d366;
  --wa-dark:   #128c5e;
  --white:     #ffffff;
  --cream:     #fafcff;
  --ink:       #0f1e35;
  --ink-80:    #243046;
  --muted:     #5c7392;
  --muted-light: #8ba3be;
  --line:      rgba(21, 46, 98, .11);
  --line-mid:  rgba(21, 46, 98, .18);
  --shadow-sm: 0 4px 16px rgba(6, 15, 34, .10);
  --shadow:    0 12px 40px rgba(6, 15, 34, .14);
  --shadow-lg: 0 24px 64px rgba(6, 15, 34, .18);
  --shadow-xl: 0 40px 80px rgba(6, 15, 34, .22);
  --radius-sm: 16px;
  --radius:    24px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --radius-full: 9999px;
  --container: 1200px;
  --header-h:  80px;
  --ease:      cubic-bezier(.22, .8, .22, 1);
  --ease-out:  cubic-bezier(.2, 1, .4, 1);
  --glass-bg:  rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .55);
}

/* ──────────────── RESET & BASE ──────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: 'Inter', 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ──────────────── ACCESSIBILITY ──────────────── */
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  transform: translateY(-200%);
  padding: 12px 20px; border-radius: var(--radius-full);
  background: var(--navy-900); color: #fff;
  font-weight: 700; transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

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

/* ──────────────── LAYOUT ──────────────── */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section { padding: 100px 0; }
.section--soft {
  background:
    radial-gradient(circle at 10% 90%, rgba(72, 135, 200, .08), transparent 40rem),
    radial-gradient(circle at 90% 10%, rgba(244, 114, 182, .06), transparent 30rem),
    linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
}
.section--guide {
  background:
    radial-gradient(circle at 20% 50%, rgba(21, 46, 98, .95), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(30, 64, 128, .90), transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
}
.section--guide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.section--navy-dark {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--navy-dark::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60rem; height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 135, 200, .18), transparent 60%);
  pointer-events: none;
}
.section--cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 60%, #080e1e 100%);
  color: #fff;
  overflow: hidden;
}

/* ──────────────── SECTION HEADS ──────────────── */
.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head--center { max-width: 600px; margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 12px 0;
}
.section-head p { color: var(--muted); font-size: 1.1rem; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.7);
  color: var(--navy-700);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.section-kicker--light {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--blue-300);
}

/* ──────────────── BUTTONS ──────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: .95rem; line-height: 1;
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    background .22s var(--ease),
    border-color .22s var(--ease),
    color .22s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--large { min-height: 56px; padding: 16px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* WhatsApp green */
.btn--wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .35);
}
.btn--wa:hover { background: var(--wa-dark); box-shadow: 0 16px 40px rgba(37, 211, 102, .45); color: #fff; }

/* Primary navy */
.btn--primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { box-shadow: var(--shadow); }

/* Secondary blue */
.btn--secondary {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  color: var(--navy-900);
  box-shadow: 0 10px 28px rgba(74, 135, 200, .25);
}
.btn--secondary:hover { box-shadow: 0 16px 36px rgba(74, 135, 200, .35); }

/* Outline dark */
.btn--outline {
  border-color: var(--line-mid);
  color: var(--navy-800);
  background: rgba(255,255,255,.8);
}
.btn--outline:hover { background: var(--blue-50); border-color: var(--blue-400); }

/* Outline light (for dark backgrounds) */
.btn--outline-light {
  border-color: rgba(255,255,255,.28);
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
}
.btn--outline-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); color: #fff; }

/* Outline white */
.btn--outline-white {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.btn--outline-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

/* Ghost */
.btn--ghost { color: var(--muted); background: transparent; }
.btn--ghost:hover { color: var(--navy-800); background: var(--blue-50); }

/* Small service button */
.btn--service-wa {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding: 9px 16px;
  border: 1.5px solid rgba(37, 211, 102, .3);
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, .07);
  color: #16a34a;
  font-size: .82rem; font-weight: 700;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.btn--service-wa:hover {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
  transform: translateY(-1px);
}

/* ──────────────── TOP STRIP ──────────────── */
.top-strip {
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 500;
}
.top-strip__inner {
  min-height: 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-block: 6px;
}
.top-strip__left {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.top-strip__right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.top-strip__wa {
  display: inline-flex; align-items: center; gap: 6px;
  color: #5ee88e; font-weight: 700;
  transition: color .2s;
}
.top-strip__wa:hover { color: #86efac; }
.top-strip__sep { opacity: .4; }
.top-strip__right a {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s;
}
.top-strip__right a:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ──────────────── HEADER ──────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(21,46,98,.07);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 32px rgba(6, 15, 34, .10);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  min-width: max-content;
}
.brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy-900); letter-spacing: -.02em;
}
.brand__text small {
  font-size: .62rem; font-weight: 700;
  color: var(--muted); letter-spacing: .1em; text-transform: uppercase;
}

.main-nav {
  display: flex; align-items: center; gap: 2px;
  padding: 6px; border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.65);
}
.main-nav a {
  padding: 9px 13px; border-radius: var(--radius-full);
  color: var(--muted); font-weight: 600; font-size: .88rem;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.is-active {
  background: var(--blue-50);
  color: var(--navy-800);
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border: none; border-radius: 14px;
  background: var(--navy-900);
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px; border-radius: 2px;
  background: #fff;
  transition: transform .2s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta { font-size: .88rem; padding: 11px 18px; }

/* ──────────────── HERO ──────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 60px 0 80px;
  background:
    radial-gradient(circle at 70% 50%, rgba(74, 135, 200, .15), transparent 45%),
    radial-gradient(circle at 5% 80%, rgba(244, 114, 182, .08), transparent 30%),
    linear-gradient(165deg, #f0f8ff 0%, #fafcff 40%, #fff 100%);
  overflow: hidden;
}

.hero__bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb--1 {
  width: 50rem; height: 50rem;
  top: -15rem; right: -10rem;
  background: radial-gradient(circle, rgba(74, 135, 200, .18), transparent 70%);
  animation-delay: 0s;
}
.orb--2 {
  width: 35rem; height: 35rem;
  bottom: -10rem; left: -8rem;
  background: radial-gradient(circle, rgba(244, 114, 182, .10), transparent 70%);
  animation-delay: -3s;
}
.orb--3 {
  width: 28rem; height: 28rem;
  top: 30%; right: 30%;
  background: radial-gradient(circle, rgba(226, 201, 122, .08), transparent 70%);
  animation-delay: -6s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.06); }
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  color: var(--navy-700);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow__moon {
  font-size: 1rem;
  background: linear-gradient(135deg, #a8ccee, #2563a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--navy-950);
  margin: 18px 0 0;
}
.hero__accent {
  background: linear-gradient(135deg, var(--blue-600), var(--rose-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 580px;
  line-height: 1.65;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: .8rem; font-weight: 600;
}

/* Hero card */
.hero__visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(240,248,255,.7));
  border: 1.5px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow-xl);
  padding: 12px;
}
.hero-card__glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 135, 200, .25), transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-xl) - 10px);
}
.hero-card__badge {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(6, 15, 34, .18);
  color: var(--navy-900); font-weight: 700; font-size: .9rem;
}
.hero-card__badge img { width: 26px; height: 26px; flex-shrink: 0; }

/* ──────────────── TRUST BAR ──────────────── */
.trust-bar {
  position: relative; z-index: 2;
  margin-top: -24px;
  padding-bottom: 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.95);
  transition: background .3s, transform .3s var(--ease);
}
.trust-card:hover { background: #fff; transform: translateY(-2px); }
.trust-card__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  margin-bottom: 14px;
}
.trust-card strong {
  display: block;
  color: var(--navy-900); font-size: 1rem; font-weight: 800;
  margin-bottom: 6px;
}
.trust-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ──────────────── SERVICES ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  display: flex; flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(74,135,200,.3);
}
.service-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  font-size: 1.5rem;
  margin-bottom: 14px;
  flex-shrink: 0;
  color: var(--navy-800);
}
.service-card__icon svg { display: block; flex-shrink: 0; }
.service-card h3 {
  color: var(--navy-900);
  font-size: 1rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 8px;
}
.service-card p {
  color: var(--muted); font-size: .875rem;
  line-height: 1.55; flex: 1;
  margin-bottom: 16px;
}
.service-card--cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-color: transparent;
  color: #fff;
}
.service-card--cta .service-card__icon {
  background: rgba(255,255,255,.12);
}
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: rgba(255,255,255,.75); }

/* ──────────────── WIZARD / GUIDE ──────────────── */
.wizard-shell {
  max-width: 820px;
  margin-inline: auto;
}

.wizard-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.wizard-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.wizard-step__dot {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.55);
  font-weight: 800; font-size: .9rem;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.wizard-step.active .wizard-step__dot {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, .2);
}
.wizard-step.completed .wizard-step__dot {
  background: rgba(37, 211, 102, .25);
  border-color: var(--wa-green);
  color: var(--wa-green);
}
.wizard-step span {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.wizard-step.active span { color: rgba(255,255,255,.9); }
.wizard-step__line {
  flex: 1; height: 1px; min-width: 40px; max-width: 80px;
  background: rgba(255,255,255,.15);
  margin: 0 4px;
  align-self: flex-start;
  margin-top: 20px;
}

.wizard-panel {
  display: none;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.wizard-panel.active { display: block; }

.wizard-panel__title {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: #fff; margin-bottom: 28px;
}
.wizard-panel__num {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--rose-400));
  font-size: 1rem; font-weight: 900; color: #fff;
}

.wizard-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 24px;
}
.wizard-fields--sub { grid-template-columns: 1fr; }

.field-label {
  display: grid; gap: 8px;
  font-size: .88rem; font-weight: 700;
  color: rgba(255,255,255,.85);
}
.field-required { color: var(--rose-400); }
.field-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: .95rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field-input::placeholder { color: rgba(255,255,255,.35); }
.field-input:focus {
  border-color: var(--blue-400);
  background: rgba(255,255,255,.14);
  box-shadow: 0 0 0 3px rgba(74, 135, 200, .2);
  outline: none;
  color: #fff;
}
select.field-input option { background: var(--navy-900); color: #fff; }

/* Chip radio / checkbox */
.wizard-chips, .symptom-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.75);
  font-size: .85rem; font-weight: 600;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  user-select: none;
}
.chip:hover span {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.chip input:checked ~ span {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
  transform: scale(1.02);
}
.chip--check input:checked ~ span {
  background: rgba(37, 211, 102, .2);
  border-color: var(--wa-green);
  color: #5ee88e;
}

.symptom-fieldset {
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255,255,255,.04);
}
.symptom-fieldset legend {
  color: rgba(255,255,255,.8);
  font-size: .88rem; font-weight: 700;
  padding: 0 8px; margin-bottom: 14px;
}

.wizard-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; gap: 12px;
}
.wizard-desc { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* Message preview */
.message-preview {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.25);
  background: rgba(0, 0, 0, .2);
  color: rgba(255,255,255,.85);
  font-size: .9rem; line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 160px;
  margin-bottom: 18px;
  font-family: 'Courier New', monospace;
}

.wizard-notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(253, 224, 71, .1);
  border: 1px solid rgba(253, 224, 71, .2);
  color: rgba(255, 235, 100, .9);
  font-size: .82rem; line-height: 1.55;
  margin-bottom: 24px;
}
.wizard-notice svg { flex-shrink: 0; margin-top: 1px; }

.wizard-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* Section head for guide */
.section--guide .section-head--center h2 {
  color: #fff;
}
.section--guide .section-head--center p {
  color: rgba(255,255,255,.65);
}

/* ──────────────── GALLERY ──────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-100);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.gallery-item--tall img { aspect-ratio: 3/4; min-height: 400px; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img { aspect-ratio: 1/1; }
.gallery-item--wide img { aspect-ratio: 2/1; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  color: var(--navy-900);
  font-size: .82rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(6,15,34,.18);
}

/* ──────────────── PROCESS ──────────────── */
.process-section { padding: 100px 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.process-step {
  display: flex; flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step__num {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-700));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 1.2rem;
  margin-bottom: 18px; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(37, 99, 168, .3);
}
.process-step__content h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy-900); margin-bottom: 8px;
}
.process-step__content p { color: var(--muted); font-size: .9rem; line-height: 1.55; }

.process-cta { display: flex; justify-content: center; }

/* ──────────────── LOCATION ──────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.location__content .section-kicker--light { margin-bottom: 16px; }
.location__content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 32px;
}

.location-cards { display: grid; gap: 14px; margin-bottom: 32px; }
.location-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.location-card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(74, 135, 200, .2);
  color: var(--blue-300);
}
.location-card strong { display: block; color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.location-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; margin: 0; }
.location-card em { color: rgba(255,255,255,.45); font-style: normal; font-size: .82rem; }

.location__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.location-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.location-img-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.location-img-card__overlay {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(6,15,34,.22);
}
.location-img-card__overlay svg { color: var(--blue-600); flex-shrink: 0; }
.location-img-card__overlay strong { display: block; color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.location-img-card__overlay span { color: var(--muted); font-size: .78rem; display: block; }
.location-img-card__overlay .maps-note { margin-left: auto; flex-shrink: 0; color: var(--muted-light); font-size: .72rem; }
.location-img-card__overlay em { color: var(--muted-light); font-style: italic; }

/* ──────────────── FAQ ──────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq__intro h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-950); letter-spacing: -.03em;
  line-height: 1.1; margin: 12px 0;
}
.faq__intro p { color: var(--muted); }

.faq-list { display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-list details:hover { box-shadow: var(--shadow); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--navy-900); font-weight: 700; font-size: .98rem;
  list-style: none;
  transition: background .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  display: grid; place-items: center;
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 1.1rem; font-weight: 800;
  transition: background .2s, transform .2s;
}
.faq-list details[open] summary::after {
  content: '−';
  background: var(--navy-800); color: #fff;
  transform: rotate(180deg);
}
.faq-list p {
  margin: 0; padding: 0 22px 20px;
  color: var(--muted); font-size: .92rem; line-height: 1.6;
}
.faq-list strong { color: var(--navy-800); }

/* ──────────────── CTA FINAL ──────────────── */
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb--c1 {
  position: absolute; border-radius: 50%; filter: blur(80px);
  width: 50rem; height: 50rem;
  top: -20rem; right: -15rem;
  background: radial-gradient(circle, rgba(74, 135, 200, .25), transparent 70%);
}
.orb--c2 {
  position: absolute; border-radius: 50%; filter: blur(80px);
  width: 40rem; height: 40rem;
  bottom: -15rem; left: -10rem;
  background: radial-gradient(circle, rgba(244, 114, 182, .15), transparent 70%);
}

.cta-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-content .section-kicker--light { margin-bottom: 16px; }
.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff; letter-spacing: -.04em;
  line-height: 1.0; margin: 12px 0;
}
.cta-content p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cta-image {
  width: min(300px, 100%);
  flex-shrink: 0;
}
.cta-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,.15);
}

/* ──────────────── FOOTER ──────────────── */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.72);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 8px;
  margin-bottom: 16px;
}
.footer__brand p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0 0 16px; }
.footer__brand strong { color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: rgba(255,255,255,.2); color: #fff; }

.footer__col h3 {
  color: #fff; font-size: .9rem; font-weight: 800;
  margin-bottom: 14px; letter-spacing: .04em;
}
.footer__col ul { list-style: none; display: grid; gap: 8px; }
.footer__col a { color: var(--blue-300); font-size: .88rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__col p { font-size: .88rem; color: rgba(255,255,255,.6); margin: 0 0 4px; }
.footer__col em { color: rgba(255,255,255,.35); font-style: italic; font-size: .82rem; }

.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 28px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ──────────────── FLOATING WHATSAPP ──────────────── */
.floating-wa {
  position: fixed;
  right: 20px; bottom: 20px; z-index: 500;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-full);
  background: var(--wa-green);
  color: #fff;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .42), 0 4px 12px rgba(37, 211, 102, .28);
  transition: transform .22s var(--ease), box-shadow .22s, background .22s;
  text-decoration: none;
}
.floating-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 50px rgba(37, 211, 102, .55);
  color: #fff;
}
.floating-wa__pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--wa-green);
  opacity: 0;
  animation: pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.1); opacity: 0; }
}
.floating-wa__icon { flex-shrink: 0; }
.floating-wa__label { white-space: nowrap; }

/* ──────────────── TOAST ──────────────── */
.toast {
  position: fixed; left: 50%; bottom: 80px; z-index: 999;
  max-width: min(460px, calc(100% - 32px));
  transform: translate(-50%, 30px);
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--navy-950); color: #fff;
  font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow-xl);
  opacity: 0; pointer-events: none;
  transition: transform .28s var(--ease), opacity .28s;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ──────────────── REVEAL ANIMATIONS ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal--delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ──────────────── REDUCED MOTION ──────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .orb { animation: none; }
  .floating-wa__pulse { animation: none; }
}

/* ──────────────── RESPONSIVE: 1100px ──────────────── */
@media (max-width: 1100px) {
  .nav-cta { display: none; }
  .hero__grid { grid-template-columns: 1fr minmax(280px, 420px); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-layout { grid-template-columns: 1fr; }
  .cta-image { display: none; }
}

/* ──────────────── RESPONSIVE: 860px ──────────────── */
@media (max-width: 860px) {
  :root { --header-h: 68px; }

  .top-strip__inner { flex-direction: column; gap: 4px; padding-block: 8px; }
  .top-strip__left, .top-strip__right { gap: 8px; }

  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: calc(var(--header-h) + 8px) 16px auto;
    display: grid; gap: 4px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--line);
    opacity: 0; transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 201;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; font-size: .98rem; border-radius: var(--radius); }

  .hero { min-height: auto; padding: 48px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--tall img { aspect-ratio: 1/1; min-height: auto; }
  .gallery-item--wide { grid-column: span 2; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location__visual { order: -1; }
  .location-img-card img { aspect-ratio: 16/9; }

  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .wizard-fields { grid-template-columns: 1fr; }
}

/* ──────────────── RESPONSIVE: 640px ──────────────── */
@media (max-width: 640px) {
  :root { --header-h: 62px; }

  body { padding-bottom: 76px; }
  .container { width: min(100% - 24px, var(--container)); }

  /* Top strip mobile */
  .top-strip { font-size: .72rem; }
  .top-strip__inner { flex-direction: row; flex-wrap: wrap; justify-content: center; min-height: 34px; padding-block: 5px; }
  .top-strip__left span { display: none; } /* hide schedule text to save space */
  .top-strip__right { gap: 8px; }

  /* Header */
  .brand img { width: 44px; height: 44px; }
  .brand__text strong { font-size: .9rem; }
  .brand__text small { display: none; }
  .nav-toggle { width: 40px; height: 40px; border-radius: 12px; }

  /* Hero */
  .hero { padding: 32px 0 52px; }
  .hero__grid { gap: 28px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); margin: 14px 0 0; }
  .hero__lead { font-size: .96rem; margin: 14px 0 22px; }
  .hero__actions {
    display: grid; grid-template-columns: 1fr; gap: 10px;
  }
  .hero__actions .btn--ghost { order: 3; background: rgba(255,255,255,.7); border: 1px solid var(--line); }
  .hero__trust { gap: 6px; }
  .trust-pill { font-size: .74rem; padding: 6px 10px; }
  .hero-card img { aspect-ratio: 4/3.5; }
  .hero-card__badge { left: 12px; right: 12px; bottom: 12px; font-size: .8rem; }

  /* Trust bar */
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-card {
    display: grid; grid-template-columns: auto 1fr;
    column-gap: 14px; align-items: start;
  }
  .trust-card__icon { grid-row: span 2; width: 42px; height: 42px; margin: 0; }
  .trust-card strong { margin: 0; }
  .trust-card p { grid-column: 2; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { flex-direction: row; flex-wrap: wrap; gap: 12px; padding: 18px; }
  .service-card__icon { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
  .service-card h3 { font-size: .95rem; }
  .service-card p { font-size: .84rem; width: 100%; }
  .service-card .btn--service-wa { width: 100%; justify-content: center; }

  /* Section heads */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .section-head p { font-size: .95rem; }

  /* Wizard */
  .wizard-steps { gap: 0; overflow: hidden; }
  .wizard-step span { display: none; }
  .wizard-step__line { min-width: 24px; }
  .wizard-panel { padding: 20px; }
  .wizard-panel__title { font-size: 1.1rem; gap: 10px; }
  .wizard-panel__num { width: 34px; height: 34px; }
  .wizard-chips, .symptom-chips { gap: 6px; }
  .chip span { font-size: .8rem; padding: 8px 10px; }
  .wizard-actions { flex-direction: column; }
  .wizard-actions .btn { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-item, .gallery-item--tall, .gallery-item--wide {
    flex: 0 0 80%;
    min-height: 0;
    border-radius: var(--radius);
    scroll-snap-align: start;
  }
  .gallery-item img, .gallery-item--tall img, .gallery-item--wide img {
    aspect-ratio: 3/4;
    min-height: 0;
  }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-step { flex-direction: row; gap: 16px; padding: 18px; }
  .process-step__num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; }
  .process-step__content h3 { font-size: .95rem; }
  .process-step__content p { font-size: .85rem; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location__content h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .location-cards { gap: 10px; }
  .location-card { padding: 14px; }
  .location__actions { flex-direction: column; }
  .location__actions .btn { width: 100%; justify-content: center; }
  .location-img-card img { aspect-ratio: 4/3; }
  .location-img-card__overlay { flex-wrap: wrap; }
  .location-img-card__overlay .maps-note { width: 100%; margin: 0; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq__intro h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .faq-list summary { padding: 16px 18px; font-size: .9rem; }
  .faq-list p { padding: 0 18px 16px; }

  /* CTA final */
  .cta-content h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .cta-content p { font-size: .96rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Floating WA */
  .floating-wa {
    left: 12px; right: 12px; bottom: 12px;
    justify-content: center;
    border-radius: 18px;
  }

  .toast { bottom: 82px; }
}
