/* ===========================================================
   CION CANCER CLINICS – Dr. Imaduddin
   Theme: White + Light Grey base, Purple accent
   ========================================================== */

:root {
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f5f5f7;
  --grey-200: #e8e8ec;
  --grey-300: #d1d1d6;
  --ink: #1a1a1a;
  --ink2: #4a4a4f;
  --ink3: #6e6e73;
  --charcoal: #4a4a4f;
  --purple: #5b2c8e;
  --purple-dark: #432068;
  --purple-soft: #f4eef9;
  --gold: #c8c8c8;
  --gold-soft: #f5f5f7;
  --green-wa: #25d366;
  --green-wa-dark: #1ebe5d;
  --border: #e8e8ec;
  --border-strong: #d1d1d6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.06);
  --pad-x: 20px;
  --max-w: 1180px;
  --sec-pad-y: 24px;
  --card-pad: 16px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-te: "Noto Serif Telugu", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Telugu */
.te-content, .te-block { font-family: var(--font-te); }
html[lang="en"] .te-content, html[lang="en"] .te-block { display: none; }
html[lang="en"] .en-content { display: inline; }
html[lang="en"] .en-block { display: block; }
html[lang="te"] .en-content, html[lang="te"] .en-block { display: none; }
html[lang="te"] .te-content { display: inline; }
html[lang="te"] .te-block { display: block; }

/* Copy protect */
body { user-select: none; -webkit-user-select: none; }
.phone-number, .phone-number *, address, .addr { user-select: text; -webkit-user-select: text; }

/* ============ HEADER ============ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600; color: var(--ink);
}
.brand-sub {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink3); margin-top: 2px;
}
.header-right { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: none; align-items: center; gap: 6px;
  font-weight: 600; color: var(--purple); font-size: 14px;
}
.header-phone:hover { text-decoration: none; color: var(--purple-dark); }
.lang-toggle {
  display: inline-flex; background: var(--grey-100);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 2px; font-size: 12px; font-weight: 600;
}
.lang-toggle button {
  border: none; background: transparent; padding: 4px 10px;
  border-radius: 999px; cursor: pointer; color: var(--ink2);
  font-family: inherit;
}
.lang-toggle button.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }

.main-nav { display: none; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 8px 12px;
  color: var(--ink2); font-size: 14px; font-weight: 500;
  border-radius: 6px;
}
.main-nav a:hover { background: var(--grey-100); color: var(--ink); text-decoration: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; padding: 0; align-items: center;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
}

.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px;
  height: 100vh; background: var(--white);
  box-shadow: var(--shadow-lg); padding: 60px 24px 24px;
  transition: right 0.3s ease; z-index: 200; overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--grey-100); border: none; border-radius: 6px;
  width: 36px; height: 36px; cursor: pointer; font-size: 18px;
}
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li { border-bottom: 1px solid var(--border); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  color: var(--ink); font-weight: 500; font-size: 15px;
}
.mobile-drawer a:hover { color: var(--purple); text-decoration: none; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  z-index: 150;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 20px; font-size: 15px; font-weight: 600;
  border-radius: 8px; cursor: pointer; border: 1px solid transparent;
  text-decoration: none; transition: all 0.15s ease;
  line-height: 1; white-space: nowrap; font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-light {
  background: var(--white); color: var(--ink); border-color: var(--ink);
}
.btn-light:hover { background: var(--ink); color: var(--white); }

.btn-dark {
  background: var(--purple); color: var(--white); border-color: var(--purple);
}
.btn-dark:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: var(--white); }

.btn-wa {
  background: var(--green-wa); color: var(--white); border-color: var(--green-wa);
}
.btn-wa:hover { background: var(--green-wa-dark); border-color: var(--green-wa-dark); color: var(--white); }

.btn-call {
  background: var(--white); color: var(--ink); border-color: var(--ink);
}
.btn-call:hover { background: var(--ink); color: var(--white); }

.on-dark .btn-light, .hero-home .btn-light, .hero-inner-page .btn-light, .cta-strip .btn-light {
  background: var(--white); color: var(--ink); border-color: var(--white);
}
.on-dark .btn-light:hover, .hero-home .btn-light:hover, .hero-inner-page .btn-light:hover, .cta-strip .btn-light:hover {
  background: transparent; color: var(--white); border-color: var(--white);
}
.on-dark .btn-call, .hero-home .btn-call, .hero-inner-page .btn-call, .cta-strip .btn-call {
  background: transparent; color: var(--white); border-color: var(--white);
}
.on-dark .btn-call:hover, .hero-home .btn-call:hover, .hero-inner-page .btn-call:hover, .cta-strip .btn-call:hover {
  background: var(--white); color: var(--ink);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

/* ============ HERO HOME ============ */
.hero-home {
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

/* Photo panel — photo + name/creds overlay at bottom */
.hero-photo-panel {
  position: relative;
  width: 100%;
  height: 65vw;
  min-height: 260px;
  max-height: 420px;
  overflow: hidden;
}
.hero-photo-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
/* Dark gradient at bottom of photo for text legibility */
.hero-photo-panel::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, rgba(28,28,30,0.75) 60%, rgba(28,28,30,0.97) 100%);
  z-index: 1;
}
/* Name + credentials overlay — sits at bottom of photo over the gradient */
.hero-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px var(--pad-x) 16px;
  z-index: 2;
}
.hero-photo-overlay .hero-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; color: var(--white);
  line-height: 1.1; margin: 0 0 4px;
}
.hero-photo-overlay .hero-desig {
  font-size: 12px; color: var(--gold);
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 4px;
}
.hero-photo-overlay .hero-creds-mobile {
  font-size: 12px; color: rgba(255,255,255,0.75);
  font-weight: 500; line-height: 1.5;
}

