/* ============================================================================
   Foundation Dental Center — Global Design System
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --font-display: 'League Spartan', Georgia, sans-serif;
  --font-sans:    'Libre Franklin', system-ui, -apple-system, sans-serif;

  --navy:         #2b3f52;
  --navy-deep:    #1d2e3d;
  --navy-mid:     #3a5068;
  --gold:         #b8922e;
  --gold-light:   #c9a84c;
  --gold-pale:    #e8d4a0;
  --cream:        #f2ece2;
  --cream-soft:   #e8e0d6;
  --white:        #ffffff;

  --text-dark:    #1a2b3a;
  --text-mid:     #4a5c6a;
  --text-mute:    #7a8a96;
  --text-light:   #f0ebe2;
  --text-gold:    #b8922e;

  --hairline:     #d8d0c4;
  --hairline-dark: rgba(255,255,255,0.12);

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-full:  9999px;

  --shadow-card:  0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);

  --nav-height: 112px;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-pale); }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}
.btn-outline:hover { background: var(--text-dark); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(240,235,226,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(240,235,226,0.7); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── UTILITY BAR ────────────────────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 40px;
  display: flex;
  align-items: center;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(240,235,226,0.65);
}
.utility-bar__item svg { flex-shrink: 0; opacity: 0.7; }
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-bar__right a {
  font-size: 12px;
  color: rgba(240,235,226,0.8);
  transition: color 0.15s;
}
.utility-bar__right a:hover { color: var(--gold-pale); }
.utility-bar__right a.call-link {
  color: var(--gold-pale);
  font-weight: 500;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  height: var(--nav-height);
  transition: box-shadow 0.2s;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo__icon svg { display: block; }
.nav-logo__text { line-height: 1.2; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.nav-logo__sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: rgba(27,46,61,0.05); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.15s;
}
.nav-call:hover { color: var(--gold); }
.nav-call svg { color: var(--gold); flex-shrink: 0; }
.nav-book {
  background: var(--gold);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--gold-light) !important; border-color: var(--gold-light); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--nav-height) + 40px);
  z-index: 99;
  background: var(--navy-deep);
  padding: 32px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,235,226,0.75);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-menu__ctas .btn {
  justify-content: center;
  width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/dentures-partials_img2.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,46,61,0.88) 0%, rgba(27,46,61,0.72) 55%, rgba(27,46,61,0.45) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero__content { max-width: 620px; }
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240,235,226,0.82);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── STATS ───────────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 28px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 12px 32px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stats__number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 13px;
  color: rgba(240,235,226,0.6);
  letter-spacing: 0.04em;
}

/* ── SERVICES ────────────────────────────────────────────────────────────── */
.services { background: var(--cream); }
.services__header {
  margin-bottom: 48px;
}
.services__h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-dark);
  max-width: 520px;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.service-card:hover .service-card__icon { background: rgba(255,255,255,0.1); }
.service-card:hover .service-card__icon svg { stroke: var(--gold-pale); }
.service-card:hover .service-card__title { color: #fff; }
.service-card:hover .service-card__desc { color: rgba(240,235,226,0.72); }
.service-card:hover .service-card__link { color: var(--gold-pale); }
.service-card:hover .service-card__link svg { stroke: var(--gold-pale); }

/* Featured card — white by default */
.service-card--featured {
  grid-row: span 1;
  background: var(--white);
  border-color: var(--hairline);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card__icon svg { transition: stroke 0.3s; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.service-card__link svg { transition: stroke 0.3s; }
.service-card__link:hover { gap: 10px; }

/* ── WHY FOUNDATION ──────────────────────────────────────────────────────── */
.why { background: var(--navy); padding: 96px 0; }
.why__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.why__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  font-style: normal;
}
.why__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
  margin-bottom: 48px;
}
.why__col {
  padding: 36px 32px 0 0;
  border-top: 2px solid transparent;
  margin-top: -1px;
}
.why__col:not(:last-child) { padding-right: 40px; }
.why__col-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.why__col-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,235,226,0.62);
}
.why__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── DOCTOR ──────────────────────────────────────────────────────────────── */
.doctor { background: var(--cream); padding: 96px 0; }
.doctor__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.doctor__img-wrap {
  position: relative;
}
.doctor__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}
.doctor__content {}
.doctor__h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 24px;
}
.doctor__bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.doctor__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 36px 0;
}
.doctor__stat {
  padding: 20px 0;
}
.doctor__stat:not(:last-child) {
  padding-right: 32px;
  border-right: 1px solid var(--hairline);
}
.doctor__stat:last-child { padding-left: 32px; }
.doctor__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.doctor__stat-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}
.doctor__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(240,235,226,0.55);
}
.footer__contact-item svg { flex-shrink: 0; opacity: 0.6; }
.footer__contact-item a {
  color: rgba(240,235,226,0.55);
  transition: color 0.15s;
}
.footer__contact-item a:hover { color: var(--gold-pale); }

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,235,226,0.4);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: rgba(240,235,226,0.62);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--gold-pale); }

