/* ─────────────────────────────────────────────────────────────
   Cannactive Landing Page — design tokens & component styles
   Medical-administrative aesthetic: cream + navy + amber CTA
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --bg: #F7F4ED;           /* warm cream page background */
  --surface: #FFFFFF;
  --surface-alt: #FBF8F1;  /* slightly warmer card surface */
  --tint: #ECE9DF;         /* soft section divider */
  --navy: #0E2A47;         /* primary deep blue, trustworthy */
  --navy-2: #1F3F66;
  --blue: #2C5A8C;
  --blue-soft: #E4ECF4;
  --amber: #C77A2E;        /* CTA accent color (warm) */
  --amber-deep: #A35F1E;
  --ink: #15233A;
  --ink-2: #2D3A52;
  --muted: #6A7488;
  --muted-2: #8A93A4;
  --line: #E2DCCE;
  --line-soft: #EDE7DA;
  --ok: #2F7D5F;           /* success teal */

  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;

  --shadow-1: 0 1px 2px rgba(14, 42, 71, .04), 0 1px 1px rgba(14, 42, 71, .03);
  --shadow-2: 0 8px 24px -8px rgba(14, 42, 71, .08), 0 2px 6px rgba(14, 42, 71, .04);
  --shadow-3: 0 28px 60px -24px rgba(14, 42, 71, .18), 0 8px 20px -10px rgba(14, 42, 71, .08);

  --max: 1180px;
  --max-narrow: 880px;

  --font-serif: "Frank Ruhl Libre", "David Libre", Georgia, serif;
  --font-sans: "Assistant", "Heebo", system-ui, -apple-system, sans-serif;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "ss01";
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }

/* Headings — serif gives editorial gravitas */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(34px, 4.6vw, 58px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; }
p  { margin: 0; text-wrap: pretty; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: var(--max-narrow); }

section {
  padding: clamp(56px, 9vw, 110px) 0;
}
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.section-head { margin-bottom: 48px; }
.section-head p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 18px;
  max-width: 640px;
}

/* ── Top bar (no nav links — just wordmark + phone) ───────────── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(247, 244, 237, 0.88);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark .mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
}
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-wa {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .15s, box-shadow .2s;
}
.topbar-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: #fff;
}
.topbar-phone {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  white-space: nowrap;
}
.topbar-phone span { font-family: var(--font-sans); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(199, 122, 46, 0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(199, 122, 46, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.btn-ghost {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-1);
}
.btn-ghost:hover { border-color: var(--navy); text-decoration: none; color: var(--navy); }

.btn-lg { padding: 18px 34px; font-size: 18px; }

/* WhatsApp button — bright, recognizable */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  background: #25D366;
  color: #fff;
  border: 1px solid #1FB957;
  transition: transform .12s, box-shadow .2s, background .2s;
}
.btn-whatsapp:hover {
  background: #1FB957;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.45);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle radial wash on the right (RTL: visual top-right) */
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(44, 90, 140, 0.06), transparent 60%);
  pointer-events: none;
}

/* Variant 1: Editorial split (default) */
.hero-v1 .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-v1 .hero-copy { padding-block: 24px; }
.hero-v1 h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-v1 h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.hero-v1 .hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-v1 .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-v1 .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-chip svg { color: var(--ok); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #E8EEF4 0%, #D8E3EE 100%);
  box-shadow: var(--shadow-3);
}
.hero-visual .placeholder-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(14, 42, 71, 0.72) 100%),
    linear-gradient(135deg, #E8EEF4 0%, #C8D6E5 100%);
}
.hero-visual .ph-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-visual .ph-caption {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.3;
  max-width: 80%;
}
.hero-visual .ph-attr {
  margin-top: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.hero-visual .floating-card {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.hero-visual .fc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(47, 125, 95, 0.18);
}
.hero-visual .fc-text { font-size: 13px; color: var(--ink-2); line-height: 1.3; }
.hero-visual .fc-text b { color: var(--navy); display: block; font-size: 14px; }

/* Variant 2: Centered minimal — refined */
.hero-v2 {
  text-align: center;
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(56px, 8vw, 110px);
  position: relative;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-v2-ornament {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-v2-ornament-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(44, 90, 140, 0.18), transparent 65%);
}
.hero-v2-ornament-2 {
  width: 440px;
  height: 440px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(199, 122, 46, 0.14), transparent 65%);
}
.hero-v2 .container { position: relative; z-index: 1; }
.hero-v2 .hero-copy { max-width: 860px; margin: 0 auto; }

