/* ===========================================================
   Bright Smile Dental — Broad Ripple, Indianapolis
   Self-contained stylesheet (demo by No404)
   =========================================================== */

:root {
  /* Brand palette */
  --teal:        #0ea5b7;
  --teal-2:      #14b8a6;
  --teal-deep:   #0b7d8b;
  --teal-ink:    #06363d;
  --coral:       #ff8a6b;
  --coral-deep:  #ff6f4d;
  --bg:          #fdfdfb;
  --bg-soft:     #f4faf9;
  --bg-mint:     #e9f7f5;
  --card:        #ffffff;
  --slate:       #1f2d33;
  --slate-soft:  #4a5b62;
  --slate-mute:  #74858c;
  --line:        #e4ecec;

  /* Typography */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  /* Shape & depth */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(11, 125, 139, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(11, 125, 139, 0.22);
  --shadow-lg: 0 26px 60px -24px rgba(11, 125, 139, 0.32);
  --shadow-coral: 0 16px 34px -14px rgba(255, 111, 77, 0.55);

  --wrap: 1180px;
  --gut: 24px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--bg-mint);
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 0.5em; }
.section__head p { color: var(--slate-soft); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(255,111,77,.65); }
.btn--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--teal:hover { transform: translateY(-2px); }
.btn--ghost {
  background: #fff;
  color: var(--teal-deep);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--teal-2); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 253, 251, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-2) 60%, var(--teal-deep) 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  flex: none;
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--slate);
}
.brand__name span { color: var(--teal-deep); }
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mute);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--slate-soft);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--teal-deep); background: var(--bg-mint); }
.nav__links a.active { color: var(--teal-deep); background: var(--bg-mint); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--slate);
}
.nav__phone svg { width: 18px; height: 18px; color: var(--teal-deep); }
.nav__phone:hover { color: var(--teal-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  cursor: pointer;
  padding: 0 12px;
}
.nav__toggle span {
  height: 2.5px; width: 100%;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(20,184,166,0.16) 0%, rgba(20,184,166,0) 55%),
    radial-gradient(90% 70% at 0% 110%, rgba(255,138,107,0.12) 0%, rgba(255,138,107,0) 50%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  margin-bottom: 0.4em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-2) 55%, var(--coral) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--slate-soft);
  max-width: 30em;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__mini {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--slate-soft);
}
.hero__mini span { display: inline-flex; align-items: center; gap: 8px; }
.hero__mini svg { width: 18px; height: 18px; color: var(--teal-2); }

/* Hero visual card */
.hero__art { position: relative; }
.hero__card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, var(--bg-mint) 100%);
  border: 1px solid rgba(20,184,166,0.18);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.hero__tooth {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 30% 15%, rgba(255,255,255,0.9), rgba(255,255,255,0) 45%),
    linear-gradient(155deg, var(--teal) 0%, var(--teal-2) 55%, var(--teal-deep) 100%);
  display: grid; place-items: center;
  box-shadow: inset 0 -30px 60px -30px rgba(6,54,61,0.5);
}
.hero__tooth svg { width: 56%; height: 56%; filter: drop-shadow(0 8px 14px rgba(6,54,61,0.25)); }