.footer__divider {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: rgba(240,235,226,0.35);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 12px;
  color: rgba(240,235,226,0.35);
  transition: color 0.15s;
}
.footer__legal a:hover { color: rgba(240,235,226,0.7); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .utility-bar { display: none; }

  .nav-links, .nav-call { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; top: var(--nav-height); }

  .hero { min-height: 85vh; }
  .hero__h1 { font-size: 2.4rem; }

  .stats__grid { grid-template-columns: 1fr; gap: 0; }
  .stats__item + .stats__item::before { display: none; }
  .stats__item {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 24px;
  }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-row: span 1; }

  .why__cols { grid-template-columns: 1fr; gap: 32px; }
  .why__col { padding: 0; border-top: 1px solid var(--hairline-dark); padding-top: 32px; }

  .doctor__grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor__img { height: 380px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 32px; }

  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 2rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .why__ctas { flex-direction: column; align-items: flex-start; }
  .doctor__ctas { flex-direction: column; align-items: flex-start; }
  .doctor__ctas .btn { width: 100%; justify-content: center; }
  .stats__number { font-size: 2.6rem; }
}

/* ============================================================================
   VALUE CARDS
   ============================================================================ */

.value-cards { background: #fff; }

.value-cards__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.value-cards__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 10px;
}
.value-cards__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 14px;
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.value-card__img-wrap { overflow: hidden; height: 220px; }
.value-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.value-card:hover .value-card__img { transform: scale(1.05); }

.value-card__body { padding: 28px 24px 32px; }

.value-card__icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card__h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.value-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.value-card__link:hover { gap: 10px; }


/* ============================================================================
   CONSULT BAND
   ============================================================================ */

.consult-band {
  background: var(--cream);
  padding: 88px 0;
}

.consult-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consult-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 10px;
}
.consult-band__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 20px 0 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-soft);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step:first-child { padding-top: 0; }

.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 63, 82, 0.1);
  color: var(--navy);
  border: 1.5px solid rgba(43,63,82,0.2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.step__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}


/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonials { background: #f9f7f3; }

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.testimonials__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 10px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card__quote {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}
.testimonial-card__quote::before { content: open-quote; }
.testimonial-card__quote::after  { content: close-quote; }

.testimonial-card__author {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-card__detail {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 2px;
}


/* ============================================================================
   COMPARISON
   ============================================================================ */

.comparison { background: #fff; }

.comparison__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.comparison__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 10px;
}
.comparison__lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: 14px;
  line-height: 1.65;
}

.comparison__wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}
.comparison-table colgroup col:first-child  { width: 50%; }
.comparison-table colgroup col:nth-child(2) { width: 25%; }
.comparison-table colgroup col:nth-child(3) { width: 25%; }
.comparison-table thead tr {
  background: var(--navy);
}
.comparison-table th {
  padding: 16px 24px;
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table__us { text-align: center; }
.comparison-table__them { text-align: center; color: rgba(255,255,255,0.6) !important; }

.comparison-table__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--hairline);
  transition: background 0.15s ease;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: #faf8f5; }