.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: 0 1px 0 rgba(14, 42, 71, 0.04);
}
.hero-v2-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(47, 125, 95, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47, 125, 95, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(47, 125, 95, 0.08); }
}

.hero-v2 h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-v2 .hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  margin: 0 auto 36px;
  max-width: 680px;
  line-height: 1.5;
}
.hero-v2 .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-v2 .hero-chips {
  display: flex;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
}
.hero-micro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: -12px auto 24px;
  justify-content: center;
}
.hero-micro svg { color: var(--ok); flex-shrink: 0; }

/* Hero V2 stats strip */
.hero-v2-strip {
  margin: clamp(48px, 7vw, 72px) auto 0;
  max-width: 920px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-2);
}
.hv2-stat { text-align: center; }
.hv2-num {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hv2-num small { font-size: 0.55em; font-weight: 500; color: var(--blue); }
.hv2-lbl { font-size: 12.5px; color: var(--muted); margin-top: 8px; letter-spacing: 0.02em; }
.hv2-sep {
  width: 1px;
  height: 36px;
  background: var(--line-soft);
}

/* Variant 3: Card-based */
.hero-v3 .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.hero-v3 .hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-v3 h1 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.hero-v3 .hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-v3 .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-v3 .hero-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.hero-v3 .hero-side {
  background: linear-gradient(180deg, var(--blue-soft), #FFFFFF);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-v3 .side-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-v3 .side-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-v3 .side-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  min-width: 56px;
}
.hero-v3 .side-text { font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.hero-v3 .side-text b { display: block; color: var(--navy); font-size: 15px; margin-bottom: 2px; }

/* ── Trust strip ─────────────────────────────────────────────── */
.trust {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
  padding: 32px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  text-align: center;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: var(--line-soft);
}
.trust-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-num small { font-size: 0.55em; color: var(--blue); font-weight: 500; }
.trust-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── Pain points / Audience ──────────────────────────────────── */
.audience { background: var(--bg); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--line);
}
.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.audience-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.audience-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Service explained ───────────────────────────────────────── */
.service {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-copy h2 { margin-bottom: 24px; }
.service-copy p { margin-bottom: 18px; font-size: 17.5px; color: var(--ink-2); line-height: 1.7; }
.service-copy p:last-child { margin-bottom: 0; }
.service-copy .lead {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.45;
  font-weight: 500;
  border-right: 3px solid var(--amber);
  padding-right: 18px;
  margin-bottom: 28px;
}
.service-visual {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line-soft);
}
.service-bullet {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.service-bullet:last-child { border-bottom: none; }
.service-bullet .num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 28px;
}
.service-bullet b { color: var(--navy); display: block; margin-bottom: 2px; font-weight: 600; }
.service-bullet span { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ── Process timeline ────────────────────────────────────────── */
.process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(to left, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-meta {
  font-size: 13px;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Why us — benefits grid ──────────────────────────────────── */
.why { background: var(--surface); border-block: 1px solid var(--line-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-item {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .15s;
}
.why-item:hover { background: var(--bg); }
.why-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  opacity: 0.55;
}
.why-item h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.why-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Team ────────────────────────────────────────────────────── */
/* (team section removed in design — styles kept for reference but unused) */

/* ── Doctors band (replaces team) ────────────────────────────── */
.doctors {
  background: var(--bg);
  position: relative;
}
.doctors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(44, 90, 140, 0.06), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(199, 122, 46, 0.05), transparent 60%);
  pointer-events: none;
}
.doctors .container { position: relative; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.doctors-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.doctors-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 26px;
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 3px 3px;
}
.doctors-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--line);
}
.doctors-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), #F1F6FB);
  color: var(--navy);
  display: grid;
  place-items: center;
  border: 1px solid rgba(44, 90, 140, 0.1);
}
.doctors-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.doctors-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.doctors-disclaimer {
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.doctors-disclaimer svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }

/* ── Team (legacy — removed) ─────────────────────────────────── */
.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line-soft);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.team-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #D5DFEA 0%, #B7C7D8 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.team-photo .initials {
  font-family: var(--font-serif);
  font-size: 64px;
  color: rgba(14, 42, 71, 0.3);
  font-weight: 600;
}
.team-photo .ph-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-body { padding: 22px 22px 24px; }
.team-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Testimonials (Google reviews style) ─────────────────────── */
.testimonials { background: var(--surface); border-block: 1px solid var(--line-soft); }

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.reviews-head > div:first-child { flex: 1; min-width: 280px; }

