/* ═══════════════════════════════════════════════
   DR. MURALIDHAR MUDDUSETTY — SHARED STYLESHEET
   cioncancerdrmurali.com
   Version 2.0 — June 2025
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Colors */
  --ink:        #0D0D0D;
  --ink2:       #3A3A3A;
  --ink3:       #6B6B6B;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --light-grey: #F0EDE8;
  --border:     #E2DDD7;
  --steel:      #1C2B3A;
  --steel2:     #2E4057;
  --steel-soft: #EBF0F5;
  --gold:       #B8960C;
  --gold-soft:  #F7F2E2;
  --gold-border:rgba(184,150,12,0.3);
  --green:      #25D366;

  /* Typography */
  --serif: 'Cormorant', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  /* Layout */
  --max-w:    1100px;
  --text-w:   700px;
  --pad-x:    22px;
  --pad-x-lg: 48px;
  --hdr-h:    56px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hdr-h);
  background: rgba(13,13,13,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.hdr-name {
  font-family: var(--serif);
  font-size: 17px; font-weight: 400;
  color: #fff; white-space: nowrap;
  letter-spacing: 0.01em; line-height: 1.1;
}
.hdr-name small {
  font-family: var(--sans);
  font-size: 9px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.14em; text-transform: uppercase;
  display: block; margin-top: 1px;
}
.hdr-right { display: flex; align-items: center; gap: 14px; }
.hdr-call {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; display: none;
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; overflow: hidden;
}
.lang-opt {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  color: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.2s;
  border-radius: 20px;
}
.lang-opt.active { color: var(--ink); background: #fff; }
.hamburger {
  width: 32px; height: 32px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.65);
  display: block; transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── NAV DRAWER ── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed; top: var(--hdr-h); right: 0; bottom: 0;
  width: 75%; max-width: 300px;
  z-index: 999; background: #0D0D0D;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  padding: 28px var(--pad-x); overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.58); font-size: 13px;
  transition: color 0.2s;
}
.nav-drawer nav a:hover { color: #fff; }
.nav-icon { font-size: 14px; opacity: 0.6; }
.nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.nav-wa {
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 13px 16px; border-radius: 6px;
  text-align: center; display: block;
}
.nav-call {
  background: rgba(255,255,255,0.07); color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 13px 16px; border-radius: 6px;
  text-align: center; display: block;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── STICKY BAR (mobile only) ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 997;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sb-call {
  padding: 14px; text-align: center;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.sb-wa {
  padding: 14px; text-align: center;
  font-size: 12px; font-weight: 600;
  color: #fff; background: var(--green);
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}

/* ── LANGUAGE SWITCHING ── */
.te-content { display: block; }
.en-content { display: none; }
html[lang="en"] .te-content { display: none; }
html[lang="en"] .en-content { display: block; }
span.te-content { display: inline; }
span.en-content { display: none; }
html[lang="en"] span.te-content { display: none; }
html[lang="en"] span.en-content { display: inline; }

/* ── LAYOUT WRAPPER ── */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.text-inner {
  max-width: var(--text-w);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh; height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden; background: #080808;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 10%;
  opacity: 0.5;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.85) 28%,
    rgba(8,8,8,0.5)  52%,
    rgba(8,8,8,0.15) 72%,
    transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) 52px;
}
.hero-kicker {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.hero-kicker::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 60px);
  font-weight: 300; line-height: 1.04;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.52);
  line-height: 1.75; margin-bottom: 26px;
  max-width: 420px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  border-radius: 4px; padding: 13px 22px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; white-space: nowrap;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.65);
  border-radius: 4px; padding: 13px 22px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #0D0D0D;
  padding: calc(var(--hdr-h) + 36px) var(--pad-x) 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.page-hero .inner { max-width: var(--max-w); }
.breadcrumb {
  font-size: 10px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.3); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }
.page-kicker {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.page-kicker::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 50px);
  font-weight: 300; line-height: 1.06;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-h1 em { color: var(--gold); font-style: italic; }
