/* ═══════════════════════════════════════════════
   DR. VAJJA SANDEEP KUMAR — SHARED STYLESHEET
   cioncancerdrsandeep.com
   Version 1.0 — June 2025
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Blue palette from photo */
  --blue:       #1A4F7A;
  --blue2:      #2E6DA4;
  --blue3:      #4A87BF;
  --blue-soft:  #EBF4FD;
  --blue-light: #F0F7FF;

  /* Neutrals */
  --ink:        #0D1117;
  --ink2:       #3D4A56;
  --ink3:       #6B7885;
  --white:      #FFFFFF;
  --off-white:  #F8FAFB;
  --light:      #EFF4F8;
  --border:     #D6E4EF;
  --border2:    #C2D8EC;

  /* Accents */
  --gold:       #B8960C;
  --gold-soft:  #F7F3E2;
  --green:      #25D366;
  --red-soft:   #FEF2F2;

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

  /* Layout */
  --max-w:    1100px;
  --text-w:   720px;
  --pad-x:    20px;
  --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; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hdr-h);
  background: rgba(26,79,122,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  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.5);
  letter-spacing: 0.14em; text-transform: uppercase;
  display: block; margin-top: 1px;
}
.hdr-right { display: flex; align-items: center; gap: 12px; }
.hdr-call {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em; display: none;
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  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.55);
  cursor: pointer; transition: all 0.2s;
  border-radius: 20px;
}
.lang-opt.active { color: var(--blue); 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.75);
  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.5);
  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: 78%; max-width: 310px;
  z-index: 999; background: var(--blue);
  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.1);
  color: rgba(255,255,255,0.72); font-size: 13px;
  transition: color 0.2s;
}
.nav-drawer nav a:hover { color: #fff; }
.nav-icon { font-size: 14px; opacity: 0.7; }
.nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.nav-wa {
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 13px 16px; border-radius: 6px;
  text-align: center; display: block;
}
.nav-call {
  background: rgba(255,255,255,0.12); 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.2);
}

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