.comparison-table td {
  padding: 14px 24px;
  color: var(--text-dark);
  vertical-align: middle;
}
.comparison-table td:nth-child(2) { text-align: center; }
.comparison-table td:nth-child(3) {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.9rem;
}

td.check {
  color: #1a8f3a;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
td.cross {
  color: var(--text-mute);
  font-size: 0.875rem;
  text-align: center;
}

.comparison__cta {
  text-align: center;
  margin-top: 40px;
}


/* ============================================================================
   CTA BAND + QUICK LINKS
   ============================================================================ */

.cta-band {
  background: var(--navy-deep);
  padding: 88px 0;
}
.cta-band__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-top: 10px;
}
.cta-band__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 16px 0 36px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 64px;
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.quick-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.quick-link__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.quick-link__arrow {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.quick-link:hover .quick-link__arrow { transform: translateX(4px); }


/* ============================================================================
   VISIT / CONTACT SECTION
   ============================================================================ */

/* Remove bottom padding so map is flush with footer */
.visit.section { padding-bottom: 0; }
.visit { background: var(--cream); }

.visit__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.visit__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 10px;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.visit__left {}
.visit__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-card);
}

.visit__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit__info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.visit__info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.visit__info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.visit__info-row:last-of-type { border-bottom: none; }

.visit__info-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.visit__info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.visit__info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.visit__info-value a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.visit__info-value a:hover { text-decoration: underline; }

.visit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.visit__map-full {
  margin-top: 48px;
  width: 100%;
  overflow: hidden;
}
.visit__map {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}


/* ============================================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================================ */

@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid .value-card:nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
  .consult-band__grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .visit__img { height: 360px; }
}

@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-grid .value-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: 0.875rem; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 64px 0; }
  .visit__img { height: 280px; }
}

@media (max-width: 480px) {
  .quick-links { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { text-align: center; justify-content: center; }
  .visit__actions { flex-direction: column; }
  .visit__actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================================
   DESKTOP MEGA-MENU DROPDOWNS
   ============================================================================ */

.nav-item {
  position: relative;
}

.nav-item__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-item__link:hover,
.nav-item__link.active { color: var(--gold); }

.nav-item__chevron {
  transition: transform 0.22s ease;
  opacity: 0.7;
}
.nav-item:hover .nav-item__chevron,
.nav-item:focus-within .nav-item__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  padding: 24px;
  padding-top: 30px; /* bridges hover gap between nav link and dropdown */
  min-width: 260px;
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.nav-dropdown--wide {
  min-width: 520px;
  display: flex;
  gap: 0;
  padding: 30px 28px 28px; /* keep 30px top to bridge hover gap */
}

/* Show on hover or keyboard focus-within */
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__col {
  flex: 1;
  min-width: 0;
}

.nav-dropdown__divider {
  width: 1px;
  background: #eee;
  margin: 0 20px;
  flex-shrink: 0;
}

.nav-dropdown__group-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0ece4;
}

.nav-dropdown .nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  margin: 2px -10px;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  border-left: 2px solid transparent;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  background: transparent;
}
.nav-dropdown .nav-dropdown__item:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 14px;
  border-left-color: var(--gold);
}

/* Non-wide dropdown: stack vertically */
.nav-dropdown:not(.nav-dropdown--wide) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer sub-titles */
.footer__sub-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  margin-bottom: 4px;
}
.footer__sub-title:first-child { margin-top: 0; }

/* ============================================================================
   MOBILE ACCORDION (nav sub-menus)
   ============================================================================ */

.mob-acc {
  width: 100%;
}

.mob-acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  text-align: left;
}
.mob-acc__trigger:hover { color: var(--gold); }

.mob-acc__chevron {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.25s ease;
}
.mob-acc[data-open] .mob-acc__chevron { transform: rotate(180deg); }

.mob-acc__panel {
  display: none;
  padding: 8px 0 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mob-acc[data-open] .mob-acc__panel { display: block; }

.mob-acc__group {
  margin-bottom: 12px;
}
.mob-acc__group:last-child { margin-bottom: 0; }

.mob-acc__group-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px 4px;
}