.page-byline {
  font-size: 10px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px; margin-top: 4px;
}
.page-ctas { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--steel);
  padding: 22px var(--pad-x);
}
.trust-strip .inner {
  display: flex; flex-wrap: wrap;
  gap: 10px; align-items: stretch;
}
.trust-item {
  flex: 1; min-width: 120px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.trust-item .ti-label {
  font-size: 9px; color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
}
.trust-item .ti-value {
  font-size: 13px; color: #fff;
  font-weight: 400; line-height: 1.3;
}

/* ── JUMP NAV ── */
.jump-nav {
  display: flex; overflow-x: auto; scrollbar-width: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
  position: sticky; top: var(--hdr-h); z-index: 100;
}
.jump-nav::-webkit-scrollbar { display: none; }
.jump-link {
  flex-shrink: 0; font-size: 11px; font-weight: 500;
  color: var(--ink3); padding: 13px 15px;
  border-bottom: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.04em;
  transition: all 0.2s;
}
.jump-link:hover, .jump-link.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

/* ── SECTIONS ── */
/* Light sections (default) */
.section {
  padding: 44px var(--pad-x);
}
/* Dark section */
.section-dark {
  background: var(--steel);
  color: #fff;
  padding: 44px var(--pad-x);
}
/* Near black - for doctor voice / authority */
.section-black {
  background: #111820;
  color: #fff;
  padding: 44px var(--pad-x);
}
/* Off-white */
.section-warm {
  background: var(--off-white);
  padding: 44px var(--pad-x);
}
/* Very light grey */
.section-grey {
  background: var(--light-grey);
  padding: 44px var(--pad-x);
}
/* Steel soft - light blue grey */
.section-soft {
  background: var(--steel-soft);
  padding: 44px var(--pad-x);
}
/* White */
.section-white {
  background: var(--white);
  padding: 44px var(--pad-x);
}
.divider { height: 1px; background: var(--border); }
.divider-dark { height: 1px; background: rgba(255,255,255,0.07); }

/* ── SECTION EYEBROW / HEADING ── */
.sec-eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.sec-eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.4; }
.sec-eyebrow.dark-label { color: var(--steel2); }
.sec-eyebrow.dim { color: rgba(255,255,255,0.28); }