/* ── LANGUAGE ── */
.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 ── */
.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: var(--blue);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.45;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26,79,122,0.98) 0%,
    rgba(26,79,122,0.88) 30%,
    rgba(26,79,122,0.55) 55%,
    rgba(26,79,122,0.2) 75%,
    transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) 52px;
}
.hero-kicker {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.hero-kicker::before { content: ""; width: 22px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300; line-height: 1.06;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-h1 em { color: #7EC8F0; font-style: italic; }
.hero-sub {
  font-size: 14px; color: rgba(255,255,255,0.62);
  line-height: 1.75; margin-bottom: 28px;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  border-radius: 6px; padding: 13px 22px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; white-space: nowrap;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  border-radius: 6px; padding: 13px 22px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  border-radius: 6px; padding: 13px 22px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.03em; white-space: nowrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blue);
  padding: calc(var(--hdr-h) + 36px) var(--pad-x) 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.breadcrumb {
  font-size: 10px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.38); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.4; }
.breadcrumb .current { color: rgba(255,255,255,0.8); }
.page-kicker {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.page-kicker::before { content: ""; width: 22px; height: 1px; background: rgba(255,255,255,0.35); }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 6.5vw, 46px);
  font-weight: 300; line-height: 1.08;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-h1 em { color: #7EC8F0; font-style: italic; }
.page-byline {
  font-size: 10px; color: rgba(255,255,255,0.32);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px; margin-top: 4px;
}
.page-ctas { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue2);
  padding: 20px var(--pad-x);
}
.trust-strip .inner {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch;
}
.trust-item {
  flex: 1; min-width: 120px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 11px 13px;
}
.trust-item .ti-label {
  font-size: 9px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 3px;
}
.trust-item .ti-value { font-size: 12px; color: #fff; line-height: 1.35; }

/* ── 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 14px;
  border-bottom: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.04em;
  transition: all 0.2s;
}
.jump-link:hover, .jump-link.active {
  color: var(--blue); border-bottom-color: var(--blue);
}

/* ── SECTIONS ── */
.section { padding: 44px var(--pad-x); background: var(--white); }
.section-blue { background: var(--blue); color: #fff; padding: 44px var(--pad-x); }
.section-blue2 { background: var(--blue2); color: #fff; padding: 44px var(--pad-x); }
.section-light { background: var(--off-white); padding: 44px var(--pad-x); }
.section-soft { background: var(--blue-light); padding: 44px var(--pad-x); }
.section-grey { background: var(--light); padding: 44px var(--pad-x); }
.section-white { background: var(--white); padding: 44px var(--pad-x); }
.divider { height: 1px; background: var(--border); }
.divider-blue { height: 1px; background: rgba(255,255,255,0.1); }

/* ── EYEBROW + HEADING ── */
.sec-eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue2);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.sec-eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.35; }
.sec-eyebrow.on-blue { color: rgba(255,255,255,0.45); }
.sec-eyebrow.gold { color: var(--gold); }

.sec-h {
  font-family: var(--serif);
  font-size: clamp(24px, 5.5vw, 36px);
  font-weight: 300; line-height: 1.14;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.sec-h em { color: var(--blue2); font-style: italic; }
.sec-h.white { color: #fff; }
.sec-h.white em { color: #7EC8F0; }

/* ── BODY TEXT ── */
.body-text { max-width: var(--text-w); }
.body-text p { font-size: 14px; color: var(--ink2); line-height: 1.9; 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; }

/* ── DOC 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.8); }
.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(--blue2);
  padding: 16px 20px;
  background: var(--blue-soft);
  border-radius: 0 8px 8px 0;
  margin: 24px 0; max-width: var(--text-w);
}
.pull-quote.on-blue {
  background: rgba(255,255,255,0.08);
  border-left-color: #7EC8F0;
}
.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-blue p { color: rgba(255,255,255,0.88); }
.pull-quote cite {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue2); font-style: normal;
}
.pull-quote.on-blue cite { color: rgba(255,255,255,0.5); }

/* ── PERSONA FUNNEL STRIP ── */
.persona-strip {
  display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0;
}
.persona-card {
  background: var(--white); border-radius: 8px;
  padding: 14px 16px; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.persona-card:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 12px rgba(26,79,122,0.08);
}
.persona-card a { display: contents; }
.persona-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.persona-body h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.persona-body p { font-size: 12px; color: var(--ink3); line-height: 1.55; }
.persona-arrow { color: var(--blue2); font-size: 16px; margin-left: auto; align-self: center; flex-shrink: 0; }

/* ── SECOND OPINION BANNER ── */
.sob {
  background: var(--blue-soft);
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 20px 18px;
  margin: 8px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.sob-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue2);
}
.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(--blue); color: #fff;
  border-radius: 6px; padding: 11px 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; width: fit-content;
}

/* ── WHATSAPP BLOCK ── */
.wa-block {
  background: var(--blue); border-radius: 8px;
  padding: 20px 18px; margin: 8px 0;
}
.wa-block h4 {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 8px;
}
.wa-block p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.72; 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: 6px; padding: 12px 22px;
  font-size: 13px; 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-blue .step-item, .section-blue2 .step-item { border-bottom-color: rgba(255,255,255,0.1); }
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 30px; font-weight: 300;
  color: rgba(26,79,122,0.2); line-height: 1; flex-shrink: 0; width: 38px;
}
.step-body h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.section-blue .step-body h4, .section-blue2 .step-body h4 { color: #fff; }
.step-body p { font-size: 13px; color: var(--ink2); line-height: 1.78; }
.section-blue .step-body p, .section-blue2 .step-body p { color: rgba(255,255,255,0.6); }

/* ── COST TABLE ── */
.cost-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 13px; }
.cost-table th {
  background: var(--blue); color: #fff;
  padding: 10px 12px; text-align: left;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.cost-table td {
  padding: 11px 12px; border-bottom: 1px solid var(--border);
  color: var(--ink2); vertical-align: top;
}
.cost-table tr:hover td { background: var(--blue-light); }
.cost-table .cancer-name { font-weight: 600; color: var(--ink); }
.cost-table .cost-range { font-weight: 500; color: var(--blue2); }
.cost-table .ai-note { font-size: 11px; color: var(--ink3); }

/* ── CONDITION GRID ── */
.condition-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 18px;
}
.condition-card {
  background: var(--white); border-radius: 8px;
  padding: 16px 14px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: all 0.2s;
}
.condition-card:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 14px rgba(26,79,122,0.1);
  transform: translateY(-1px);
}
.cc-icon { font-size: 22px; }
.cc-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.cc-desc { font-size: 11px; color: var(--ink3); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { margin-top: 18px; max-width: var(--text-w); }
.faq-category { margin-bottom: 32px; }
.faq-category-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue2);
  padding: 10px 0; border-bottom: 2px solid var(--blue2);
  margin-bottom: 4px;
}
details.faq { border-bottom: 1px solid var(--border); }
details.faq summary {
  padding: 16px 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(--blue2); 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.9; padding: 2px 0 20px;
}
details.faq .faq-ans p { margin-bottom: 12px; }
details.faq .faq-ans p:last-child { margin-bottom: 0; }

/* ── CREDENTIAL BADGE ── */
.cred-badge {
  display: inline-block; background: var(--gold-soft);
  color: var(--gold); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  border: 1px solid rgba(184,150,12,0.25);
  margin-bottom: 10px;
}

/* ── NOTICE BOX ── */
.notice-box {
  background: var(--blue-soft); border: 1px solid var(--border2);
  border-radius: 8px; padding: 16px 18px; margin: 18px 0;
}
.notice-box h4 {
  font-size: 11px; font-weight: 700; color: var(--blue2);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px;
}
.notice-box p { font-size: 13px; color: var(--ink2); line-height: 1.75; }

/* ── LOCATIONS GRID ── */
.loc-grid {
  display: flex; flex-direction: column; gap: 12px; margin-top: 18px;
}
.loc-card {
  background: var(--white); border-radius: 8px;
  padding: 16px 16px; border: 1px solid var(--border);
}
.loc-badge {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 9px;
  border-radius: 3px; margin-bottom: 8px;
}
.loc-name { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.loc-addr { font-size: 11px; color: var(--ink3); line-height: 1.7; margin-bottom: 10px; }
.loc-map { width: 100%; height: 160px; border-radius: 6px; border: none; display: block; margin-bottom: 10px; }
.loc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff; border-radius: 5px;
  padding: 9px 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue); 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.5);
  line-height: 1.7; margin-bottom: 26px;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; flex-direction: column; gap: 10px; max-width: 340px; margin: 0 auto; }
.cta-wa { background: var(--green); color: #fff; border-radius: 6px; padding: 14px 26px; font-size: 13px; font-weight: 700; text-align: center; display: block; }
.cta-call { background: rgba(255,255,255,0.1); color: #fff; border-radius: 6px; padding: 14px 26px; font-size: 13px; font-weight: 500; text-align: center; display: block; border: 1px solid rgba(255,255,255,0.18); }

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

/* ── 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; }
  .condition-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .persona-strip { flex-direction: row; flex-wrap: wrap; }
  .persona-card { flex: 1; min-width: 200px; }
  .sob { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-btns { flex-direction: row; justify-content: center; max-width: none; }
  .section, .section-blue, .section-blue2, .section-light, .section-soft, .section-grey, .section-white {
    padding: 56px var(--pad-x);
  }
  .section > *, .section-blue > *, .section-blue2 > *,
  .section-light > *, .section-soft > *, .section-grey > *, .section-white > * {
    max-width: var(--max-w); margin-left: auto; margin-right: auto;
  }
  .faq-list { max-width: var(--text-w); margin-left: 0; }
  .cost-table-wrap { overflow-x: auto; }
}