.mob-acc__panel a {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 22px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: none !important;
  transition: color 0.15s ease;
}
.mob-acc__panel a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  flex-shrink: 0;
  opacity: 0.6;
}
.mob-acc__panel a:hover { color: var(--gold); }

/* ============================================================================
   SERVICE CARD PNG ICONS
   ============================================================================ */

.service-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.service-card:hover .service-icon-img {
  filter: brightness(0) invert(1);
}

/* ============================================================================
   GLOBAL MOBILE OVERFLOW FIXES (≤ 480px)
   ============================================================================ */

@media (max-width: 480px) {
  /* Utility bar: hide address/hours, keep call only */
  .utility-bar__left { display: none; }
  .utility-bar__right { margin-left: auto; }

  /* Prevent nav actions from causing overflow */
  .nav-actions { display: none; }
  .mobile-toggle { display: flex !important; }

  /* Container full width */
  .container { padding: 0 16px; }

  /* Hero buttons stack */
  .hero__ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Comparison table: horizontal scroll + tighten columns */
  .comparison__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table colgroup col:first-child  { width: 56%; }
  .comparison-table colgroup col:nth-child(2) { width: 22%; }
  .comparison-table colgroup col:nth-child(3) { width: 22%; }
  .comparison-table__badge { font-size: 0.65rem; padding: 3px 7px; }
  .comparison-table th { padding: 10px 6px; font-size: 0.7rem; }
  .comparison-table td { padding: 10px 6px; font-size: 0.82rem; }

  /* Prevent any element from exceeding viewport */
  section, .site-header, .utility-bar, .site-footer { max-width: 100vw; }
}

/* ============================================================================
   LEGAL PAGES (Privacy Policy & Terms of Service)
   ============================================================================ */

.legal-hero {
  background: var(--navy);
  padding: 96px 0 64px;
  text-align: center;
}
.legal-hero .eyebrow { color: var(--gold); }
.legal-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  line-height: 1.2;
}
.legal-hero__meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.legal-body {
  background: #fff;
  padding: 64px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Sticky sidebar TOC */
.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.legal-toc a {
  font-size: 0.83rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 5px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.legal-toc a:hover {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--cream);
}

/* Content area */
.legal-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}
.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section--highlight {
  background: #faf8f4;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 48px;
}
.legal-section--highlight:last-child {
  margin-bottom: 0;
}

.legal-notice {
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content li {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--navy); }
.legal-content strong { color: var(--text-dark); }

.legal-contact-block {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}
.legal-contact-block strong { color: var(--navy); }

/* Legal responsive */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    background: var(--cream);
    padding: 16px;
    border-radius: var(--radius-md);
  }
  .legal-toc__title { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-hero { padding: 80px 0 48px; }
  .legal-section--highlight { padding: 24px; }
}

/* ============================================================================
   SERVICE PAGES
   ============================================================================ */

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.svc-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.svc-breadcrumb a:hover { color: var(--gold); }
.svc-breadcrumb__current { color: rgba(255,255,255,0.75); }

/* ── Service Hero ──────────────────────────────────────────────────────────── */
.svc-hero {
  background: var(--navy-deep);
  padding: 80px 0 0;
  overflow: hidden;
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.svc-hero__content { padding-bottom: 72px; }
.svc-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,146,46,0.12);
  border: 1px solid rgba(184,146,46,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.svc-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.svc-hero__tagline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(240,235,226,0.68);
  margin-bottom: 28px;
  max-width: 460px;
}
.svc-hero__highlights {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.svc-hero__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(240,235,226,0.82);
}
.svc-hero__highlight::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(184,146,46,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8922e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1.5px solid rgba(184,146,46,0.4);
}
.svc-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-hero__img-wrap { position: relative; align-self: end; }
.svc-hero__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}
.svc-hero__stat {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  text-align: center;
  min-width: 100px;
}
.svc-hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.svc-hero__stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 5px;
}