.g-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.g-badge svg { flex-shrink: 0; }
.g-score {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px 22px;
}
.g-score-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.g-score-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.g-score > .g-stars { display: block; }
.g-score > .g-stars + .g-score-meta { margin-top: 4px; }

.g-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.g-stars span { display: inline-flex; }

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

.t-card-google {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  position: static;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.t-card-google:hover { box-shadow: var(--shadow-1); border-color: var(--line); }
.t-card-google::before { display: none; }

.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.t-author-info { flex: 1; min-width: 0; }
.t-author-info .t-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.t-author-info .t-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.t-google-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  opacity: 0.85;
}

.t-card-google .t-quote {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.t-card-google .t-quote::before { display: none; }

.reviews-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { box-shadow: var(--shadow-2); border-color: var(--line); }
.faq-q {
  width: 100%;
  text-align: right;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-q:hover { background: var(--surface-alt); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── Final CTA + Form ────────────────────────────────────────── */
.final {
  background: linear-gradient(180deg, var(--navy) 0%, #07182A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(199, 122, 46, 0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(44, 90, 140, 0.32), transparent 50%);
  pointer-events: none;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
}
.final h2 { color: #fff; }
.final-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin-top: 18px;
  line-height: 1.6;
}
.final-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.final-meta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.final-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: var(--amber);
  flex-shrink: 0;
}
.final-meta-item b { color: #fff; display: block; font-size: 15px; font-weight: 600; }
.final-meta-item span { color: rgba(255,255,255,0.65); font-size: 14px; }

.form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-3);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.field label .req { color: var(--amber-deep); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
  direction: rtl;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--navy);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.08);
}
.field textarea { resize: vertical; min-height: 80px; }
.field.error input, .field.error select, .field.error textarea {
  border-color: #C03A2B;
  background: #FDF4F2;
}
.error-msg {
  font-size: 12.5px;
  color: #C03A2B;
  margin-top: 2px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.consent input { margin-top: 3px; flex-shrink: 0; }
.consent a { color: var(--navy); text-decoration: underline; }
.form .btn-primary { width: 100%; }
.form-success {
  background: #EBF5F0;
  border: 1px solid #B9DBC9;
  color: #1F5A42;
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.form-success b { display: block; font-size: 18px; margin-bottom: 6px; color: #143E2D; font-family: var(--font-serif); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 56px 0 32px;
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.footer-info { font-size: 14px; color: var(--muted); line-height: 1.8; }
.footer-info b { color: var(--ink-2); font-weight: 600; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.disclaimer {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-right: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.disclaimer b { color: var(--ink-2); display: block; margin-bottom: 6px; font-weight: 600; }
.copy {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Multi-step form ─────────────────────────────────────────── */
.ms-form { padding: clamp(24px, 3.5vw, 36px); }
.ms-header { margin-bottom: 22px; }
.ms-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--tint);
  overflow: hidden;
  margin-bottom: 10px;
}
.ms-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  transition: width .35s ease;
  border-radius: 999px;
}
.ms-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.ms-progress-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ms-step { animation: slideIn .25s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ms-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ms-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
}
.ms-option:hover { border-color: var(--blue); background: var(--surface); }
.ms-option.selected {
  border-color: var(--navy);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.08);
}
.ms-option input { position: absolute; opacity: 0; pointer-events: none; }
.ms-option-body { flex: 1; }
.ms-option-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ms-option-sub { font-size: 13.5px; color: var(--muted); }
.ms-option-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
  position: relative;
}
.ms-option.selected .ms-option-dot {
  border-color: var(--navy);
  background: var(--navy);
}
.ms-option.selected .ms-option-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.ms-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.ms-chip {
  appearance: none;
  border: 1.5px solid var(--line);
  background: var(--surface-alt);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}
.ms-chip:hover { border-color: var(--blue); }
.ms-chip.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.ms-chip.selected svg { color: var(--amber); }

.ms-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ms-actions-split {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ms-actions-split .btn-ghost { flex-shrink: 0; }
.ms-next { flex: 1; justify-content: center; }

.ms-trust {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  justify-content: center;
  width: 100%;
}
.ms-trust svg { color: var(--ok); flex-shrink: 0; }

.form-success {
  text-align: center;
  padding: 32px 24px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EBF5F0;
  color: #2F7D5F;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.form-success b {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  display: block;
}
.form-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ── Services — 3 cards ──────────────────────────────────────── */
.services {
  background: var(--bg);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.services-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.services-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--line);
}
.services-card.popular {
  border: 2px solid var(--amber);
  box-shadow: 0 12px 28px -12px rgba(199, 122, 46, 0.25);
}
.services-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--amber);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.services-tag {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.services-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.services-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.services-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.services-bullets li svg { color: var(--ok); flex-shrink: 0; margin-top: 3px; }
.services-price {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: auto;
}
.services-card.popular .services-price {
  background: linear-gradient(180deg, #FFF7EE, #FFFCF6);
  border-color: rgba(199, 122, 46, 0.3);
}
.services-price-label { font-size: 12.5px; color: var(--muted); margin-bottom: 2px; }
.services-price-amount {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.services-anchor {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.services-cta { justify-content: center; }
.services-note {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.services-note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }

/* ── Health funds strip ──────────────────────────────────────── */
.funds {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}
.funds-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.funds-label { flex-shrink: 0; }
.funds-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.funds-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.funds-list {
  display: flex;
  gap: 20px 36px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.funds-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.funds-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.funds-foot {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ── Conditions grid ─────────────────────────────────────────── */
.conditions {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.conditions-chip {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: border-color .15s, background .15s, color .15s;
}
.conditions-chip:hover {
  border-color: var(--blue);
  background: var(--surface);
  color: var(--navy);
}
.conditions-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
}
.conditions-foot a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Mid-page CTA band — form + call/whatsapp ───────────────── */
.midcta { background: var(--bg); }
.midcta-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}
.midcta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber), var(--amber-deep));
}
.midcta-copy {
  display: flex;
  flex-direction: column;
}
.midcta-copy .eyebrow { margin-bottom: 14px; }
.midcta-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.midcta-copy p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Direct contact options — phone & whatsapp */
.midcta-direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.midcta-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s, transform .1s;
  color: var(--navy);
}
.midcta-direct-item:hover {
  text-decoration: none;
  border-color: var(--navy);
  background: var(--surface);
  transform: translateX(-2px);
}
.midcta-direct-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.midcta-direct-icon-phone { background: var(--navy); }
.midcta-direct-icon-wa { background: #25D366; }
.midcta-direct-body {
  display: flex;
  flex-direction: column;
}
.midcta-direct-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.midcta-direct-value {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
}

/* Mini form on the right side */
.midcta-form {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.midcta-form-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.midcta-form .field { margin-bottom: 4px; }
.midcta-form-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  justify-content: center;
}
.midcta-form-trust svg { color: var(--ok); flex-shrink: 0; }

.midcta-form-success {
  text-align: center;
  justify-content: center;
}
.midcta-form-success b {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}
.midcta-form-success p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) {
  .midcta-card { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Responsive additions ────────────────────────────────────── */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin: 0 auto; }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .funds-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .funds-list { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-chips { grid-template-columns: 1fr; }
}
/* ── Floating sticky CTA (mobile-friendly) ───────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  z-index: 40;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
}
.sticky-call {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(14,42,71,0.3);
  transition: transform .12s, box-shadow .2s;
}
.sticky-call:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.sticky-call svg { width: 22px; height: 22px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-v1 .hero-grid { grid-template-columns: 1fr; }
  .hero-v1 .hero-visual { aspect-ratio: 16/10; max-width: 560px; margin: 0 auto; }
  .hero-v3 .hero-card { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .trust-item:nth-child(2)::after { display: none; }
  .hero-v2-strip {
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
    padding: 24px;
  }
  .hero-v2-strip .hv2-sep { display: none; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .g-summary { align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  /* Topbar mobile: convert to icon-only call/whatsapp buttons, hide the
     primary CTA button (sticky bottom-CTA covers that role) so tap targets
     have enough room. */
  .topbar-cta { gap: 8px; }
  .topbar-cta > .btn { display: none; }
  .topbar-phone {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .topbar-phone .tel { display: none; }
  .topbar-phone svg { width: 20px; height: 20px; }
  .topbar-wa { width: 44px; height: 44px; }
  .topbar-wa svg { width: 22px; height: 22px; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .trust-item::after { display: none !important; }
  .hero-v3 .hero-chips { grid-template-columns: 1fr; }
  .copy { flex-direction: column; }
  .sticky-cta { display: flex; }
  .sticky-cta .btn { padding: 14px 22px; box-shadow: 0 8px 24px rgba(14,42,71,0.3); }
}