.sec-h {
  font-family: var(--serif);
  font-size: clamp(26px, 5.5vw, 38px);
  font-weight: 300; line-height: 1.12;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.sec-h em { color: var(--steel2); font-style: italic; }
.sec-h.white { color: #fff; }
.sec-h.white em { color: var(--gold); }

/* ── BODY TEXT ── */
.body-text { max-width: var(--text-w); }
.body-text p {
  font-size: 14px; color: var(--ink2);
  line-height: 1.88; margin-bottom: 18px;
}
.body-text p:last-child { margin-bottom: 0; }
.body-text.white p { color: rgba(255,255,255,0.72); }
.body-text p.te-content, .body-text p.en-content { display: block; }
html[lang="en"] .body-text p.te-content { display: none; }
html[lang="en"] .body-text p.en-content { display: block; }

/* ── DOCTOR VOICE ── */
.doc-voice { max-width: var(--text-w); margin-bottom: 24px; }
.doc-voice p {
  font-size: 15px; line-height: 1.92; margin-bottom: 20px;
  color: var(--ink);
}
.doc-voice p.white { color: rgba(255,255,255,0.78); }
.doc-voice p.te-content, .doc-voice p.en-content { display: block; }
html[lang="en"] .doc-voice p.te-content { display: none; }
html[lang="en"] .doc-voice p.en-content { display: block; }
.doc-voice p.white.te-content, .doc-voice p.white.en-content { display: block; }
html[lang="en"] .doc-voice p.white.te-content { display: none; }
html[lang="en"] .doc-voice p.white.en-content { display: block; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  background: var(--gold-soft);
  border-radius: 0 6px 6px 0;
  margin: 26px 0; max-width: var(--text-w);
}
.pull-quote.on-dark {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  font-style: italic; line-height: 1.5;
  color: var(--ink); margin-bottom: 10px;
}
.pull-quote.on-dark p { color: rgba(255,255,255,0.85); }
.pull-quote cite {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

/* ── SECOND OPINION BANNER ── */
.second-opinion-banner {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 8px; padding: 20px 18px;
  margin: 0 var(--pad-x) 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.sob-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.sob-text {
  font-size: 14px; color: var(--ink2); line-height: 1.7;
  max-width: var(--text-w);
}
.sob-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--steel); color: #fff;
  border-radius: 4px; padding: 11px 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; width: fit-content;
}

/* ── WHATSAPP REPORTS BLOCK ── */
.wa-block {
  background: var(--steel);
  border-radius: 8px; padding: 20px 18px;
  margin: 0 var(--pad-x) 8px;
}
.wa-block h4 {
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.wa-block p {
  font-size: 13px; color: rgba(255,255,255,0.58);
  line-height: 1.7; margin-bottom: 14px;
  max-width: var(--text-w);
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  border-radius: 4px; padding: 12px 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── STEP LIST ── */
.step-list { margin-top: 20px; }
.step-item {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.section-dark .step-item,
.section-black .step-item { border-bottom-color: rgba(255,255,255,0.07); }
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: rgba(184,150,12,0.22);
  line-height: 1; flex-shrink: 0; width: 40px;
}
.step-body h4 {
  font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px; line-height: 1.3;
}
.section-dark .step-body h4,
.section-black .step-body h4 { color: #fff; }
.step-body p {
  font-size: 13px; color: var(--ink2); line-height: 1.78;
}
.section-dark .step-body p,
.section-black .step-body p { color: rgba(255,255,255,0.58); }

/* ── COMPARE CARDS ── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 18px;
}
.compare-card {
  border-radius: 6px; padding: 18px 16px;
  border: 1px solid var(--border);
}
.compare-card.dark-card {
  background: var(--steel); border-color: var(--steel);
}
.compare-card.light-card { background: var(--white); }
.cc-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.dark-card .cc-label { color: var(--gold); }
.light-card .cc-label { color: var(--ink3); }
.cc-title {
  font-family: var(--serif);
  font-size: 19px; font-weight: 300;
  line-height: 1.2; margin-bottom: 10px;
}
.dark-card .cc-title { color: #fff; }
.light-card .cc-title { color: var(--ink); }
.cc-points { display: flex; flex-direction: column; gap: 6px; }
.cc-point {
  font-size: 12px; line-height: 1.6;
  padding-left: 14px; position: relative;
}
.cc-point::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
}
.dark-card .cc-point { color: rgba(255,255,255,0.62); }
.dark-card .cc-point::before { background: var(--gold); }
.light-card .cc-point { color: var(--ink2); }
.light-card .cc-point::before { background: var(--steel2); }

/* ── SPEC GRID (conditions/services) ── */
.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 18px;
}
.spec-card {
  background: var(--white); border-radius: 6px;
  padding: 18px 16px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.spec-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184,150,12,0.08);
}
.spec-card a { display: contents; }
.sc-icon { font-size: 22px; }
.sc-title {
  font-size: 13px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.sc-desc {
  font-size: 11px; color: var(--ink3); line-height: 1.65;
}

/* ── NOTICE BOX ── */
.notice-box {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 6px; padding: 16px 18px; margin: 18px 0;
}
.notice-box h4 {
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px;
}
.notice-box p { font-size: 13px; color: var(--ink2); line-height: 1.75; }
.notice-box.on-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,150,12,0.25);
}
.notice-box.on-dark h4 { color: var(--gold); }
.notice-box.on-dark p { color: rgba(255,255,255,0.55); }

/* ── MDT BOX ── */
.mdt-box {
  background: var(--white); border-radius: 8px;
  padding: 20px 18px; border: 1px solid var(--border);
  margin-top: 20px;
}
.mdt-box h4 {
  font-size: 11px; font-weight: 700;
  color: var(--steel2); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.mdt-items { display: flex; flex-direction: column; gap: 9px; }
.mdt-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink2);
}
.mdt-item::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ── ROBOTIC BOX ── */
.robotic-box {
  background: var(--steel); border-radius: 8px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 18px;
}
.rb-badge {
  display: inline-block; background: var(--gold);
  color: var(--ink); font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 12px;
}
.rb-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300; color: #fff;
  line-height: 1.2; margin-bottom: 10px;
}
.rb-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.rb-points { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.rb-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.rb-point::before {
  content: "\2713"; color: var(--gold);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── CONSULT LIST (when to seek opinion) ── */
.consult-list { margin-top: 18px; }
.consult-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.consult-item:last-child { border-bottom: none; }
.ci-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}
.ci-body h4 {
  font-size: 14px; font-weight: 500;
  color: #fff; margin-bottom: 4px; line-height: 1.35;
}
.ci-body p { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.65; }

/* ── LOCATION CARDS ── */
.loc-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.loc-card {
  background: var(--white); border-radius: 8px;
  padding: 20px 18px; border: 1px solid var(--border);
}
.loc-badge {
  display: inline-block; background: var(--steel);
  color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px; margin-bottom: 10px;
}
.loc-name {
  font-family: var(--serif);
  font-size: 19px; font-weight: 400;
  color: var(--ink); margin-bottom: 6px;
}
.loc-addr {
  font-size: 12px; color: var(--ink3);
  line-height: 1.75; margin-bottom: 14px;
}
.loc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--steel); color: #fff;
  border-radius: 4px; padding: 10px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}