/* ── Overview ──────────────────────────────────────────────────────────────── */
.svc-overview {
  padding: 88px 0;
  background: #fff;
}
.svc-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-overview__img-wrap { position: relative; }
.svc-overview__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.svc-overview__img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 12px;
}
.svc-overview__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-overview__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.svc-overview__text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 14px;
}
.svc-overview__text:last-of-type { margin-bottom: 0; }
.svc-overview__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-overview__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.svc-overview__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Candidate Section ─────────────────────────────────────────────────────── */
.svc-candidate {
  padding: 88px 0;
  background: var(--cream);
}
.svc-candidate__header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-candidate__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-candidate__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-candidate__lead {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.svc-candidate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.svc-candidate__col {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
}
.svc-candidate__col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.svc-candidate__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.svc-candidate__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.svc-candidate__item::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(26,143,58,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a8f3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.svc-steps {
  padding: 88px 0;
  background: #fff;
}
.svc-steps__header {
  text-align: center;
  margin-bottom: 56px;
}
.svc-steps__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-steps__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--navy);
}
.svc-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.svc-step {
  padding: 32px 26px;
  background: var(--cream);
  border-radius: 16px;
  border-top: 3px solid var(--gold);
}
.svc-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,146,46,0.45);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-step__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* ── Benefits ──────────────────────────────────────────────────────────────── */
.svc-benefits {
  padding: 88px 0;
  background: var(--navy);
}
.svc-benefits__header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-benefits__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-benefits__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #fff;
  margin-bottom: 24px;
}
.svc-benefits__cta { display: inline-block; }
.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.svc-benefit__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.svc-benefit__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240,235,226,0.62);
  flex: 1;
  margin-bottom: 24px;
}
.svc-benefit__btn {
  align-self: flex-start;
  font-size: 11px;
  padding: 11px 22px;
}

/* ── FAQ Accordion ─────────────────────────────────────────────────────────── */
.svc-faq {
  padding: 88px 0;
  background: #fff;
}
.svc-faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-faq__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-faq__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--navy);
}
.svc-faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.15s;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
  color: var(--navy);
}
.faq-item.open .faq-item__icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item__a {
  display: none;
  padding: 0 48px 22px 0;
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-body);
}
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p { margin: 0 0 10px; }
.faq-item__a p:last-child { margin: 0; }

/* ── Related Services ──────────────────────────────────────────────────────── */
.svc-related {
  padding: 80px 0;
  background: var(--cream);
}
.svc-related__header {
  text-align: center;
  margin-bottom: 40px;
}
.svc-related__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-related__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--navy);
}
.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-related__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43,63,82,0.12);
}
.svc-related__img { width: 100%; height: 180px; object-fit: cover; display: block; }
.svc-related__body { padding: 20px; }
.svc-related__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.svc-related__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.svc-related__desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
}
.svc-related__arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Bottom CTA Band ───────────────────────────────────────────────────────── */
.svc-cta-band {
  padding: 88px 0;
  background: var(--navy-deep);
  text-align: center;
}
.svc-cta-band__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.svc-cta-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.svc-cta-band__text {
  font-size: 1.05rem;
  color: rgba(240,235,226,0.68);
  max-width: 500px;
  margin: 0 auto 38px;
  line-height: 1.65;
}
.svc-cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Service Page Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__img-wrap { display: none; }
  .svc-hero__content { padding-bottom: 56px; }
  .svc-hero__tagline { max-width: 100%; }
  .svc-overview__inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-overview__img-wrap { order: -1; }
  .svc-candidate__grid { grid-template-columns: 1fr; }
  .svc-benefits__grid { grid-template-columns: 1fr 1fr; }
  .svc-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-hero { padding-top: 56px; }
  .svc-hero__h1 { font-size: 1.9rem; }
  .svc-hero__ctas { flex-direction: column; }
  .svc-hero__ctas .btn { width: 100%; justify-content: center; }
  .svc-overview__img { height: 280px; }
  .svc-overview__img-wrap::before { display: none; }
  .svc-benefits__grid { grid-template-columns: 1fr; }
  .svc-related__grid { grid-template-columns: 1fr; }
  .svc-steps__grid { grid-template-columns: 1fr; }
  .svc-cta-band__actions { flex-direction: column; align-items: center; }
  .svc-cta-band__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .svc-candidate__col { padding: 24px 20px; }
  .faq-item__a { padding-right: 0; }
}