/* Text panel below photo — tagline + lede + CTAs */
.hero-text-panel {
  background: var(--charcoal);
  padding: 18px var(--pad-x) 28px;
}
.hero-home .hero-h1 {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.15; font-weight: 500;
  margin: 0 0 10px; color: var(--white);
}
.hero-home .hero-h1 em { color: var(--white); font-style: italic; }
.hero-home .hero-lede {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
}
.hero-home .hero-ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* Desktop: side-by-side split — left text, right photo */
@media (min-width: 900px) {
  .hero-home { display: flex; min-height: 480px; }

  .hero-photo-panel {
    order: 2;
    width: 42%; height: auto;
    max-height: none; flex-shrink: 0;
  }
  .hero-photo-panel img { object-position: center 15%; }
  .hero-photo-panel::after { display: none; }

  /* On desktop the overlay is hidden — info lives in text panel */
  .hero-photo-overlay { display: none; }

  .hero-text-panel {
    order: 1; flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding: 48px var(--pad-x) 48px 48px;
  }
  /* Eyebrow shown only on desktop (name is in overlay on mobile) */
  .hero-desktop-eyebrow {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 10px;
  }
  .hero-home .hero-h1 { font-size: 42px; }
  .hero-home .hero-lede { font-size: 15px; max-width: 500px; }
}

@media (min-width: 1200px) {
  .hero-photo-panel { width: 44%; }
  .hero-home .hero-h1 { font-size: 50px; }
}

/* Desktop eyebrow (name/designation) — hidden on mobile since overlay handles it */
.hero-desktop-eyebrow {
  display: none;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
@media (min-width: 900px) {
  .hero-desktop-eyebrow { display: block; }
}
.hero-inner-page {
  background: var(--charcoal);
  color: var(--white);
}
.hero-inner-page-content {
  max-width: var(--max-w); margin: 0 auto;
  padding: 44px var(--pad-x);
}
.hero-inner-page .hero-eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.hero-inner-page .hero-h1 {
  font-family: var(--font-display);
  font-size: 30px; line-height: 1.15; font-weight: 500;
  margin: 0 0 12px; color: var(--white); max-width: 820px;
}
.hero-inner-page .hero-h1 em { color: var(--white); font-style: italic; }
.hero-inner-page .hero-lede {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 720px; margin: 0 0 20px;
}
.hero-inner-page .hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--grey-50);
  border-bottom: 1px solid var(--border);
  padding: 10px var(--pad-x);
}
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto;
  font-size: 13px; color: var(--ink3);
}
.breadcrumb a { color: var(--ink3); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .sep { margin: 0 6px; color: var(--grey-300); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ============ SECTIONS ============ */
.section { padding: var(--sec-pad-y) var(--pad-x); background: var(--white); }
.section-grey { background: var(--grey-100); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark .sec-h, .section-dark .prose { color: var(--white); }
.section-dark .sec-eyebrow { color: rgba(255,255,255,0.6); }
.section-dark .sec-h em { color: var(--white); }
.section-dark .prose { color: rgba(255,255,255,0.85); }
.section-dark .prose strong { color: var(--white); }

.section-inner { max-width: var(--max-w); margin: 0 auto; }
.sec-eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); font-weight: 600; margin-bottom: 10px;
}
.sec-h {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.2; font-weight: 500;
  margin: 0 0 24px; color: var(--ink); max-width: 820px;
}
.sec-h em { color: var(--purple); font-style: italic; }
.sec-lede { font-size: 15px; color: var(--ink2); max-width: 720px; margin: 0 0 20px; }

/* Stat grid */
.stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 18px 14px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09), 0 1px 2px rgba(0,0,0,0.06);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; color: var(--purple);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink3); font-weight: 600; line-height: 1.3;
}

