/* ==========================================================================
   CureMed — Design System
   Palette: clinical blue + supportive teal + warm amber for action.
   Signature element: a heartbeat pulse line, echoed from the logo mark,
   used as a recurring divider/underline motif across the page.
   ========================================================================== */

:root {
  /* Color */
  --paper: #F5F8FA;
  --paper-alt: #F4F6F9;
  --ink: #0E1116;
  --ink-soft: #545F6B;
  --blue: #0B5FA5;
  --blue-dark: #072742;
  --teal: #0B5FA5;
  --teal-tint: #EEF1F4;
  --blue-tint: #EAF2FA;
  --accent: #0B5FA5;
  --accent-dark: #084A82;
  --line: rgba(14, 17, 22, 0.12);
  --line-strong: rgba(14, 17, 22, 0.24);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* Layout */
  --wrap: 1180px;
  --radius: 6px;
  --radius-lg: 14px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: 88px; }
@media (max-width: 760px) { section { padding-block: 56px; } }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--blue);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.005em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3;
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 48ch;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(245, 248, 250, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { width: 34px; height: 34px; }
.wordmark {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
}
.wordmark .accent-part { color: var(--blue); font-weight: 700; }

.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active { color: var(--blue); }

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 16px 34px rgba(8, 22, 41, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.dropdown li a:hover { background: var(--blue-tint); color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .btn { padding: 11px 18px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  padding: 4px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
  .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - var(--header-h));
    display: flex;
    flex-direction: column;
    background: var(--paper);
    justify-content: flex-start;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    z-index: 60;
    box-shadow: -10px 0 30px rgba(11,95,165,0.10);
  }
  .site-nav.open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav-menu > li > a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; margin: 0 0 0 12px; padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding-block: 76px 96px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-top: 16px; }
.hero .lede { margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.trust-line {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.trust-line span { display: flex; align-items: center; gap: 7px; }
.trust-line span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.doc-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 30px 60px rgba(8, 22, 41, 0.14);
}
.doc-card .doc-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-soft); padding-block: 9px; border-bottom: 1px dashed var(--line); font-family: var(--font-mono); }
.doc-card .doc-row:last-child { border-bottom: none; }
.doc-card .doc-row b { color: var(--ink); }
.doc-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }

.pulse-badge {
  position: absolute;
  top: -20px;
  right: 8%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
}
.pulse-badge::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.pulse-badge svg { width: 30px; height: 30px; margin-inline: auto; margin-bottom: 6px; }
.pulse-badge .pulse-text {
  font-family: var(--font-mono);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; }
  .doc-card { margin-inline: auto; }
  .pulse-badge { right: -6px; }
}

/* ---------- Badges strip ---------- */
.badge-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.badge-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ---------- Cards / Services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(8,22,41,0.1);
  border-color: var(--line-strong);
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }
.service-card .learn {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Specialties ---------- */
.specialty-row { display: flex; flex-wrap: wrap; gap: 12px; }
.specialty-pill {
  font-size: 0.92rem;
  padding: 12px 20px;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: 8px; }
.process-step .step-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.process-step h3 { margin-top: 12px; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; }
.process-pulse {
  margin-top: 26px;
  width: 100%;
  height: 32px;
}
.process-pulse path { fill: none; stroke: var(--blue); stroke-width: 2; }
.process-legend { display: flex; gap: 18px; margin-top: 6px; font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-soft); }
.process-legend span { display: flex; align-items: center; gap: 6px; }
.process-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }
.process-legend .i-ai { background: var(--blue); }
.process-legend .i-human { background: var(--blue); }