/* ============================================================================
   ABOUT PAGES
   ============================================================================ */

/* ── ABOUT HERO ──────────────────────────────────────────────────────────── */
.abt-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2439 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.abt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(184,146,46,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.abt-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.abt-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.abt-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
}
.abt-hero__tagline {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}
.abt-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.abt-hero__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.abt-hero__img { width: 100%; height: 100%; object-fit: cover; }

/* ── ABOUT INTRO (centred text block) ───────────────────────────────────── */
.abt-intro { padding: 88px 0; background: #fff; }
.abt-intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.abt-intro__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.abt-intro__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.22; color: var(--navy); margin-bottom: 24px;
}
.abt-intro__text {
  font-size: 1.05rem; line-height: 1.76; color: var(--text-mid);
}
.abt-intro__text + .abt-intro__text { margin-top: 16px; }

/* ── VALUES GRID ─────────────────────────────────────────────────────────── */
.abt-values { padding: 80px 0; background: var(--bg-light); }
.abt-values__header {
  text-align: center; max-width: 600px; margin: 0 auto 52px;
}
.abt-values__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.abt-values__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--navy);
}
.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.abt-value {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
}
.abt-value__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.abt-value__text {
  font-size: 0.95rem; line-height: 1.72; color: var(--text-mid);
}

/* ── FEATURE SECTION (image + text, alternating) ────────────────────────── */
.abt-feature { padding: 88px 0; background: #fff; }
.abt-feature--alt { background: var(--bg-light); }
.abt-feature__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.abt-feature--alt .abt-feature__inner { direction: rtl; }
.abt-feature--alt .abt-feature__content,
.abt-feature--alt .abt-feature__img-wrap { direction: ltr; }
.abt-feature__img-wrap {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
}
.abt-feature__img { width: 100%; height: 100%; object-fit: cover; }
.abt-feature__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.abt-feature__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.25; color: var(--navy); margin-bottom: 18px;
}
.abt-feature__text {
  font-size: 0.97rem; line-height: 1.76; color: var(--text-mid); margin-bottom: 16px;
}
.abt-feature__list { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.abt-feature__list li {
  font-size: 0.95rem; line-height: 1.55; color: var(--text-mid);
  padding-left: 20px; position: relative;
}
.abt-feature__list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* ── DOCTOR HERO ─────────────────────────────────────────────────────────── */
.abt-doc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2439 100%);
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.abt-doc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,146,46,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.abt-doc-hero__inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 72px; align-items: center; position: relative;
}
.abt-doc-hero__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.abt-doc-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1; color: #fff; margin-bottom: 8px;
}
.abt-doc-hero__credentials {
  font-size: 0.88rem; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55); margin-bottom: 28px;
  text-transform: uppercase;
}
.abt-doc-hero__tagline {
  font-size: 1.05rem; line-height: 1.74;
  color: rgba(255,255,255,0.78); margin-bottom: 36px;
}
.abt-doc-hero__img-wrap {
  border-radius: 16px; overflow: hidden; aspect-ratio: 3/4;
}
.abt-doc-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* ── DOCTOR BIO SECTION ──────────────────────────────────────────────────── */
.abt-doc-bio { padding: 88px 0; background: #fff; }
.abt-doc-bio__inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 72px; align-items: start;
}
.abt-doc-bio__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.abt-doc-bio__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy); margin-bottom: 24px;
}
.abt-doc-bio__text {
  font-size: 0.97rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 16px;
}
.abt-doc-sidebar {
  background: var(--bg-light);
  border-radius: 14px; padding: 36px 28px;
  border-top: 3px solid var(--gold);
}
.abt-doc-sidebar__title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.abt-doc-sidebar__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.abt-doc-sidebar__item {
  font-size: 0.9rem; line-height: 1.5; color: var(--text-mid);
  padding-left: 18px; position: relative;
}
.abt-doc-sidebar__item::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