.hero__chip {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__chip strong { font-family: var(--font-display); font-size: 1.18rem; display: block; line-height: 1; }
.hero__chip small { color: var(--slate-mute); font-size: 0.78rem; font-weight: 600; }
.hero__chip .ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex: none; color: #fff;
}
.hero__chip--1 { top: 26px; left: -22px; }
.hero__chip--1 .ic { background: linear-gradient(135deg, var(--coral), var(--coral-deep)); }
.hero__chip--2 { bottom: 30px; right: -20px; }
.hero__chip--2 .ic { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.hero__chip svg { width: 20px; height: 20px; }

/* ---------- Trust strip ---------- */
.trust {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-ink) 100%);
  color: #eafaf8;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: -44px 0 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
}
.trust__item {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-ink) 100%);
  padding: 26px 30px;
  display: flex; align-items: center; gap: 16px;
}
.trust__item .ic {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center; color: #fff;
}
.trust__item svg { width: 22px; height: 22px; }
.trust__item strong { font-family: var(--font-display); display: block; font-size: 1.02rem; color: #fff; }
.trust__item span { font-size: 0.86rem; color: rgba(234,250,248,0.78); }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(20,184,166,0.35); }
.card__ic {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--bg-mint); color: var(--teal-deep);
}
.card__ic svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.22rem; margin-bottom: 0.45em; }
.card p { color: var(--slate-soft); font-size: 0.98rem; margin-bottom: 0; }
.card__price {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-deep);
  background: var(--bg-mint);
  padding: 6px 13px;
  border-radius: var(--r-pill);
}

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.why__art {
  border-radius: var(--r-xl);
  padding: 40px;
  background:
    radial-gradient(110% 100% at 10% 0%, rgba(255,255,255,0.85), rgba(255,255,255,0) 50%),
    linear-gradient(160deg, var(--teal-2) 0%, var(--teal-deep) 90%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.why__art h3 { color: #fff; font-size: 1.55rem; }
.why__art p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.why__stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: 18px;
}
.why__stat strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; display: block; }
.why__stat span { font-size: 0.84rem; color: rgba(255,255,255,0.82); }

.why__list { display: grid; gap: 18px; }
.why__row { display: flex; gap: 16px; align-items: flex-start; }
.why__row .ic {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: var(--bg-mint); color: var(--teal-deep);
  display: grid; place-items: center;
}
.why__row svg { width: 22px; height: 22px; }
.why__row h4 { font-size: 1.1rem; margin-bottom: 0.25em; }
.why__row p { color: var(--slate-soft); font-size: 0.97rem; margin-bottom: 0; }

/* ---------- Doctor ---------- */
.doctor { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.doctor__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.55), rgba(255,255,255,0) 60%),
    linear-gradient(165deg, var(--bg-mint) 0%, #d6f0ec 100%);
  border: 1px solid rgba(20,184,166,0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  display: grid; place-items: end center;
  overflow: hidden;
}
.doctor__photo svg.figure { width: 84%; height: auto; }
.doctor__badge {
  position: absolute; top: 22px; left: 22px;
  background: #fff; border-radius: var(--r-pill);
  padding: 9px 16px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.85rem; color: var(--teal-deep);
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
}
.doctor__badge svg { width: 16px; height: 16px; }
.doctor blockquote {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--slate);
  border-left: 4px solid var(--coral);
  padding-left: 20px;
}
.doctor__sig { font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); }
.doctor__sig span { display: block; font-weight: 600; font-size: 0.9rem; color: var(--slate-mute); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote__stars { display: flex; gap: 3px; color: #ffb547; margin-bottom: 14px; }
.quote__stars svg { width: 18px; height: 18px; }
.quote p { color: var(--slate); font-size: 1rem; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
}
.quote__who strong { display: block; font-family: var(--font-display); font-size: 0.97rem; }
.quote__who span { font-size: 0.83rem; color: var(--slate-mute); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255,138,107,0.25), rgba(255,138,107,0) 50%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-ink) 100%);
  border-radius: var(--r-xl);
  padding: 60px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { color: rgba(234,250,248,0.86); max-width: 36em; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .hero__cta { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(90% 120% at 90% -20%, rgba(20,184,166,0.14), rgba(20,184,166,0) 55%),
    var(--bg);
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(20,184,166,0.1);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-top: 0.4em; }
.page-hero p { color: var(--slate-soft); font-size: 1.12rem; max-width: 40em; margin-bottom: 0; }

/* ---------- Services full list ---------- */
.svc-list { display: grid; gap: 20px; }
.svc-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(20,184,166,0.3); }
.svc-item__ic {
  width: 64px; height: 64px; border-radius: 17px; flex: none;
  background: linear-gradient(150deg, var(--bg-mint), #d6f0ec);
  color: var(--teal-deep); display: grid; place-items: center;
}
.svc-item__ic svg { width: 30px; height: 30px; }
.svc-item h3 { font-size: 1.25rem; margin-bottom: 0.3em; }
.svc-item p { color: var(--slate-soft); margin-bottom: 0; font-size: 0.98rem; }
.svc-item__price { text-align: right; }
.svc-item__price strong { font-family: var(--font-display); font-size: 1.18rem; color: var(--teal-deep); display: block; }
.svc-item__price span { font-size: 0.8rem; color: var(--slate-mute); }

.note-card {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: center;
  background: var(--bg-mint);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-top: 32px;
}
.note-card .ic {
  width: 56px; height: 56px; border-radius: 15px; flex: none;
  background: #fff; color: var(--teal-deep); display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.note-card svg { width: 28px; height: 28px; }
.note-card h3 { font-size: 1.15rem; margin-bottom: 0.25em; }
.note-card p { margin-bottom: 0; color: var(--slate-soft); font-size: 0.96rem; }

.ins-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ins-logos span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--slate-soft); background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 18px; box-shadow: var(--shadow-sm);
}