/* ── FAQ ── */
.faq-list { margin-top: 18px; max-width: var(--text-w); }
details.faq { border-bottom: 1px solid var(--border); }
details.faq summary {
  padding: 17px 0; font-size: 14px; font-weight: 500;
  color: var(--ink); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px;
  line-height: 1.45; user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--gold); flex-shrink: 0; line-height: 1;
}
details.faq[open] summary::after { content: '\2212'; }
details.faq .faq-ans {
  font-size: 13px; color: var(--ink2);
  line-height: 1.88; padding: 2px 0 20px;
}
details.faq .faq-ans p { margin-bottom: 12px; }
details.faq .faq-ans p:last-child { margin-bottom: 0; }

/* ── CRED STRIP ── */
.cred-strip { background: var(--steel); padding: 22px var(--pad-x); }
.cred-strip-label {
  font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cred-items {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cred-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 12px 14px;
}
.ci-label {
  font-size: 9px; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 4px;
}
.ci-value { font-size: 12px; color: #fff; line-height: 1.4; }
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  margin-top: 16px;
}
.stat-item {
  padding: 18px 14px; text-align: center;
  background: var(--steel);
}
.stat-num {
  font-family: var(--serif);
  font-size: 30px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 5px;
}
.stat-label {
  font-size: 9px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.45;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: #0D0D0D; padding: 36px var(--pad-x);
  text-align: center;
}
.cta-strip h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 300; color: #fff;
  margin-bottom: 10px; line-height: 1.2;
}
.cta-strip p {
  font-size: 13px; color: rgba(255,255,255,0.42);
  line-height: 1.7; margin-bottom: 26px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex; flex-direction: column;
  gap: 10px; max-width: 320px; margin: 0 auto;
}
.cta-wa {
  background: var(--green); color: #fff;
  border-radius: 4px; padding: 14px 26px;
  font-size: 13px; font-weight: 700;
  text-align: center; display: block; letter-spacing: 0.03em;
}
.cta-call {
  background: rgba(255,255,255,0.07); color: #fff;
  border-radius: 4px; padding: 14px 26px;
  font-size: 13px; font-weight: 500;
  text-align: center; display: block;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── FOOTER ── */
footer {
  background: #060606; color: rgba(255,255,255,0.28);
  font-size: 11px; line-height: 1.85;
  padding: 38px var(--pad-x) 96px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 21px; font-weight: 300;
  color: rgba(255,255,255,0.68); margin-bottom: 8px;
}
.footer-links {
  display: flex; flex-wrap: wrap;
  gap: 6px 20px; margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-links a {
  font-size: 10px; color: rgba(255,255,255,0.28);
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-reg { font-size: 10px; color: rgba(255,255,255,0.14); margin-top: 10px; }

/* ── VIDEO CARD ── */
.video-card {
  background: #0D0D0D; border-radius: 8px;
  overflow: hidden; border: 1px solid rgba(255,255,255,0.07);
  margin-top: 18px;
}
.video-card iframe {
  width: 100%; aspect-ratio: 16/9; display: block; border: 0;
}
.video-info { padding: 14px 16px; }
.video-title {
  font-size: 13px; color: rgba(255,255,255,0.78);
  line-height: 1.45; margin-bottom: 8px;
}
.video-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gold);
  font-weight: 600; letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  :root {
    --pad-x: var(--pad-x-lg);
  }
  .sticky-bar { display: none; }
  .hdr-call { display: block; }

  .hero-content { padding-bottom: 64px; }
  .hero-content, .trust-strip .inner,
  .cred-strip .inner-cred { max-width: var(--max-w); margin: 0 auto; }

  .cred-items { grid-template-columns: repeat(4,1fr); }
  .trust-strip .inner { flex-wrap: nowrap; }

  .spec-grid { grid-template-columns: repeat(3,1fr); }
  .compare-grid { gap: 16px; }
  .loc-grid { flex-direction: row; }
  .loc-card { flex: 1; }

  .cta-btns { flex-direction: row; justify-content: center; max-width: none; }
  .second-opinion-banner { flex-direction: row; align-items: center; justify-content: space-between; margin: 0 var(--pad-x-lg) 8px; }
  .wa-block { margin: 0 var(--pad-x-lg) 8px; }

  .section, .section-dark, .section-black,
  .section-warm, .section-grey, .section-soft, .section-white {
    padding: 56px var(--pad-x);
  }
  .section > *, .section-dark > *, .section-black > *,
  .section-warm > *, .section-grey > *, .section-soft > *, .section-white > * {
    max-width: var(--max-w); margin-left: auto; margin-right: auto;
  }
  .faq-list { max-width: var(--text-w); margin-left: 0; }
}

@media (min-width: 1200px) {
  .hero-h1 { font-size: 64px; }
}
