/* ─────────────────────────────────────────────────────────────
   DRA. GLAUCIA ATHAYDE — Odontopediatra & Ortodontista
   Visual system: warm, modern pediatric.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand (jaleco da doutora -> cyan vibrante) */
  --blue:       #1EB6D8;
  --blue-50:    #E6F7FB;
  --blue-100:   #C5EDF4;
  --blue-200:   #8FDDEA;
  --blue-500:   #1EB6D8;
  --blue-600:   #1797B5;
  --blue-700:   #0F6F88;
  --blue-900:   #0B3F4F;

  /* Warm pediatric accents */
  --peach:      #FFC7A8;
  --peach-deep: #F2906A;
  --sun:        #FFD66B;
  --mint:       #BFE6D4;
  --rose:       #F7B2C0;

  /* Surfaces */
  --cream:      #FFF7EE;
  --cream-2:    #FBEFE0;
  --paper:      #FFFFFF;
  --ink:        #0F2933;
  --ink-2:      #314955;
  --ink-soft:   #5B6F79;
  --line:       #E9DECE;
  --line-2:     #F0E5D3;

  /* Geometry */
  --radius-sm:  10px;
  --radius:     20px;
  --radius-lg:  32px;
  --radius-xl:  44px;
  --shadow-sm:  0 1px 2px rgba(15,41,51,.06), 0 2px 6px rgba(15,41,51,.04);
  --shadow:     0 10px 30px -12px rgba(15,41,51,.18), 0 4px 10px rgba(15,41,51,.05);
  --shadow-lg:  0 28px 60px -20px rgba(15,41,51,.28), 0 6px 14px rgba(15,41,51,.06);

  /* Type */
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui;
  --font-body:    "DM Sans", ui-sans-serif, system-ui;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 5.4rem); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); line-height: 1.02; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.55rem); line-height: 1.15; }
p { line-height: 1.55; color: var(--ink-2); text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--blue-500);
  border-radius: 2px;
}

.serif-italic {
  font-family: "Bricolage Grotesque", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--peach-deep);
}

/* ─── Layout helpers ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
section { position: relative; padding: clamp(72px, 9vw, 130px) 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(15,41,51,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(15,41,51,.28); }
.btn-primary .arrow { transition: transform .3s; }
.btn-primary:hover .arrow { transform: translate(4px, -4px) rotate(-45deg); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn-blue {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 8px 20px rgba(30,182,216,.35);
}
.btn-blue:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30,182,216,.45);
}

/* ─── Reveal animation ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .4s; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .35s, padding .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(255, 247, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 32px;
  box-shadow: 0 1px 0 rgba(15,41,51,.06);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: grid; place-items: center;
  color: white;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.08), 0 4px 10px rgba(30,182,216,.4);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-size: 1rem; line-height: 1; }
.brand-sub { font-size: .7rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 400; letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px;
  font-size: .92rem;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(15,41,51,.06); color: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: .92rem;
  text-decoration: none;
  font-weight: 500;
  transition: transform .25s, background .25s;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--blue-700); }
.nav-cta .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0); }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
}

/* ─── Floating WhatsApp ─── */
.whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.whatsapp-bubble {
  background: white; color: var(--ink);
  padding: 10px 16px 10px 20px;
  border-radius: 18px 18px 4px 18px;
  font-size: .9rem;
  box-shadow: var(--shadow);
  position: relative;
  opacity: 0; transform: translateY(8px) scale(.96);
  transition: opacity .35s, transform .35s;
  pointer-events: none;
  max-width: 240px;
  line-height: 1.35;
}
.whatsapp:hover .whatsapp-bubble,
.whatsapp.show-tip .whatsapp-bubble { opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-bubble strong { color: var(--blue-700); }

.whatsapp-btn {
  position: relative;
  width: 66px; height: 66px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
  transition: transform .3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08) rotate(-4deg); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
.whatsapp-btn::before, .whatsapp-btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-ring 2.4s infinite;
}
.whatsapp-btn::after { animation-delay: 1.2s; }
@keyframes wa-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.9);  opacity: 0;  }
}