/* ---------- Booking ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 0.78fr; gap: 40px; align-items: start; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--slate);
}
.field label .req { color: var(--coral-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,184,166,0.14);
}
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b7d8b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}

.radio-row { display: flex; gap: 12px; }
.radio-card {
  flex: 1;
  position: relative;
}
.radio-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-card span {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 12px; cursor: pointer; transition: all .15s ease;
  color: var(--slate-soft);
}
.radio-card input:checked + span {
  border-color: var(--teal-2); background: var(--bg-mint); color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}
.radio-card input:focus-visible + span { box-shadow: 0 0 0 4px rgba(20,184,166,0.2); }

.form-foot { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.form-foot small { color: var(--slate-mute); font-size: 0.84rem; text-align: center; }

/* Confirmation */
.confirm {
  background: #fff;
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.confirm__check {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-md);
  animation: pop .4s cubic-bezier(.2,1.3,.5,1) both;
}
.confirm__check svg { width: 38px; height: 38px; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm h2 { font-size: 1.9rem; }
.confirm > p { color: var(--slate-soft); max-width: 32em; margin: 0 auto 26px; }
.confirm__summary {
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  max-width: 440px; margin: 0 auto 26px;
  display: grid; gap: 12px;
}
.confirm__row { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.confirm__row dt { font-size: 0.86rem; color: var(--slate-mute); font-weight: 600; }
.confirm__row dd { margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--slate); text-align: right; }
.confirm__code {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--teal-deep); letter-spacing: 0.06em;
  background: var(--bg-mint); padding: 4px 12px; border-radius: var(--r-pill);
}
.confirm__demo {
  font-size: 0.86rem; color: var(--coral-deep); font-weight: 600;
  background: rgba(255,138,107,0.1); border-radius: var(--r-pill);
  padding: 8px 16px; display: inline-flex; align-items: center; gap: 8px;
}

/* Booking side panel */
.info-card {
  background: linear-gradient(165deg, var(--teal-deep) 0%, var(--teal-ink) 100%);
  color: #eafaf8;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.info-card h3 { color: #fff; font-size: 1.35rem; }
.info-card > p { color: rgba(234,250,248,0.82); font-size: 0.98rem; }
.info-list { display: grid; gap: 18px; margin-top: 24px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,0.13); display: grid; place-items: center; color: #fff;
}
.info-list svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-family: var(--font-display); color: #fff; font-size: 0.98rem; }
.info-list span { font-size: 0.88rem; color: rgba(234,250,248,0.78); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-ink);
  color: rgba(234,250,248,0.78);
  padding: 64px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name span { color: var(--teal-2); }
.footer-about p { margin-top: 18px; font-size: 0.95rem; max-width: 30em; }
.footer-col h4 {
  font-family: var(--font-display); color: #fff; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.95rem; color: rgba(234,250,248,0.78); }
.footer-col a:hover { color: #fff; }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours li span:last-child { color: rgba(234,250,248,0.6); }

.footer-map {
  margin-top: 16px;
  height: 130px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(150deg, #0a4a52, #06363d);
}
.footer-map__road1 { position: absolute; top: 0; bottom: 0; left: 42%; width: 14px; background: rgba(20,184,166,0.35); transform: skewX(-12deg); }
.footer-map__road2 { position: absolute; left: 0; right: 0; top: 58%; height: 12px; background: rgba(255,255,255,0.12); }
.footer-map__pin {
  position: absolute; left: 42%; top: 58%; transform: translate(-50%, -100%);
  color: var(--coral); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}
.footer-map__pin svg { width: 30px; height: 30px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; font-size: 0.86rem; color: rgba(234,250,248,0.6);
}
.footer-bottom a { color: rgba(234,250,248,0.8); }
.footer-bottom a:hover { color: #fff; }

/* ---------- No404 badge ---------- */
.n404-badge {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .18s ease;
  max-width: calc(100vw - 36px);
}
.n404-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.n404-badge strong { color: var(--teal-deep); }
.n404-badge__dot {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  padding: 4px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.n404-badge__full { display: inline; }
.n404-badge__short { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 70px; }
  .hero__art { max-width: 440px; margin: 0 auto; width: 100%; }
  .why, .doctor, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor__photo { max-width: 380px; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav__phone span { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn { display: none; }

  .section { padding: 60px 0; }
  .trust__grid { grid-template-columns: 1fr; margin-top: -34px; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card, .confirm { padding: 28px 22px; }
  .cta-band { padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-item { grid-template-columns: 52px 1fr; }
  .svc-item__ic { width: 52px; height: 52px; }
  .svc-item__price { grid-column: 2; text-align: left; }

  .n404-badge__full { display: none; }
  .n404-badge__short { display: inline; }
  .n404-badge { right: 12px; bottom: 12px; padding: 7px 14px 7px 7px; font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .hero__chip--1 { left: 6px; }
  .hero__chip--2 { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