/* ── CREDENTIALS ─────────────────────────────────────────────────────────── */
.abt-credentials { padding: 80px 0; background: var(--bg-light); }
.abt-credentials__header {
  text-align: center; max-width: 600px; margin: 0 auto 52px;
}
.abt-credentials__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.abt-credentials__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--navy);
}
.abt-credentials__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.abt-cred-group { }
.abt-cred-group__title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
}
.abt-cred-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.abt-cred-item { display: flex; gap: 16px; align-items: flex-start; }
.abt-cred-item__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}
.abt-cred-item__body { }
.abt-cred-item__text {
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.4;
}
.abt-cred-item__sub {
  font-size: 0.82rem; color: var(--text-mute); margin-top: 2px;
}

/* ── PHILOSOPHY ──────────────────────────────────────────────────────────── */
.abt-philosophy { padding: 88px 0; background: #fff; }
.abt-philosophy__inner { max-width: 820px; margin: 0 auto; }
.abt-philosophy__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.abt-philosophy__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--navy); margin-bottom: 36px;
}
.abt-philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55; color: var(--navy);
  font-style: italic; font-weight: 400;
  padding: 32px 40px;
  border-left: 4px solid var(--gold);
  background: var(--bg-light);
  border-radius: 0 12px 12px 0;
  margin: 0 0 36px;
}
.abt-philosophy__text {
  font-size: 0.97rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 16px;
}

/* ── ABOUT PAGES RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .abt-hero__inner,
  .abt-doc-hero__inner,
  .abt-doc-bio__inner,
  .abt-feature__inner,
  .abt-credentials__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abt-feature--alt .abt-feature__inner { direction: ltr; }
  .abt-values__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .abt-hero, .abt-doc-hero { padding: 100px 0 60px; }
  .abt-doc-bio__inner { gap: 40px; }
  .abt-philosophy__quote { padding: 24px 28px; }
}
@media (max-width: 600px) {
  .abt-values__grid { grid-template-columns: 1fr; }
  .abt-hero, .abt-doc-hero { padding: 80px 0 48px; }
  .abt-intro, .abt-values, .abt-feature, .abt-credentials, .abt-philosophy, .abt-doc-bio { padding: 56px 0; }
  .abt-hero__ctas { flex-direction: column; }
  .abt-hero__ctas .btn { width: 100%; justify-content: center; }
}


/* ============================================================================
   PATIENT CENTER PAGES (Before & After · Video Success Stories)
   ============================================================================ */

/* ── PATIENT CENTER HERO (reuses .abt-hero structure) ───────────────────── */
.pt-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2439 100%);
  padding: 120px 0 72px;
  position: relative; overflow: hidden; text-align: center;
}
.pt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184,146,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pt-hero__inner { position: relative; max-width: 680px; margin: 0 auto; }
.pt-hero__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.pt-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.18; color: #fff; margin-bottom: 18px;
}
.pt-hero__tagline {
  font-size: 1.05rem; line-height: 1.72;
  color: rgba(255,255,255,0.76); margin-bottom: 32px;
}
.pt-hero__ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── CASE FILTER TABS ────────────────────────────────────────────────────── */
.pt-filter {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  padding: 0;
  position: sticky; top: 0; z-index: 10;
}
.pt-filter__inner {
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 0 20px;
}
.pt-filter__inner::-webkit-scrollbar { display: none; }
.pt-filter__btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 500;
  color: var(--text-mute); white-space: nowrap;
  padding: 16px 18px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.pt-filter__btn:hover { color: var(--navy); }
.pt-filter__btn.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }

/* ── BEFORE & AFTER GRID ─────────────────────────────────────────────────── */
.pt-cases { padding: 72px 0 88px; background: var(--bg-light); }
.pt-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pt-case {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pt-case:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.pt-case__images {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 200px; position: relative;
}
.pt-case__half { position: relative; overflow: hidden; }
.pt-case__half img { width: 100%; height: 100%; object-fit: cover; }
.pt-case__label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.62);
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.pt-case__divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: #fff; transform: translateX(-50%);
  z-index: 2;
}
.pt-case__divider::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.pt-case__body { padding: 24px 24px 28px; }
.pt-case__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,146,46,0.1);
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 12px;
}
.pt-case__title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.pt-case__text {
  font-size: 0.9rem; line-height: 1.65; color: var(--text-mid);
}
.pt-case__quote {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 0.88rem; font-style: italic;
  line-height: 1.6; color: var(--text-mid);
}
.pt-case__quote-name {
  font-style: normal; font-weight: 600;
  color: var(--navy); margin-top: 6px; font-size: 0.82rem;
}