/* Service / reason cards */
.service-grid, .reason-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.service-card, .reason-card {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: var(--card-pad);
  box-shadow: 0 2px 8px rgba(0,0,0,0.09), 0 1px 2px rgba(0,0,0,0.06);
  transition: all 0.15s ease;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
  border-color: var(--purple);
  transform: translateY(-2px); text-decoration: none;
}
.service-card.featured { border: 2px solid var(--purple); }

/* Inline icon + title on same row */
.service-card-header, .reason-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.service-icon, .reason-icon {
  font-size: 16px;
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-soft); border-radius: 7px;
}
.service-card h4, .reason-card h4 {
  font-size: 15px; font-weight: 600; margin: 0; color: var(--ink);
  line-height: 1.2;
}
.service-card p, .reason-card p {
  font-size: 14px; line-height: 1.55; color: var(--ink2); margin: 0;
}
/* Inline arrow at end of last line */
.service-arrow {
  display: inline; color: var(--purple); font-weight: 700;
  font-size: 13px; margin-left: 4px;
}

/* Procedure list */
.proc-list { display: flex; flex-direction: column; gap: 12px; }
.proc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 14px;
}
.proc-tier {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-soft); color: var(--purple);
  border-radius: 8px; font-weight: 700; font-size: 13px;
}
.proc-tier.t2 { color: var(--ink3); background: var(--grey-100); }
.proc-body { flex: 1; min-width: 0; }
.proc-body h4 {
  margin: 0 0 6px; font-size: 16px; font-weight: 600; color: var(--ink);
}
.proc-body p {
  font-size: 14px; line-height: 1.55; color: var(--ink2); margin: 0 0 8px;
}
.proc-meta {
  font-size: 12px; color: var(--ink3); padding-top: 8px;
  border-top: 1px dashed var(--border);
}

/* Pricing */
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px 16px; box-shadow: var(--shadow-sm);
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.pricing-row:last-of-type { border-bottom: none; }
.tier-name { flex: 1; font-weight: 600; color: var(--ink); font-size: 15px; }
.tier-name small {
  display: block; font-weight: 400; font-size: 12px;
  color: var(--ink3); margin-top: 2px;
}
.tier-price { font-weight: 700; color: var(--purple); font-size: 16px; white-space: nowrap; }
.pricing-disclaimer { font-size: 12px; color: var(--ink3); padding: 12px 0 4px; margin: 0; }

/* Prose */
.prose { max-width: 760px; font-size: 15px; line-height: 1.7; color: var(--ink2); }
.prose p { margin: 0 0 14px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; margin: 12px 0; }
.prose li { margin-bottom: 6px; }

/* Quote/cite block */
.quote-block {
  background: var(--grey-100);
  border-left: 3px solid var(--purple);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 15px; color: var(--ink2); line-height: 1.6;
}
.quote-block cite {
  display: block; margin-top: 8px;
  font-size: 13px; color: var(--ink3); font-style: normal;
}