/* ─── HERO ─── */
.hero {
  padding-top: 130px;
  padding-bottom: clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 90%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.dot-sep { width: 4px; height: 4px; background: var(--blue-500); border-radius: 50%; }
.hero h1 .smile-word {
  display: inline-block; position: relative;
  color: var(--blue-700);
}
.hero h1 .smile-word::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; bottom: -2px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' fill='none'><path d='M2 7 Q 50 14, 100 7 T 198 7' stroke='%231EB6D8' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}
.hero h1 .accent-italic { font-style: italic; font-weight: 400; color: var(--peach-deep); }

.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  margin: 28px 0 36px;
  max-width: 540px;
  color: var(--ink-2);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-ctas .note {
  font-size: .85rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.hero-ctas .note::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.18);
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
}
.hero-photo {
  position: absolute; inset: 0;
  border-radius: 50% 50% 46% 46% / 38% 38% 50% 50%;
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.hero-photo-wrap:hover .hero-photo img { transform: scale(1.04); }

.hero-photo-bg {
  position: absolute; inset: -20px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,198,168,.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(191,230,212,.5), transparent 55%);
}

/* Floating chips around photo */
.float-chip {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  z-index: 2;
  animation: float-bob 6s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; }
.float-chip .icon-circle {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-chip .label { line-height: 1.1; }
.float-chip .label small { display: block; color: var(--ink-soft); font-weight: 400; font-size: .72rem; margin-top: 1px; }

.chip-1 { top: 6%; left: -8%; animation-delay: 0s; }
.chip-2 { top: 42%; right: -12%; animation-delay: 1.2s; }
.chip-3 { bottom: 5%; left: -2%; animation-delay: 2.4s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 360px; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

/* Marquee */
.marquee {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Stats ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1; color: var(--blue-700);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num .plus { color: var(--peach-deep); font-size: .65em; margin-left: 2px; }
.stat-label { color: var(--ink-2); margin-top: 12px; font-size: .98rem; line-height: 1.4; max-width: 220px; }

@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ─── About ─── */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-tag {
  display: inline-flex;
  gap: 8px; padding: 8px 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  margin: 6px 6px 0 0;
  align-items: center;
}
.about-tag svg { width: 14px; height: 14px; }

.about-body p { font-size: 1.08rem; margin: 0 0 22px; }
.about-body p:first-of-type { font-size: 1.2rem; color: var(--ink); }

.credentials-grid {
  margin-top: 32px;
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.credential {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  transition: transform .3s, box-shadow .3s;
}
.credential:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.credential-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.credential-icon svg { width: 20px; height: 20px; }
.credential-title { font-weight: 600; font-size: .98rem; }
.credential-sub { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }

/* About — photo stack (fills left column void) */
.about-photo-stack {
  position: relative;
  margin-top: 50px;
  max-width: 480px;
  aspect-ratio: 4/5;
}
.about-photo {
  position: absolute;
  inset: 0;
  border-radius: 32px 32px 200px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-100);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.about-photo-stack:hover .about-photo img { transform: scale(1.05); }

.about-photo-deco {
  position: absolute;
  top: -16px; left: -18px;
  width: 60px; height: 60px;
  z-index: 2;
  animation: float-bob 6s ease-in-out infinite;
}

.about-quote {
  position: absolute;
  bottom: -28px; right: -16px;
  width: 78%;
  max-width: 320px;
  background: var(--paper);
  padding: 22px 22px 20px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  z-index: 2;
  font-size: .92rem;
  line-height: 1.45;
}
.about-quote p { margin: 0 0 8px; color: var(--ink); font-size: .95rem; font-style: italic; }
.about-quote-author { font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.about-quote-mark {
  position: absolute;
  top: -16px; left: 20px;
  width: 34px; height: 34px;
  background: var(--blue-500);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 6px 14px rgba(30,182,216,.4);
}
.about-quote-mark svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .about-photo-stack { max-width: 360px; margin: 50px auto 40px; }
  .about-quote { right: -8px; max-width: 280px; }
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ─── Audiences (Para quem) ─── */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience-card.a-1 { background: var(--blue-50); }
.audience-card.a-2 { background: #FFF1E5; }
.audience-card.a-3 { background: #E8F5EF; }
.audience-card.a-4 { background: #FFE9EF; }
.audience-card h3 { font-size: 1.4rem; margin-top: 18px; }
.audience-card p { font-size: .94rem; margin-top: 8px; }
.audience-card .age {
  font-family: var(--font-display);
  font-weight: 600; font-size: .82rem;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start;
}
.audience-card .icon-blob {
  width: 64px; height: 64px;
  border-radius: 22px;
  display: grid; place-items: center;
  transform: rotate(-6deg);
  transition: transform .4s;
}
.audience-card:hover .icon-blob { transform: rotate(6deg) scale(1.1); }
.audience-card.a-1 .icon-blob { background: var(--blue-500); color: white; }
.audience-card.a-2 .icon-blob { background: var(--peach-deep); color: white; }
.audience-card.a-3 .icon-blob { background: #4FAF87; color: white; }
.audience-card.a-4 .icon-blob { background: var(--rose); color: white; }
.audience-card .icon-blob svg { width: 30px; height: 30px; }

@media (max-width: 880px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ─── Services ─── */
.services { background: var(--ink); color: var(--cream); }
.services .eyebrow { color: var(--blue-200); }
.services .eyebrow::before { background: var(--blue-200); }
.services h2 { color: var(--cream); }
.services p { color: rgba(255,247,238,.7); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background .4s, transform .4s, border-color .4s;
  cursor: pointer;
  min-height: 220px;
}
.service-card:hover {
  background: rgba(30,182,216,.08);
  border-color: var(--blue-500);
  transform: translateY(-4px);
}
.service-card .number {
  font-family: var(--font-display);
  font-size: .9rem;
  color: rgba(255,247,238,.4);
}
.service-card h3 { margin: 16px 0 10px; color: var(--cream); }
.service-card p { color: rgba(255,247,238,.7); font-size: .98rem; }
.service-card .arrow {
  position: absolute; top: 32px; right: 32px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,247,238,.06);
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.service-card:hover .arrow { background: var(--blue-500); transform: rotate(-45deg); }
.service-card .arrow svg { width: 16px; height: 16px; color: var(--cream); }

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── Consultation timeline 360° ─── */
.consultation { background: var(--cream); }
.consultation-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.consultation-intro h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
.consultation-intro h2 em { font-style: italic; color: var(--peach-deep); font-weight: 500; }
.consultation-intro .duration-card {
  background: var(--blue-500);
  color: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.consultation-intro .duration-card::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.consultation-intro .duration-card .num {
  font-family: var(--font-display); font-size: 3.2rem; line-height: 1; font-weight: 600;
}
.consultation-intro .duration-card .lbl { font-size: 1rem; margin-top: 8px; opacity: .85; }

.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--line);
  border-radius: 1px;
}
.timeline-progress {
  position: absolute;
  left: 22px; top: 12px;
  width: 2px;
  background: var(--blue-500);
  border-radius: 1px;
  transition: height .15s linear;
  z-index: 1;
  box-shadow: 0 0 16px var(--blue-500);
}
.step {
  position: relative;
  padding: 20px 0 60px;
}
.step:last-child { padding-bottom: 0; }
.step-bullet {
  position: absolute;
  left: -60px; top: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-soft);
  z-index: 2;
  transition: background .4s, border-color .4s, color .4s, transform .4s;
}
.step.is-active .step-bullet {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(30,182,216,.18);
}
.step-body {
  background: var(--paper);
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  transition: transform .4s, box-shadow .4s;
}
.step.is-active .step-body { transform: translateX(6px); box-shadow: var(--shadow); }
.step-tag {
  display: inline-block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-700); font-weight: 500; margin-bottom: 8px;
}
.step h3 { font-size: 1.45rem; margin-bottom: 12px; }
.step p { font-size: 1rem; }
.step .bonus-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--sun); color: var(--ink);
  font-size: .75rem; font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 880px) {
  .consultation-intro { grid-template-columns: 1fr; gap: 32px; }
  .timeline { padding-left: 50px; }
  .timeline::before, .timeline-progress { left: 18px; }
  .step-bullet { left: -50px; width: 36px; height: 36px; font-size: .9rem; }
  .step-body { padding: 22px; }
}

/* ─── Office ─── */
.office { background: var(--paper); }
.office-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.office-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line-2);
}
.office-info-row {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-2);
}
.office-info-row:last-of-type { border-bottom: none; padding-bottom: 6px; }
.office-info-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--blue-700);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.office-info-icon svg { width: 20px; height: 20px; }
.office-info-row h4 { font-size: 1rem; font-family: var(--font-display); margin-bottom: 6px; }
.office-info-row p { font-size: .94rem; margin: 0; line-height: 1.5; }
.office-info-row .small { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .96rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 500; color: var(--ink); }
.hours-list .time { color: var(--ink-2); font-family: var(--font-display); }
.hours-list .note { font-size: .78rem; color: var(--ink-soft); margin-top: 2px; }

.map-card {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.map-iframe {
  flex: 1;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(15,41,51,.12);
  background: #E6F0F4;
  filter: saturate(.95);
}
.map-card .map-foot {
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.map-card .map-foot .place {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.map-card .map-foot .place small { display: block; color: var(--ink-soft); font-weight: 400; font-size: .8rem; margin-top: 2px; }
.map-card .map-foot .go {
  background: var(--ink); color: var(--cream);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  transition: transform .25s;
}
.map-card .map-foot .go:hover { transform: scale(1.1) rotate(-12deg); }
.map-card .map-foot .go svg { width: 18px; height: 18px; color: var(--cream); }

@media (max-width: 880px) {
  .office-grid { grid-template-columns: 1fr; }
}

/* Office — gallery strip */
.office-gallery {
  margin-top: 80px;
}
.gallery-head {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.gallery-head h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem); letter-spacing: -0.02em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5.2;
  cursor: pointer;
  background: var(--blue-100);
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 14px;
  background: rgba(255,247,238,.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  z-index: 2;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(15,41,51,.25) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gi-tall { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-tall { grid-column: span 1; aspect-ratio: 4/5; }
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 860px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  gap: 24px;
  user-select: none;
}
.faq-q:hover { color: var(--blue-700); }
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s, background .3s;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--blue-500); border-color: var(--blue-500); }
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: white; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.7,.2,1);
}
.faq-a-inner { padding: 0 4px 24px; max-width: 760px; }
.faq-a-inner p { font-size: 1rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── CTA Final ─── */
.cta-final {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-final::before { width: 380px; height: 380px; top: -180px; left: -120px; }
.cta-final::after { width: 280px; height: 280px; bottom: -140px; right: -80px; }
.cta-tooth-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'><path d='M40 24c-7 0-12 4-12 11 0 7 3 10 4 17 1 5 1 11 3 16 2 4 6 4 7 0 1-5 1-12 4-12s3 7 4 12c1 4 5 4 7 0 2-5 2-11 3-16 1-7 4-10 4-17 0-7-5-11-12-11-4 0-6 2-8 4-1 1-2 1-2 1s-1 0-2-1c-2-2-4-4-8-4Z' fill='white' opacity='.05'/></svg>");
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  color: white;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}
.cta-final h2 em { font-style: italic; color: var(--sun); font-weight: 500; }
.cta-final p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 600px; margin: 22px auto 38px; }
.cta-final .btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-final .btn-white { background: white; color: var(--ink); }
.cta-final .btn-white:hover { background: var(--ink); color: white; }
.cta-final .btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.4);
}
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: white; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255,247,238,.75);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,247,238,.08);
}
.footer h5 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1rem; color: var(--cream); margin: 0 0 18px;
}
.footer a, .footer li { color: rgba(255,247,238,.7); text-decoration: none; }
.footer a:hover { color: var(--blue-200); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: .94rem; }
.footer-tag { font-size: .98rem; max-width: 320px; margin-top: 14px; line-height: 1.55; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,247,238,.06);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.social-row a:hover { background: var(--blue-500); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── Decorative SVG floating things ─── */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.decor svg { width: 100%; height: 100%; }

/* Row of teeth as section accent / divider */
.teeth-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.teeth-row svg {
  width: 26px; height: 32px;
  flex-shrink: 0;
  opacity: .55;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.teeth-row svg:nth-child(2n) { transform: translateY(-6px); }
.teeth-row svg:nth-child(3n) { opacity: .35; }
.teeth-row.tiny svg { width: 18px; height: 22px; }

/* Tooth pattern: repeating tiny teeth as subtle bg */
.tooth-pattern {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M30 18c-5 0-9 3-9 8 0 5 2 7 3 12 .7 3.5.7 7 2 11 .7 2.5 3 2.5 4 0 .7-3 .7-7 3-7s2.3 4 3 7c1 2.5 3.3 2.5 4 0 1.3-4 1.3-7.5 2-11 1-5 3-7 3-12 0-5-4-8-9-8-3 0-4 1.5-6 3-.7.5-1.3.7-2 .7s-1.3-.2-2-.7c-2-1.5-3-3-6-3Z' fill='%231EB6D8' opacity='.06'/></svg>");
}

/* ─── Utility ─── */
.text-blue { color: var(--blue-700); }
.text-peach { color: var(--peach-deep); }