/* ---------- Pricing teaser ---------- */
.pricing-teaser {
  background: var(--blue-dark);
  color: var(--paper);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
@media (max-width: 800px) { .pricing-teaser { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; } }
.pricing-teaser .rate {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.pricing-teaser .rate span { font-size: 1.6rem; opacity: 0.8; }
.pricing-teaser h3 { color: var(--paper); margin-bottom: 8px; }
.pricing-teaser p { color: rgba(245,248,250,0.78); max-width: 42ch; }
@media (max-width: 800px) { .pricing-teaser p { max-width: none; margin-inline: auto; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 20px; font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; margin-top: 16px; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
@media (max-width: 600px) { .form-card { padding: 26px 20px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
}
.field input:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; color: var(--blue); }
.form-status.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(245,248,250,0.82); padding-block: 64px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(245,248,250,0.14);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { color: var(--paper); }
.footer-brand .wordmark .accent-part { color: #6BB6E8; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; color: rgba(245,248,250,0.6); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,248,250,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(245,248,250,0.82); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(245,248,250,0.5);
}
.footer-bottom a { color: rgba(245,248,250,0.5); }
.footer-bottom a:hover { color: var(--paper); }

/* Center FAQ section */
#faq .section-head { margin-inline: auto; text-align: center; }
#faq .faq-list { margin-inline: auto; }


/* ==== Modern Upgrade Layer ==== */
:root {
  --blue-bright: #2E7DD1;
  --blue-glow: #4FA3E8;
  --grad-hero: linear-gradient(135deg, #EAF2FA 0%, #F5F8FA 55%, #E5EFF9 100%);
  --grad-card: linear-gradient(160deg, #FFFFFF 0%, #F1F6FB 100%);
  --grad-blue: linear-gradient(135deg, #0B5FA5 0%, #2E7DD1 100%);
  --grad-blue-dark: linear-gradient(135deg, #072742 0%, #0B5FA5 100%);
  --shadow-soft: 0 10px 30px rgba(11, 95, 165, 0.08);
  --shadow-lift: 0 20px 50px rgba(11, 95, 165, 0.18);
}
body { background: var(--paper); }
.hero { background: var(--grad-hero); position: relative; }
.hero::before { content: ""; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(46,125,209,0.22) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -140px; left: -100px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(11,95,165,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero h1 span.grad-word { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.btn-primary { background: var(--grad-blue); color: #fff !important; box-shadow: 0 8px 22px rgba(11,95,165,0.28); }
.btn-primary:hover { background: var(--grad-blue-dark); box-shadow: 0 12px 28px rgba(11,95,165,0.35); transform: translateY(-2px); }
.service-card { background: var(--grad-card); border: 1px solid rgba(11,95,165,0.10); box-shadow: var(--shadow-soft); overflow: hidden; position: relative; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.doc-card { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(11,95,165,0.14); box-shadow: var(--shadow-lift); }
.pulse-badge { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(11,95,165,0.18); animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(-2deg); } }
.specialty-pill { background: var(--grad-card); border: 1px solid rgba(11,95,165,0.16); color: var(--blue); transition: all 0.2s ease; }
.specialty-pill:hover { background: var(--grad-blue); color: #fff; border-color: transparent; transform: translateY(-2px); }
#specialties { background: linear-gradient(180deg, var(--paper) 0%, #EAF2FA 100%) !important; }
.process-pulse path { stroke: url(#pulseGrad); stroke-width: 2.5; stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: drawLine 3s ease-out forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.pricing-teaser { background: var(--grad-blue-dark); box-shadow: var(--shadow-lift); position: relative; overflow: hidden; }
.pricing-teaser::before { content: ""; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,163,232,0.25) 0%, transparent 70%); border-radius: 50%; }
.pricing-teaser > * { position: relative; z-index: 1; }
.pricing-teaser .rate { background: linear-gradient(180deg, #fff 0%, #B9D7F0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-teaser .btn-primary { background: #fff; color: var(--blue-dark) !important; box-shadow: 0 8px 22px rgba(0,0,0,0.25); }
.pricing-teaser .btn-primary:hover { background: #F5F8FA; }
.faq-item { background: var(--grad-card); border: 1px solid rgba(11,95,165,0.10); box-shadow: var(--shadow-soft); transition: box-shadow 0.2s ease; }
.faq-item[open] { box-shadow: var(--shadow-lift); border-color: rgba(11,95,165,0.22); }
.faq-item summary::after { color: var(--blue); }
.cta-band { background: linear-gradient(180deg, var(--paper) 0%, #EAF2FA 100%); border-top: 1px solid rgba(11,95,165,0.14); border-bottom: 1px solid rgba(11,95,165,0.14); }

.nav-menu > li > a::after { background: var(--grad-blue); height: 2.5px; }
.nav-menu > li > a.active { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-line span::before { box-shadow: 0 0 0 3px rgba(11,95,165,0.15); }
.eyebrow { color: var(--blue-bright); }
.eyebrow::before { background: var(--grad-blue); }
.pricing-teaser .rate span { color: rgba(255,255,255,0.7); -webkit-text-fill-color: rgba(255,255,255,0.7); }


/* ==== Motion & Polish Layer ==== */
html { scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: transparent; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 34px 30px; background: var(--grad-card); border: 1px solid rgba(11,95,165,0.10); border-radius: 18px; box-shadow: var(--shadow-soft); margin-top: 48px; }
@media (max-width: 720px) { .stats-strip { grid-template-columns: 1fr 1fr; } }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { margin-top: 8px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(46,125,209,0.28) 0%, transparent 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; animation: pulseGlow 6s ease-in-out infinite; }
@keyframes pulseGlow { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; } 50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; } }
.service-card { will-change: transform; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease; }
.service-card:hover { transform: translateY(-8px) scale(1.015); }

.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.4) 0%, transparent 45%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.btn:hover::after { opacity: 1; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--grad-blue); width: 0; z-index: 100; transition: width 0.08s linear; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } .pulse-badge, .hero-visual::before { animation: none; } }


/* ==== Footer contact form ==== */
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-form input { padding: 12px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; color: var(--paper); font-size: 0.92rem; transition: border-color 0.18s ease, background 0.18s ease; }
.footer-form input::placeholder { color: rgba(245,248,250,0.5); }
.footer-form input:focus { outline: none; border-color: var(--blue-glow); background: rgba(255,255,255,0.10); }
.footer-form .btn-primary { margin-top: 4px; padding: 12px 18px; }
.footer-form-status { font-size: 0.82rem; color: var(--blue-glow); min-height: 18px; margin-top: 2px; }
.footer-contact h4 { color: var(--paper); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0; text-transform: none; margin-bottom: 14px; }

#services-overview { background: linear-gradient(180deg, #F5F8FA 0%, #FFFFFF 100%); position: relative; }
#services-overview::before { content: ""; position: absolute; top: 10%; right: -160px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(46,125,209,0.10) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
#services-overview .wrap { position: relative; z-index: 1; }
#specialties { background: linear-gradient(135deg, #EAF2FA 0%, #F4F6F9 50%, #EEF4FA 100%) !important; position: relative; overflow: hidden; }
#specialties::before { content: ""; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(11,95,165,0.12) 0%, transparent 70%); border-radius: 50%; }
#specialties::after { content: ""; position: absolute; bottom: -80px; right: 10%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(46,125,209,0.10) 0%, transparent 70%); border-radius: 50%; }
#specialties .wrap { position: relative; z-index: 1; }
#process { background: #FFFFFF; position: relative; }
#process::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(11,95,165,0.06) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(46,125,209,0.06) 0%, transparent 40%); pointer-events: none; }
#process .wrap { position: relative; z-index: 1; }
#faq { background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 100%); }
.service-card { box-shadow: 0 1px 2px rgba(11,95,165,0.06), 0 4px 10px rgba(11,95,165,0.06), 0 10px 30px rgba(11,95,165,0.08); }
.service-card:hover { box-shadow: 0 2px 4px rgba(11,95,165,0.08), 0 10px 24px rgba(11,95,165,0.14), 0 24px 60px rgba(11,95,165,0.20); }
.stats-strip { box-shadow: 0 1px 2px rgba(11,95,165,0.06), 0 8px 24px rgba(11,95,165,0.10), 0 20px 50px rgba(11,95,165,0.12); }
.faq-item { box-shadow: 0 1px 2px rgba(11,95,165,0.05), 0 4px 12px rgba(11,95,165,0.06); }
.faq-item[open] { box-shadow: 0 4px 10px rgba(11,95,165,0.10), 0 16px 40px rgba(11,95,165,0.15); }
.doc-card { box-shadow: 0 2px 4px rgba(11,95,165,0.06), 0 12px 30px rgba(11,95,165,0.14), 0 30px 60px rgba(11,95,165,0.18); }
.process-step { background: var(--grad-card); border: 1px solid rgba(11,95,165,0.10); border-radius: 16px; padding: 28px 24px 24px; box-shadow: 0 1px 2px rgba(11,95,165,0.05), 0 8px 20px rgba(11,95,165,0.08); position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.process-step:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(11,95,165,0.08), 0 16px 36px rgba(11,95,165,0.14); }
.process-step::before { content: ""; position: absolute; top: 0; left: 0; width: 60px; height: 60px; background: radial-gradient(circle, rgba(46,125,209,0.14) 0%, transparent 70%); }
.specialty-pill { padding: 14px 22px; font-weight: 600; box-shadow: 0 2px 6px rgba(11,95,165,0.08); }
.specialty-pill:hover { box-shadow: 0 8px 20px rgba(11,95,165,0.24); }
.eyebrow { padding: 6px 12px; background: rgba(11,95,165,0.08); border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; }
.eyebrow::before { display: none; }
h2, .h2 { letter-spacing: -0.015em; }


/* ==== Responsive fixes ==== */
@media (max-width: 640px) { .header-cta .btn-primary { display: none; } .site-header .brand .wordmark { font-size: 1.2rem; } }
.pulse-badge > div { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.pulse-badge svg { width: 28px; height: 28px; display: block; }
.pulse-badge .pulse-text { text-align: center; line-height: 1.35; }
@media (max-width: 900px) { .pulse-badge { width: 100px; height: 100px; top: -14px; right: 4px; } .pulse-badge svg { width: 22px; height: 22px; } .pulse-badge .pulse-text { font-size: 0.6rem; } }
@media (max-width: 760px) { .hero { padding-bottom: 60px; } .hero .wrap { gap: 40px; } .hero-visual { margin-top: 20px; } .stats-strip { margin-top: 32px; padding: 24px 16px; gap: 12px; } .stat-num { font-size: 1.7rem; } .stat-label { font-size: 0.65rem; } }
@media (max-width: 480px) { .hero h1 { font-size: 2.15rem; } .hero .lede { font-size: 1rem; } .hero-actions .btn { padding: 12px 20px; font-size: 0.9rem; } .hero-actions { gap: 10px; } .trust-line { gap: 12px; font-size: 0.72rem; } }
@media (max-width: 760px) { .section-head { margin-bottom: 32px; } }
@media (max-width: 600px) { .service-card { padding: 24px 20px; } }
@media (max-width: 800px) { .pricing-teaser .rate { font-size: 3.4rem; } .pricing-teaser { gap: 24px; } }
@media (max-width: 600px) { .faq-item summary { font-size: 0.98rem; padding: 16px 0; } .faq-item p { font-size: 0.9rem; } }
@media (max-width: 600px) { .cta-band .hero-actions { flex-direction: column; align-items: stretch; } .cta-band .hero-actions .btn { justify-content: center; } }
@media (max-width: 480px) { .footer-form-row { grid-template-columns: 1fr; } }
body { overflow-x: hidden; }
.hero, section { max-width: 100vw; }
@media (max-width: 380px) { .header-cta .btn-ghost { padding: 8px 12px; font-size: 0.82rem; } }


/* ==== Pulse badge visual bump ==== */
.pulse-badge svg { width: 42px !important; height: 42px !important; margin-bottom: 8px; }
.pulse-badge .pulse-text { font-size: 0.72rem !important; font-weight: 700; letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .pulse-badge svg { width: 30px !important; height: 30px !important; }
  .pulse-badge .pulse-text { font-size: 0.62rem !important; }
}


/* ==== Doc card chip ==== */
.doc-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--grad-blue); color: #fff; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(11,95,165,0.25); margin-bottom: 18px; position: relative; z-index: 1; }
.doc-chip svg { width: 18px; height: 18px; }
.pulse-badge { display: none; }


/* ==== Header alignment ==== */
.header-inner { display: flex; align-items: center; gap: 20px; }
.header-inner .brand { margin-right: auto; }
.header-inner .site-nav { flex: 0 0 auto; margin-right: auto; margin-left: 40px; }
.header-inner .header-cta { flex: 0 0 auto; }
@media (max-width: 900px) { .header-inner .site-nav { margin: 0; } }


/* ==== Header alignment override ==== */
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-inner .brand { flex-shrink: 0; margin: 0; }
.header-inner .site-nav { flex: 1; justify-content: center; margin: 0; }
.header-inner .header-cta { flex-shrink: 0; margin: 0; }
@media (max-width: 900px) { .header-inner .site-nav { flex: 0 0 auto; } }


/* ==== Header wrap must fill flex parent ==== */
.site-header .wrap { flex: 1; width: 100%; }


/* ==== FAQ hover open (desktop only) ==== */
.faq-item { overflow: hidden; }
.faq-item .faq-body { max-height: 0; overflow: hidden; transition: max-height 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
.faq-item[open] .faq-body { max-height: 300px; }
@media (hover: hover) and (min-width: 761px) {
  .faq-item:hover { box-shadow: var(--shadow-lift); border-color: rgba(11,95,165,0.22); }
  .faq-item:hover summary::after { transform: rotate(45deg); }
  .faq-item:hover .faq-body { max-height: 300px; }
}


/* ==== FAQ body force-render fix ==== */
.faq-item > .faq-body { display: block !important; }


/* ==== Force <details> to always render full content ==== */
.faq-item { content-visibility: visible !important; }
.faq-item::details-content { content-visibility: visible !important; overflow: visible !important; }
.faq-item > .faq-body { display: block !important; }
.faq-item { overflow: hidden; }


/* ==== Wider dropdowns for longer service/specialty lists ==== */
.has-dropdown .dropdown { min-width: 270px; max-height: 420px; overflow-y: auto; }
.has-dropdown .dropdown::-webkit-scrollbar { width: 6px; }
.has-dropdown .dropdown::-webkit-scrollbar-thumb { background: rgba(11,95,165,0.25); border-radius: 4px; }
@media (max-width: 900px) { .has-dropdown .dropdown { max-height: none; } }


/* ==== Polished dropdown item hover ==== */
.dropdown li a { display: flex !important; align-items: center; justify-content: space-between; padding: 11px 14px !important; border-radius: 8px !important; position: relative; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, padding-left 0.25s ease; }
.dropdown li a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--grad-blue); border-radius: 0 3px 3px 0; transition: height 0.25s ease; }
.dropdown li a::after { content: "\2192"; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s ease, transform 0.25s ease; color: var(--blue); font-weight: 700; margin-left: 10px; }
.dropdown li a:hover { background: linear-gradient(90deg, rgba(11,95,165,0.06) 0%, rgba(46,125,209,0.02) 100%) !important; color: var(--blue) !important; padding-left: 18px !important; }
.dropdown li a:hover::before { height: 70%; }
.dropdown li a:hover::after { opacity: 1; transform: translateX(0); }



/* ==== Dropdown chevron indicator ==== */
.has-dropdown > a { display: inline-flex !important; align-items: center; gap: 5px; }
.has-dropdown > a::before { content: ""; width: 10px; height: 10px; order: 2; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2,4 6,8 10,4'/></svg>"); background-repeat: no-repeat; background-position: center; background-size: contain; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); opacity: 0.7; }
.has-dropdown:hover > a::before, .has-dropdown:focus-within > a::before { transform: rotate(-180deg); opacity: 1; }
@media (max-width: 900px) { .has-dropdown > a::before { margin-left: auto; width: 14px; height: 14px; } }


/* ==== Testimonial cards ==== */
#testimonials-section .service-card { padding: 34px 30px 28px; position: relative; }
#testimonials-section blockquote { margin: 0; }
#testimonials-section blockquote::before { display: none; }
#testimonials-section blockquote p { position: relative; z-index: 1; font-family: var(--font-display) !important; font-weight: 400 !important; font-size: 1.05rem !important; line-height: 1.55 !important; color: var(--ink) !important; font-style: italic; margin-bottom: 26px !important; }
#testimonials-section blockquote footer { padding-top: 18px; border-top: 1px solid rgba(11,95,165,0.14); display: flex; align-items: center; gap: 14px; font-family: var(--font-body) !important; font-size: 0.85rem !important; }
#testimonials-section blockquote footer strong { display: inline-flex !important; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-blue); color: #fff !important; font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.04em; margin: 0 !important; box-shadow: 0 6px 14px rgba(11,95,165,0.28); flex-shrink: 0; font-size: 0.85rem; }
#testimonials-section blockquote footer > *:not(strong) { color: var(--ink-soft); line-height: 1.4; }
#testimonials-section .card-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 760px) { #testimonials-section .card-grid { grid-template-columns: 1fr; } }


/* ==== FAQ open/hover active color state ==== */
.faq-item[open], .faq-item:hover { background: linear-gradient(135deg, rgba(11,95,165,0.05) 0%, rgba(46,125,209,0.03) 100%) !important; border-color: rgba(11,95,165,0.28) !important; }
.faq-item[open] summary, .faq-item:hover summary { color: var(--blue) !important; }
.faq-item[open] summary::after, .faq-item:hover summary::after { color: var(--blue) !important; }


/* ==== Calculator number font upgrade ==== */
.calc-value, .calc-cost, .calc-save-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "lnum" 1; letter-spacing: -0.02em; }
.calc-value #calc-amount, .calc-cost span[id], .calc-save-num span[id] { display: inline-block; min-width: 1ch; }


/* ==== Journey tab stronger transition ==== */
.journey-panel { transition: none; }
.journey-panel.active { animation: journeySlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes journeySlideIn { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }
.journey-panel .visual-card { animation: cardPop 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes cardPop { 0% { opacity: 0; transform: scale(0.94) translateY(20px); } 60% { opacity: 1; } 100% { transform: scale(1) translateY(0); opacity: 1; } }
.journey-panel .journey-list li { opacity: 0; animation: listFadeIn 0.5s ease forwards; }
.journey-panel .journey-list li:nth-child(1) { animation-delay: 0.15s; }
.journey-panel .journey-list li:nth-child(2) { animation-delay: 0.25s; }
.journey-panel .journey-list li:nth-child(3) { animation-delay: 0.35s; }
@keyframes listFadeIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.journey-tab.active { position: relative; }
.journey-tab.active::after { content: ""; position: absolute; bottom: -3px; left: 20%; right: 20%; height: 3px; background: #E8A33D; box-shadow: 0 0 18px rgba(232, 163, 61, 0.6); border-radius: 2px; }


/* ==== Journey visual card upgrade ==== */
.visual-card { background: #fff; border: 1px solid rgba(11,95,165,0.14); border-radius: 16px; padding: 0; box-shadow: 0 20px 50px rgba(11,95,165,0.14), 0 4px 10px rgba(11,95,165,0.06); font-family: var(--font-body); overflow: hidden; position: relative; }
.visual-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-blue); }
.visual-card .vc-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; color: var(--blue); margin: 0; padding: 18px 22px 16px; border-bottom: 1px solid var(--line); border-radius: 0; font-weight: 700; background: linear-gradient(135deg, rgba(11,95,165,0.04) 0%, rgba(46,125,209,0.02) 100%); display: flex; align-items: center; justify-content: space-between; }
.visual-card .vc-label::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1E8F79; box-shadow: 0 0 0 4px rgba(30,143,121,0.18); animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(30,143,121,0.18); } 50% { box-shadow: 0 0 0 8px rgba(30,143,121,0.05); } }
.visual-card .vc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px; font-size: 0.88rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.visual-card .vc-row:last-child { border-bottom: none; }
.visual-card .vc-row span:first-child { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.visual-card .vc-row b { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.visual-card .vc-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(11,95,165,0.08); color: var(--blue) !important; font-size: 0.78rem !important; font-weight: 600 !important; font-family: var(--font-body); }
.visual-card .vc-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.visual-card .vc-ok { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(30,143,121,0.10); color: #167B67 !important; font-size: 0.78rem !important; font-weight: 600 !important; }
.visual-card .vc-ok::before { content: "\2713"; font-size: 0.75rem; }

/* ==== Cost calculator comparison upgrade ==== */
.calc-col { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid var(--line); position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.calc-inhouse { border-color: rgba(0,0,0,0.10); background: linear-gradient(160deg, #FFFFFF 0%, #F5F5F5 100%); opacity: 0.85; }
.calc-inhouse .calc-cost { color: var(--ink-soft) !important; position: relative; display: inline-block; }
.calc-inhouse .calc-cost::before { content: ""; position: absolute; top: 55%; left: -6px; right: -6px; height: 2px; background: rgba(178, 58, 46, 0.6); transform: rotate(-4deg); transform-origin: center; border-radius: 2px; }
.calc-inhouse .calc-title::before { content: ""; display: inline-block; width: 14px; height: 14px; background: rgba(178, 58, 46, 0.15); border-radius: 4px; margin-right: 8px; vertical-align: -2px; }
.calc-curemed { border-color: transparent; box-shadow: 0 12px 34px rgba(11,95,165,0.18), 0 0 0 2px rgba(11,95,165,0.28); background: linear-gradient(160deg, #FFFFFF 0%, #EAF2FA 100%); transform: scale(1.03); }
.calc-curemed::before { content: "RECOMMENDED"; position: absolute; top: -12px; left: 22px; padding: 4px 10px; background: var(--grad-blue); color: #fff; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; font-weight: 700; border-radius: 4px; box-shadow: 0 6px 14px rgba(11,95,165,0.28); }
.calc-curemed .calc-title::before { content: ""; display: inline-block; width: 14px; height: 14px; background: var(--grad-blue); border-radius: 4px; margin-right: 8px; vertical-align: -2px; }
.calc-breakdown { font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-soft); line-height: 1.9; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 8px; }
.calc-breakdown div { display: flex; align-items: center; gap: 8px; }
.calc-curemed .calc-breakdown div::before { content: "\2713"; color: var(--blue); font-weight: 700; font-size: 0.85rem; }
.calc-inhouse .calc-breakdown div::before { content: "\2022"; color: var(--ink-soft); opacity: 0.5; }
.calc-arrow { font-size: 2rem; color: var(--blue); font-weight: 300; text-align: center; opacity: 0.6; }
@media (max-width: 700px) { .calc-curemed { transform: none; } }


/* ==== Cost Comparison — compact single-viewport layout ==== */
.mb-calc { padding: 70px 0; background: #fff; }
.mb-calc .section-head { margin-bottom: 32px; }
.calc-card { max-width: 1000px; margin: 0 auto; background: var(--grad-card); border: 1px solid rgba(11,95,165,0.14); border-radius: 20px; padding: 32px 36px; box-shadow: 0 14px 40px rgba(11,95,165,0.10); }
.calc-input { text-align: center; margin-bottom: 24px; }
.calc-input label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 10px; }
.calc-value-wrap { display: inline-flex; align-items: baseline; gap: 4px; padding: 8px 20px; background: #fff; border-radius: 12px; border: 2px solid rgba(11,95,165,0.20); margin-bottom: 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.calc-value-wrap:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,95,165,0.10); }
.calc-dollar-large { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; }
#calc-manual { font-family: var(--font-body); font-size: 2.4rem; font-weight: 700; color: var(--blue); border: none; outline: none; background: transparent; width: 220px; text-align: center; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; padding: 0; }
@media (max-width: 500px) { #calc-manual { font-size: 1.8rem; width: 170px; } .calc-dollar-large { font-size: 1.6rem; } }
#collections { width: 100%; max-width: 500px; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 4px; background: rgba(11,95,165,0.15); outline: none; margin-top: 4px; }
#collections::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); cursor: pointer; box-shadow: 0 6px 16px rgba(11,95,165,0.35); transition: transform 0.15s ease; }
#collections::-webkit-slider-thumb:hover { transform: scale(1.12); }
#collections::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); border: 0; cursor: pointer; box-shadow: 0 6px 16px rgba(11,95,165,0.35); }
.calc-range-labels { display: flex; justify-content: space-between; max-width: 500px; margin: 6px auto 0; font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.06em; }
.calc-results { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; margin: 24px 0 20px; }
@media (max-width: 700px) { .calc-results { grid-template-columns: 1fr; gap: 12px; } .calc-arrow { transform: rotate(90deg); padding: 4px 0; } }
.calc-col { background: #fff; border-radius: 14px; padding: 20px 22px; border: 1px solid var(--line); position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.calc-inhouse { border-color: rgba(0,0,0,0.10); background: linear-gradient(160deg, #FFFFFF 0%, #F5F5F5 100%); opacity: 0.85; }
.calc-curemed { border-color: transparent; box-shadow: 0 12px 34px rgba(11,95,165,0.18), 0 0 0 2px rgba(11,95,165,0.28); background: linear-gradient(160deg, #FFFFFF 0%, #EAF2FA 100%); }
@media (min-width: 701px) { .calc-curemed { transform: scale(1.02); } }
.calc-curemed::before { content: "RECOMMENDED"; position: absolute; top: -10px; left: 18px; padding: 3px 8px; background: var(--grad-blue); color: #fff; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; font-weight: 700; border-radius: 4px; box-shadow: 0 4px 10px rgba(11,95,165,0.28); }
.calc-title { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.calc-inhouse .calc-title::before { content: ""; width: 10px; height: 10px; background: rgba(178, 58, 46, 0.25); border-radius: 3px; }
.calc-curemed .calc-title { color: var(--blue); }
.calc-curemed .calc-title::before { content: ""; width: 10px; height: 10px; background: var(--grad-blue); border-radius: 3px; }
.calc-cost { font-family: var(--font-body); font-size: 2rem; font-weight: 700; line-height: 1; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.calc-curemed .calc-cost { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-inhouse .calc-cost { color: var(--ink-soft); position: relative; display: inline-block; }
.calc-inhouse .calc-cost::before { content: ""; position: absolute; top: 55%; left: -4px; right: -4px; height: 2px; background: rgba(178, 58, 46, 0.6); transform: rotate(-4deg); border-radius: 2px; }
.calc-cost .calc-dollar { font-size: 0.65em; opacity: 0.7; margin-right: 2px; font-weight: 600; }
.calc-cost .calc-per { font-size: 0.42em; opacity: 0.55; font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.calc-breakdown { font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-soft); line-height: 1.7; padding-top: 12px; border-top: 1px solid var(--line); }
.calc-breakdown div { display: flex; align-items: center; gap: 6px; }
.calc-curemed .calc-breakdown div::before { content: "\2713"; color: var(--blue); font-weight: 700; font-size: 0.85rem; }
.calc-inhouse .calc-breakdown div::before { content: "\2022"; color: var(--ink-soft); opacity: 0.5; }
.calc-arrow { font-size: 1.5rem; color: var(--blue); font-weight: 300; text-align: center; align-self: center; opacity: 0.6; }
.calc-savings { background: linear-gradient(135deg, #072742 0%, #0B5FA5 100%); color: #fff; border-radius: 12px; padding: 18px 24px; text-align: center; box-shadow: 0 10px 26px rgba(11,95,165,0.20); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.calc-save-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin: 0; }
.calc-save-num { font-family: var(--font-body); font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.calc-save-num .calc-per { font-size: 0.55em; opacity: 0.75; font-weight: 500; margin-left: 2px; }


/* ==== Cost calc — screen fit ==== */
.mb-calc .section-head { margin-bottom: 18px; max-width: 640px; }
.mb-calc .section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem) !important; line-height: 1.2; }
.mb-calc .section-head .lede { font-size: 0.98rem; margin-top: 8px; }
.mb-calc .section-head .eyebrow { margin-bottom: 8px; }
.mb-calc .calc-card { margin-top: 12px; padding: 22px 28px !important; }
.mb-calc .calc-input { margin-bottom: 16px !important; }
.mb-calc .calc-input label { margin-bottom: 4px !important; }
.mb-calc .calc-value { margin-bottom: 12px !important; font-size: 1.9rem !important; }
.mb-calc .calc-results { margin-bottom: 14px !important; gap: 16px !important; }
.mb-calc .calc-col { padding: 16px 18px !important; }
.mb-calc .calc-col .calc-cost { font-size: 1.6rem !important; margin-bottom: 8px !important; }
.mb-calc .calc-breakdown { padding-top: 8px !important; font-size: 0.75rem !important; line-height: 1.55 !important; }
.mb-calc .calc-savings { padding: 12px 20px !important; }
.mb-calc .calc-save-num { font-size: 1.15rem !important; }
.mb-calc .calc-note { display: none; }

/* ==== Calculator bars ==== */
.calc-bar { height: 5px; background: rgba(11,95,165,0.10); border-radius: 3px; margin: 4px 0 12px; overflow: hidden; }
.calc-bar-fill { height: 100%; border-radius: 3px; transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.calc-bar-inhouse .calc-bar-fill { background: linear-gradient(90deg, #B23A2E 0%, #D66B5F 100%); opacity: 0.7; }
.calc-bar-curemed .calc-bar-fill { background: var(--grad-blue); box-shadow: 0 0 8px rgba(11,95,165,0.4); }

/* ==== Results donut charts ==== */
.mb-results .result-block { text-align: center; }
.donut { position: relative; width: 140px; height: 140px; margin: 0 auto 18px; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 8; }
.donut-track { stroke: rgba(255,255,255,0.15); }
.donut-fill { stroke: var(--color, #E8A33D); stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: 264; transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1); }
.donut.animate .donut-fill { stroke-dashoffset: calc(264 - (264 * var(--pct) / 100)); }
.donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; }
.donut-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; display: block; letter-spacing: -0.02em; }
.donut-suffix { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.72; margin-top: 4px; display: inline-block; }
.mb-results .result-block .num { display: none; }


/* ==== Hero with doctor image + floating claim card ==== */
.hero-doctor {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.hero-doctor img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(11,95,165,0.20));
  animation: doctorFloat 6s ease-in-out infinite;
}
@keyframes doctorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Floating claim card overlaying bottom-left */
.hero-visual { position: relative; }
.doc-card-float {
  position: absolute;
  bottom: 8%;
  left: -10%;
  width: 300px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(11,95,165,0.18);
  box-shadow: 0 24px 60px rgba(11,95,165,0.22), 0 6px 14px rgba(11,95,165,0.10);
  padding: 20px 22px;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(0deg); }
}
.doc-card-float .doc-chip { margin-bottom: 14px; font-size: 0.68rem; padding: 6px 12px; }
.doc-card-float .doc-title { font-size: 0.66rem; margin-bottom: 12px; }
.doc-card-float .doc-row { font-size: 0.72rem; padding-block: 7px; }
.doc-card-float .doc-row b { font-size: 0.75rem; }

/* Mobile: stack cleanly, no absolute overlay */
@media (max-width: 900px) {
  .hero-doctor { max-width: 340px; }
  .doc-card-float {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 380px;
    margin: -60px auto 0;
    animation: none;
  }
}


/* ==== Process flow SVG diagram ==== */
.process-flow-svg { max-width: 100%; margin: 40px auto 20px; padding: 20px 10px; }
.process-flow-svg svg { width: 100%; height: auto; max-height: 220px; display: block; }
@media (max-width: 700px) { .process-flow-svg { display: none; } }


/* ==== Hero visual (doctor + floating card) — restore ==== */
.hero .hero-grid, .hero .wrap > .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-visual { position: relative; z-index: 1; }
.hero-doctor { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: flex-end; width: 100%; max-width: 460px; margin-left: auto; }
.hero-doctor img { width: auto; max-width: 100%; max-height: 88vh; object-fit: contain; object-position: bottom right; display: block; }
.doc-card-float { position: absolute; bottom: 6%; left: -12%; width: 220px; z-index: 2; background: #fff; border: 1px solid rgba(11,95,165,0.18); border-radius: 16px; padding: 14px 16px; box-shadow: 0 24px 60px rgba(11,95,165,0.22), 0 6px 14px rgba(11,95,165,0.10); }
@media (max-width: 900px) { .hero-doctor { max-width: 340px; margin: 0 auto; } .doc-card-float { position: relative; bottom: auto; left: auto; width: 100%; max-width: 380px; margin: -60px auto 0; } }

/* ==== Pricing combined section (pc-*) — restore ==== */
.pc-section { padding: 70px 0; background: linear-gradient(135deg, #072742 0%, #0B5FA5 55%, #2E7DD1 100%); color: #fff; position: relative; overflow: hidden; }
.pc-section::before { content: ""; position: absolute; top: -100px; left: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(79,163,232,0.22) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.pc-section::after { content: ""; position: absolute; bottom: -80px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(46,125,209,0.20) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.pc-section .wrap { position: relative; z-index: 1; }
.pc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .pc-grid { grid-template-columns: 1fr; gap: 24px; } }
.pc-left { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 20px; padding: 34px 32px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.pc-eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.14); color: #fff; padding: 6px 12px; border-radius: 999px; align-self: flex-start; margin-bottom: 22px; }
.pc-rate { font-family: var(--font-display); font-size: clamp(3rem, 5.4vw, 4.4rem); font-weight: 700; line-height: 1; color: #fff; letter-spacing: -0.02em; margin-bottom: 18px; }
.pc-percent { font-size: 0.5em; opacity: 0.8; margin-left: 4px; }
.pc-headline { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.pc-desc { color: rgba(255,255,255,0.78); margin: 0 0 24px; line-height: 1.6; font-size: 0.94rem; }
.pc-btn { background: #fff; color: #072742; border: none; padding: 12px 24px; border-radius: 10px; font-weight: 600; text-decoration: none; display: inline-block; align-self: flex-start; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.28); }
.pc-right { background: #fff; border-radius: 20px; padding: 26px 26px 22px; color: #0E1116; box-shadow: 0 20px 60px rgba(0,0,0,0.28); }
.pc-calc-head { text-align: center; padding-bottom: 14px; border-bottom: 1px dashed rgba(11,95,165,0.15); margin-bottom: 16px; }
.pc-calc-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #0E1116; margin: 0 0 6px; letter-spacing: -0.01em; }
.pc-calc-sub { font-size: 0.86rem; color: #0B5FA5; font-weight: 600; margin: 0; line-height: 1.4; }
.pc-calc-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #6B7280; text-align: center; margin-bottom: 10px; }
.pc-calc-input-wrap { display: flex; align-items: baseline; justify-content: center; gap: 4px; padding: 8px 18px; background: #F5F8FA; border: 2px solid rgba(11,95,165,0.22); border-radius: 12px; margin-bottom: 12px; transition: border-color 0.2s ease, box-shadow 0.2s ease; max-width: 320px; margin-inline: auto; }
.pc-calc-input-wrap:focus-within { border-color: #0B5FA5; box-shadow: 0 0 0 4px rgba(11,95,165,0.14); }
.pc-calc-dollar { font-family: var(--font-body); font-size: 1.6rem; font-weight: 700; color: #0B5FA5; letter-spacing: -0.02em; }
#calc-manual { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: #0B5FA5; border: none; outline: none; background: transparent; width: 200px; text-align: center; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; padding: 0; }
.pc-slider { display: block; width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 4px; background: rgba(11,95,165,0.15); outline: none; margin-top: 4px; }
.pc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #0B5FA5; cursor: pointer; box-shadow: 0 6px 14px rgba(11,95,165,0.35); }
.pc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #0B5FA5; border: 0; cursor: pointer; box-shadow: 0 6px 14px rgba(11,95,165,0.35); }
.pc-slider-labels { display: flex; justify-content: space-between; margin: 6px 0 16px; font-family: var(--font-mono); font-size: 0.68rem; color: #6B7280; letter-spacing: 0.06em; }
.pc-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; margin-bottom: 14px; }
.pc-box { position: relative; text-align: center; padding: 16px 14px; border-radius: 12px; }
.pc-box-inhouse { background: linear-gradient(160deg, #FFFFFF 0%, #F5F5F5 100%); border: 1px solid rgba(0,0,0,0.10); opacity: 0.85; }
.pc-box-cure { background: linear-gradient(160deg, #FFFFFF 0%, #EAF2FA 100%); border: 1px solid rgba(11,95,165,0.30); box-shadow: 0 8px 20px rgba(11,95,165,0.14); }
.pc-badge { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #0B5FA5 0%, #2E7DD1 100%); color: #fff; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; font-weight: 700; padding: 3px 10px; border-radius: 4px; box-shadow: 0 4px 10px rgba(11,95,165,0.28); }
.pc-box-title { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #6B7280; margin-bottom: 6px; }
.pc-box-cure .pc-box-title { color: #0B5FA5; }
.pc-box-cost { font-family: var(--font-body); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.pc-cost-strike { color: #6B7280; position: relative; display: inline-block; }
.pc-cost-strike::before { content: ""; position: absolute; top: 55%; left: -4px; right: -4px; height: 2px; background: rgba(178,58,46,0.55); transform: rotate(-4deg); border-radius: 2px; }
.pc-cost-cure { background: linear-gradient(135deg, #0B5FA5, #2E7DD1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pc-cost-dollar { font-size: 0.65em; opacity: 0.7; font-weight: 600; margin-right: 1px; }
.pc-cost-per { font-size: 0.42em; opacity: 0.55; font-weight: 500; margin-left: 3px; letter-spacing: 0; }
.pc-arrow { color: #0B5FA5; font-size: 1.5rem; opacity: 0.5; text-align: center; }
.pc-save-bar { background: linear-gradient(135deg, #0F6B54 0%, #1E8F79 50%, #2FB08C 100%); color: #fff; border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; box-shadow: 0 8px 22px rgba(30,143,121,0.28); }
.pc-save-lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.pc-save-val { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: #fff; }


/* ==== Doc card float — FINAL restore (matches earlier working version) ==== */
.doc-card-float {
  width: 210px !important;
  padding: 14px 16px !important;
  bottom: 8% !important;
  left: -14% !important;
  background: #fff !important;
  border: 1px solid rgba(11,95,165,0.18) !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 60px rgba(11,95,165,0.22), 0 6px 14px rgba(11,95,165,0.10) !important;
  animation: cardFloatBig 4s ease-in-out infinite !important;
  z-index: 2;
}
.doc-card-float .doc-chip {
  margin-bottom: 10px !important;
  font-size: 0.58rem !important;
  padding: 4px 8px !important;
  gap: 4px !important;
  white-space: nowrap !important;
  width: fit-content !important;
}
.doc-card-float .doc-chip svg { width: 14px !important; height: 14px !important; flex-shrink: 0; }
.doc-card-float .doc-title { font-size: 0.56rem !important; margin-bottom: 8px !important; }
.doc-card-float .doc-row { font-size: 0.62rem !important; padding-block: 4px !important; }
.doc-card-float .doc-row b { font-size: 0.66rem !important; }

@keyframes cardFloatBig {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(1.5deg); }
}
@keyframes doctorFloatBig {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-doctor img { animation: doctorFloatBig 5s ease-in-out infinite !important; }


/* ==== Hero — screen fit restore ==== */
.hero { padding-block: 30px 40px !important; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; }
.hero .wrap { width: 100%; }
.hero-copy { padding-right: 20px; }
.hero h1 { margin-top: 10px !important; }
.hero .lede { margin-top: 14px !important; }
.hero-actions { margin-top: 22px !important; }
.trust-line { margin-top: 20px !important; }
.stats-strip { margin-top: 26px !important; padding: 20px 22px !important; }
.stats-strip .stat-num { font-size: 1.7rem !important; }
.stats-strip .stat-label { font-size: 0.66rem !important; }

.hero-visual { align-self: stretch; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-doctor { max-width: 100% !important; align-items: flex-end; margin: 0 !important; justify-content: flex-end !important; }
.hero-doctor img { max-height: 88vh !important; width: auto; max-width: 100%; object-fit: contain; object-position: bottom right; }

/* Card overlay on doctor's torso */
.doc-card-float {
  bottom: 8% !important;
  left: -10% !important;
  width: 210px !important;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-doctor img { max-height: 400px !important; }
  .doc-card-float { position: relative !important; bottom: auto !important; left: auto !important; width: 100% !important; max-width: 360px !important; margin: -50px auto 0 !important; }
}


/* ==== Onboard steps grid + heartbeat — FINAL restore ==== */
.onboard-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 60px !important;
  position: relative !important;
}
@media (max-width: 900px) {
  .onboard-steps { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
}
@media (max-width: 500px) {
  .onboard-steps { grid-template-columns: 1fr !important; }
}
.onboard-heartbeat-svg {
  position: absolute !important;
  top: 8px !important;
  left: 12% !important;
  right: 12% !important;
  width: 76% !important;
  height: 40px !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 900px) {
  .onboard-heartbeat-svg { display: none !important; }
}


/* ==== Medical Billing hero — screen fit ==== */
.mb-hero {
  padding: 30px 0 40px !important;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}
.mb-hero .wrap { width: 100%; }
.mb-hero h1 { margin-top: 8px !important; }
.mb-hero .lede { margin-top: 14px !important; }
.mb-hero-actions { margin-top: 24px !important; }


/* ==== Pull trust bar into hero section ==== */
.mb-hero { position: relative; }
.mb-trust { background: transparent !important; border-bottom: none !important; margin-top: 30px; padding: 20px 0 30px !important; }
.mb-trust + section, .mb-trust { border-top: 1px solid rgba(11,95,165,0.10); }
.mb-hero .mb-hero-grid { flex-grow: 1; }


/* ==== Medical Billing hero — screen fit including trust bar ==== */
.mb-hero { padding: 30px 0 0 !important; min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; }
.mb-hero .wrap { width: 100%; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.mb-hero .mb-hero-grid { flex: 0 0 auto; }
.mb-hero > .mb-trust, .mb-hero .mb-trust { background: transparent !important; border-bottom: none !important; border-top: 1px solid rgba(11,95,165,0.10) !important; padding: 20px 0 !important; margin-top: 40px !important; flex-shrink: 0; }
.mb-hero h1 { margin-top: 8px !important; }
.mb-hero .lede { margin-top: 14px !important; }
.mb-hero-actions { margin-top: 24px !important; }


/* ==== Medical Billing "What Is Included" cards — match svc-card style ==== */
.handle-card {
  display: flex !important;
  flex-direction: column !important;
  background: var(--grad-card) !important;
  border: 1px solid rgba(11,95,165,0.10) !important;
  border-radius: 18px !important;
  padding: 30px 26px 26px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(11,95,165,0.06) !important;
}
.handle-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.handle-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 46px rgba(11,95,165,0.18) !important;
  border-color: rgba(11,95,165,0.28) !important;
}
.handle-card:hover::before { transform: scaleX(1); }
.handle-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: var(--grad-blue) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  box-shadow: 0 8px 20px rgba(11,95,165,0.28) !important;
  flex-shrink: 0;
}
.handle-icon svg { width: 26px !important; height: 26px !important; color: #fff !important; stroke: #fff !important; }
.handle-card h3 { font-family: var(--font-display) !important; font-size: 1.2rem !important; margin-bottom: 10px !important; color: var(--ink) !important; }
.handle-card p { font-size: 0.94rem !important; color: var(--ink-soft) !important; line-height: 1.6 !important; }


/* ==== Medical Billing hero Lottie — force floating + shadow ==== */
.mb-hero-visual lottie-player {
  animation: mbHeroFloat 5s ease-in-out infinite !important;
  filter: drop-shadow(0 24px 40px rgba(11,95,165,0.20)) drop-shadow(0 8px 16px rgba(11,95,165,0.12)) !important;
}
@keyframes mbHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}


/* ==== Medical Billing improvements ==== */

/* Specialties chip hover — animated fill + arrow slide-in */
.mb-specialties .spec-strip a {
  position: relative;
  overflow: hidden;
  padding-right: 22px !important;
}
.mb-specialties .spec-strip a::after {
  content: "\2192";
  position: absolute;
  right: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: inherit;
  font-weight: 700;
}
.mb-specialties .spec-strip a:hover {
  padding-right: 34px !important;
}
.mb-specialties .spec-strip a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* FAQ hover-expand — matches landing page behavior */
.mb-faq .faq-item { content-visibility: visible !important; overflow: hidden; }
.mb-faq .faq-item > .faq-body { display: block !important; max-height: 0; overflow: hidden; transition: max-height 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
.mb-faq .faq-item[open] .faq-body { max-height: 300px; }
@media (hover: hover) and (min-width: 761px) {
  .mb-faq .faq-item:hover { box-shadow: var(--shadow-lift); border-color: rgba(11,95,165,0.22); }
  .mb-faq .faq-item:hover summary::after { transform: rotate(45deg); }
  .mb-faq .faq-item:hover .faq-body { max-height: 300px; }
}
.mb-faq .faq-item[open], .mb-faq .faq-item:hover {
  background: linear-gradient(135deg, rgba(11,95,165,0.05) 0%, rgba(46,125,209,0.03) 100%) !important;
  border-color: rgba(11,95,165,0.28) !important;
}
.mb-faq .faq-item[open] summary, .mb-faq .faq-item:hover summary { color: var(--blue) !important; }
.mb-faq .faq-item[open] summary::after, .mb-faq .faq-item:hover summary::after { color: var(--blue) !important; }


/* ==== Trust bar (mb-trust) — restore ==== */
.mb-trust { background: transparent; padding: 24px 0 32px; }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: center; }
@media (max-width: 900px) { .trust-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 500px) { .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; } }
.trust-item { text-align: center; padding: 6px 12px; border-left: 1px solid rgba(11,95,165,0.14); }
.trust-item:first-child { border-left: none; }
@media (max-width: 900px) { .trust-item { border-left: none; } }
.trust-num { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.trust-lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ==== Testimonial quote block (mb-quote) — restore ==== */
.mb-quote { padding: 90px 0; background: linear-gradient(180deg, #F5F8FA 0%, #EAF2FA 100%); }
.mb-quote .wrap > .quote-grid-2 { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; align-items: center; background: #fff; border-radius: 20px; padding: 50px 46px; box-shadow: 0 20px 50px rgba(11,95,165,0.10); border: 1px solid rgba(11,95,165,0.10); }
@media (max-width: 900px) { .mb-quote .wrap > .quote-grid-2 { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; } }
.mb-quote .metric-number { font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 5rem); font-weight: 700; line-height: 1; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; margin-bottom: 8px; }
.mb-quote .metric-number span { font-size: 0.5em; opacity: 0.7; }
.mb-quote .metric-label { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.mb-quote .metric-time { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.mb-quote .stars { color: #E8A33D; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px; }
.mb-quote blockquote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.5; color: var(--ink); margin: 0 0 22px; font-weight: 500; }
.mb-quote .quote-attrib { display: flex; align-items: center; gap: 14px; }
.mb-quote .attrib-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.86rem; font-weight: 700; box-shadow: 0 6px 16px rgba(11,95,165,0.28); flex-shrink: 0; }
.mb-quote .attrib-text { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); line-height: 1.5; }
.mb-quote .attrib-text strong { display: block; color: var(--blue); font-weight: 700; margin-bottom: 2px; }


/* ==== Force testimonial quote card visibility ==== */
.mb-quote .quote-grid-2 {
  display: grid !important;
  grid-template-columns: 0.7fr 1.3fr !important;
  gap: 60px !important;
  align-items: center !important;
  background: #fff !important;
  border-radius: 20px !important;
  padding: 50px 46px !important;
  box-shadow: 0 20px 50px rgba(11,95,165,0.10) !important;
  border: 1px solid rgba(11,95,165,0.10) !important;
}
@media (max-width: 900px) {
  .mb-quote .quote-grid-2 { grid-template-columns: 1fr !important; gap: 30px !important; padding: 36px 28px !important; }
}
.mb-quote blockquote { color: var(--ink) !important; opacity: 1 !important; }
.mb-quote .metric-label, .mb-quote .metric-time, .mb-quote .attrib-text { color: var(--ink-soft) !important; opacity: 1 !important; }
.mb-quote .attrib-text strong { color: var(--blue) !important; }


/* ==== Force testimonial gradient number + avatar ==== */
.mb-quote .metric-number {
  background: linear-gradient(135deg, #0B5FA5 0%, #2E7DD1 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 700 !important;
}
.mb-quote .metric-number span {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  opacity: 0.7 !important;
}
.mb-quote .attrib-avatar {
  background: linear-gradient(135deg, #0B5FA5 0%, #2E7DD1 100%) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  font-family: var(--font-mono) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 16px rgba(11,95,165,0.28) !important;
  flex-shrink: 0 !important;
}


/* ==== Contact info cards — floating + highlight ==== */
.contact-info .info-block {
  animation: contactCardFloat 4s ease-in-out infinite;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-info .info-block:nth-child(1) { animation-delay: 0s; }
.contact-info .info-block:nth-child(2) { animation-delay: 0.8s; }
.contact-info .info-block:nth-child(3) { animation-delay: 1.6s; }

@keyframes contactCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Highlight the last "Why practices switch to us" card */
.contact-info .info-block:last-child {
  background: linear-gradient(135deg, #0B5FA5 0%, #2E7DD1 100%) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 20px 50px rgba(11,95,165,0.30) !important;
  position: relative;
  overflow: hidden;
}
.contact-info .info-block:last-child::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info .info-block:last-child h3 {
  color: #fff !important;
  position: relative;
  z-index: 1;
}
.contact-info .info-block:last-child h3 svg {
  color: #6BB6E8 !important;
  stroke: #6BB6E8 !important;
}
.contact-info .info-block:last-child ul {
  position: relative;
  z-index: 1;
}
.contact-info .info-block:last-child ul li {
  color: rgba(255,255,255,0.82) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 10px 0;
}
.contact-info .info-block:last-child ul li:last-child {
  border-bottom: none;
}
.contact-info .info-block:last-child ul li span {
  color: rgba(255,255,255,0.72) !important;
}
.contact-info .info-block:last-child ul li b {
  color: #fff !important;
  font-weight: 700;
}


/* ==== Contact trust badges upgrade ==== */
.contact-trust { padding: 50px 0; position: relative; overflow: hidden; }
.contact-trust::before { content: ""; position: absolute; top: -100px; left: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(79,163,232,0.20) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.contact-trust::after { content: ""; position: absolute; bottom: -80px; right: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(46,125,209,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.contact-trust .wrap { position: relative; z-index: 1; }

.trust-badges {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 700px) { .trust-badges { grid-template-columns: 1fr 1fr !important; } }

.trust-badge {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 14px !important;
  padding: 20px 18px !important;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.trust-badge::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6BB6E8, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.trust-badge:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(107,182,232,0.35) !important;
}
.trust-badge:hover::before { transform: scaleX(1); }

.trust-badge svg {
  width: 24px !important;
  height: 24px !important;
  color: #6BB6E8 !important;
  margin-bottom: 10px !important;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: transform 0.3s ease;
}
.trust-badge:hover svg {
  transform: scale(1.08);
  background: rgba(107,182,232,0.22);
}
.trust-badge h4 {
  font-family: var(--font-body) !important;
  font-size: 0.94rem !important;
  color: #fff !important;
  margin-bottom: 6px !important;
  font-weight: 600 !important;
}
.trust-badge p {
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.72) !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
  line-height: 1.5;
}


/* ==== Active nav highlight ==== */
.nav-menu a.active { color: var(--blue) !important; position: relative; }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
}
.nav-menu a.active-parent { color: var(--blue) !important; }
.nav-menu .dropdown a.active {
  background: linear-gradient(135deg, rgba(11,95,165,0.08) 0%, rgba(46,125,209,0.06) 100%) !important;
  color: var(--blue) !important;
  font-weight: 600;
}
.nav-menu .dropdown a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-blue);
}
.nav-menu .dropdown a.active::after { display: none; }


/* ==== Credentialing App CTA button — highlighted with glow + shine ==== */
.btn-cred-app {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  background: rgba(47,176,140,0.06) !important;
  border: 1.5px solid rgba(47,176,140,0.35) !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(30,143,121,0.10), inset 0 1px 0 rgba(255,255,255,0.5) !important;
  text-shadow: none !important;
  background-image: linear-gradient(135deg, #0F6B54 0%, #1E8F79 45%, #2FB08C 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease !important;
  animation: none !important;
}

  80% { left: 160%; }
}

  50% { box-shadow: 0 12px 28px rgba(30,143,121,0.45), 0 0 22px rgba(47,176,140,0.35), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08); }
}
.btn-cred-app:hover {
  transform: translateY(-2px);
  border-color: rgba(47,176,140,0.60) !important;
  box-shadow: 0 8px 20px rgba(30,143,121,0.28), 0 0 20px rgba(47,176,140,0.25), inset 0 1px 0 rgba(255,255,255,0.6) !important;
}
.btn-cred-app svg { width: 16px !important; height: 16px !important; color: #1E8F79 !important; stroke: #1E8F79 !important; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(30,143,121,0.30)); animation: credIconPulse 2s ease-in-out infinite; }

/* Adjust nav actions layout so both buttons fit */
.nav-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 900px) {
  .btn-cred-app span { display: none; }
  .btn-cred-app {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  background: rgba(47,176,140,0.06) !important;
  border: 1.5px solid rgba(47,176,140,0.35) !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(30,143,121,0.10), inset 0 1px 0 rgba(255,255,255,0.5) !important;
  text-shadow: none !important;
  background-image: linear-gradient(135deg, #0F6B54 0%, #1E8F79 45%, #2FB08C 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease !important;
  animation: none !important;
}
}


/* Animated underline for cred-app link */


/* Icon pulse glow */
@keyframes credIconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 4px rgba(30,143,121,0.30)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 4px 10px rgba(47,176,140,0.60)); }
}

.btn-cred-app:hover {
  transform: translateY(-2px);
  border-color: rgba(47,176,140,0.60) !important;
  box-shadow: 0 8px 20px rgba(30,143,121,0.28), 0 0 20px rgba(47,176,140,0.25), inset 0 1px 0 rgba(255,255,255,0.6) !important;
}
.btn-cred-app:hover svg {
  animation-play-state: paused;
  transform: scale(1.15);
}


/* Pill background layer (since text uses gradient background-clip) */
.btn-cred-app::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47,176,140,0.06);
  border-radius: 999px;
  z-index: -1;
  transition: background 0.3s ease;
}
.btn-cred-app:hover::before {
  background: linear-gradient(135deg, rgba(15,107,84,0.14) 0%, rgba(47,176,140,0.14) 100%);
}


/* ==== Sticky navbar — always visible on scroll ==== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  background: rgba(245, 248, 250, 0.92) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11,95,165,0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 22px rgba(11,95,165,0.10);
  border-bottom-color: rgba(11,95,165,0.14);
}

/* Ensure body doesn't have overflow issues */
html { scroll-padding-top: 90px; }


/* ==== FINAL sticky navbar override ==== */
body header.site-header,
header.site-header,
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}
html, body { overflow-x: hidden; overflow-y: auto; }
main { overflow: visible !important; }


/* ==== Related Specialties / Services Section (Internal Linking) ==== */
.related-section { padding: 80px 0; background: linear-gradient(180deg, #F5F8FA 0%, #EAF2FA 100%); }
.related-section .section-head { text-align: center; margin-inline: auto; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin-inline: auto; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { display: flex; flex-direction: column; padding: 26px 24px; background: #fff; border: 1px solid rgba(11,95,165,0.12); border-radius: 16px; text-decoration: none; color: inherit; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease; position: relative; overflow: hidden; }
.related-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,95,165,0.14); border-color: rgba(11,95,165,0.30); }
.related-card:hover::before { transform: scaleX(1); }
.related-card-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); background: rgba(11,95,165,0.08); padding: 4px 10px; border-radius: 4px; font-weight: 700; margin-bottom: 14px; align-self: flex-start; }
.related-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; }
.related-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; margin: 0 0 16px; flex-grow: 1; }
.related-card-cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--blue); }
.related-card-cta svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.related-card:hover .related-card-cta svg { transform: translateX(4px); }


/* ==== Contact form status boxes ==== */
.form-status { margin-top: 18px; padding: 16px 18px; border-radius: 10px; font-family: var(--font-body); font-size: 0.92rem; line-height: 1.55; grid-column: 1 / -1; }
.form-status strong { display: block; margin-bottom: 4px; font-weight: 700; }
.form-status-success { background: linear-gradient(135deg, #E8F5F1 0%, #C7E8DD 100%); border: 1px solid rgba(47,176,140,0.35); color: #0F6B54; }
.form-status-success strong { color: #0F6B54; }
.form-status-error { background: linear-gradient(135deg, #FDF2E8 0%, #FCEBD5 100%); border: 1px solid rgba(232,163,61,0.35); color: #7A4E12; }
.form-status-error strong { color: #7A4E12; }
.form-status-error a { color: var(--blue); font-weight: 600; }