/* CTA strip */
.cta-strip {
  background: var(--charcoal); color: var(--white);
  padding: 40px var(--pad-x);
}
.cta-strip-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500; color: var(--white);
  margin: 0 0 16px; line-height: 1.25;
}
.cta-strip-ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Form */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; box-shadow: var(--shadow-md);
  max-width: 560px; margin: 0 auto;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; color: var(--ink);
  margin: 0 0 18px; line-height: 1.25;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 5px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border-strong); border-radius: 8px;
  font-size: 15px; font-family: inherit;
  background: var(--white); color: var(--ink);
  transition: border 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--ink3); line-height: 1.5; margin-bottom: 16px;
}
.form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-submit {
  width: 100%; padding: 14px; font-size: 16px; font-weight: 700;
  background: var(--purple); color: var(--white); border: none;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit;
}
.form-submit:hover { background: var(--purple-dark); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.honeypot { position: absolute; left: -9999px; }

/* Footer */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 36px var(--pad-x) 20px; font-size: 13px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; margin-bottom: 24px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); font-weight: 600; margin: 0 0 10px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* Sticky mobile bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  display: flex; z-index: 90;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
.sticky-bar a {
  flex: 1; padding: 14px; text-align: center;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sticky-bar .sticky-call {
  color: var(--ink); border-right: 1px solid var(--border); background: var(--white);
}
.sticky-bar .sticky-call:hover { text-decoration: none; background: var(--grey-100); }
.sticky-bar .sticky-wa { color: var(--white); background: var(--green-wa); }
.sticky-bar .sticky-wa:hover { text-decoration: none; background: var(--green-wa-dark); color: var(--white); }
body { padding-bottom: 64px; }

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .hero-home .hero-h1 { font-size: 44px; }
  .hero-inner-page .hero-h1 { font-size: 34px; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  :root { --pad-x: 32px; --sec-pad-y: 32px; --card-pad: 20px; }
  .hero-home .hero-h1 { font-size: 52px; }
  .hero-inner-page .hero-h1 { font-size: 40px; }
  .hero-inner-page-content { padding: 36px var(--pad-x); }
  .sec-h { font-size: 34px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .header-phone { display: inline-flex; }
  .main-nav { display: block; }
  .hamburger { display: none; }
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
  .cta-strip h2 { font-size: 30px; }
  .form-card { padding: 28px; }
}

/* ============ ACCESSIBILITY ============ */
/* Focus visible — keyboard navigation */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ FAQ ACCORDION ============ */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.faq-item {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.faq-q {
  width: 100%; padding: 14px 18px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--ink);
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; line-height: 1.4;
}
.faq-q::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--purple); flex-shrink: 0; margin-left: 12px;
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
  padding: 0 18px 14px;
  font-size: 14px; line-height: 1.7; color: var(--ink2);
}

/* ── Form: file upload ── */
.form-row input[type="file"] {
  width: 100%; padding: 10px 12px;
  border: 1.5px dashed var(--border-strong);
  border-radius: 8px; background: var(--grey-100);
  font-size: 14px; color: var(--ink2); cursor: pointer;
}
.form-row input[type="file"]:hover { border-color: var(--purple); }
.form-field-hint { font-size: 12px; color: var(--ink3); margin-top: 4px; }
.form-optional { font-size: 11px; color: var(--ink3); font-weight: 400; }

/* ── Form: disclaimer ── */
.form-disclaimer {
  font-size: 12px; color: var(--ink3); line-height: 1.5;
  margin: 0 0 12px;
}
.form-disclaimer a { color: var(--purple); }

/* ── Form: inline success message ── */
.form-success {
  display: flex; align-items: flex-start; gap: 12px;
  background: #EAF3DE; border: 1px solid #C0DD97;
  border-radius: 10px; padding: 16px 18px; margin-bottom: 12px;
}
.form-success[hidden] { display: none !important; }
.form-success svg {
  width: 24px; height: 24px; flex-shrink: 0;
  stroke: #3B6D11; margin-top: 2px;
}
.form-success strong { display: block; color: #3B6D11; font-size: 15px; margin-bottom: 4px; }
.form-success p { color: #3B6D11; font-size: 13px; margin: 0; }

/* ── Form: error message ── */
.form-error-msg {
  font-size: 13px; color: #A32D2D;
  background: #FCEBEB; border: 1px solid #F09595;
  border-radius: 8px; padding: 10px 14px; margin-bottom: 10px;
}
.field-error { border-color: #E24B4A !important; }
.field-error-msg { font-size: 12px; color: #A32D2D; display: block; margin-top: 4px; }