/* ── VIDEO GRID ──────────────────────────────────────────────────────────── */
.pt-videos { padding: 72px 0 88px; background: var(--bg-light); }
.pt-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pt-video {
  background: #fff;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pt-video:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.pt-video__thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.pt-video__overlay {
  position: absolute; inset: 0;
  background: rgba(27,46,61,0.48);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pt-video:hover .pt-video__overlay { background: rgba(27,46,61,0.35); }
.pt-video__play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.pt-video:hover .pt-video__play { transform: scale(1.1); }
.pt-video__play svg { margin-left: 4px; }
.pt-video__duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.65); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 2px 7px; border-radius: 4px;
}
.pt-video__body { padding: 22px 22px 26px; }
.pt-video__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(184,146,46,0.1);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.pt-video__title {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.pt-video__text {
  font-size: 0.88rem; line-height: 1.65; color: var(--text-mid);
}
.pt-video__patient {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-size: 0.82rem; color: var(--text-mute);
}
.pt-video__patient strong { color: var(--navy); }

/* ── TRUST STATS BAND ────────────────────────────────────────────────────── */
.pt-stats {
  background: var(--navy);
  padding: 56px 0;
}
.pt-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.pt-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.pt-stat__label {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── PATIENT CENTER RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .pt-cases__grid,
  .pt-videos__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pt-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pt-hero { padding: 100px 0 56px; }
}
@media (max-width: 600px) {
  .pt-cases__grid,
  .pt-videos__grid { grid-template-columns: 1fr; }
  .pt-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pt-hero { padding: 80px 0 48px; }
  .pt-hero__ctas { flex-direction: column; align-items: center; }
  .pt-hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── FORM FIELDS (contact.php) ───────────────────────────────────────────── */
.field-group { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field-input, .field-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px; color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: var(--text-mute); }
.field-input:focus,
.field-textarea:focus { border-color: var(--gold); background: #fff; }
.field-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.reason-btn {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid var(--hairline);
  background: #fff; color: var(--text-mid);
  transition: all .12s ease;
}
.reason-btn--active,
input[type=radio]:checked + .reason-btn {
  border-color: var(--navy);
  background: var(--navy); color: #fff;
}

.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  font-size: 12.5px; line-height: 1.6;
  color: var(--text-mid);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); cursor: pointer;
}
.consent-label a { color: var(--gold); }
.consent-label a:hover { text-decoration: underline; }

.legal-disclaimer {
  font-size: 11.5px; line-height: 1.6;
  color: var(--text-mute);
  text-align: center; margin: 0;
}
.legal-disclaimer a { color: var(--gold); }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-hero { padding: 64px 0 40px; background: var(--cream); border-bottom: 1px solid var(--hairline); }
.contact-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.contact-h1 { font-family: var(--font-display); font-size: clamp(2rem,3.6vw,3rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.5px; color: var(--navy); margin: 0 0 20px; }
.contact-main { padding: 40px 0 88px; background: var(--cream); }
.contact-main-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.contact-info-card {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 22px;
}
.contact-info-card__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(184,146,46,0.1); border: 1px solid rgba(184,146,46,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.contact-info-card__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px;
}
.contact-info-card__value {
  font-size: 14.5px; font-weight: 600; line-height: 1.45; color: var(--navy);
}
.contact-info-card__sub { font-size: 13px; line-height: 1.45; color: var(--text-mid); }
.contact-form-card {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(27,46,61,0.08);
  padding: 36px;
}

@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-hero-grid > div:last-child { display: none; }
  .contact-h1 { font-size: clamp(1.8rem,5vw,2.4rem) !important; }
  .contact-main-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}
@media (max-width: 600px) {
  .contact-hero { padding: 56px 0 32px; }
  .contact-main { padding: 28px 0 64px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}
