/* ============================================
   CaseFunders Landing Page
   Brand: navy primary, gold accent, clean typography
   ============================================ */

:root {
  --navy: #0b2545;
  --navy-deep: #061a36;
  --navy-soft: #13315c;
  --navy-line: #1c3a6b;
  --accent: #d6a249;       /* warm gold for accents */
  --accent-deep: #b8852f;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-tint: #eef3fb;
  --ink: #0f1b2d;
  --ink-soft: #4a5a73;
  --ink-faint: #7a8aa3;
  --line: #e3e9f1;
  --line-strong: #c9d3e0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 1px 3px rgba(11,37,69,.08);
  --shadow-md: 0 4px 12px rgba(11,37,69,.08), 0 2px 4px rgba(11,37,69,.06);
  --shadow-lg: 0 20px 40px -12px rgba(11,37,69,.18), 0 8px 16px -8px rgba(11,37,69,.12);
  --container: 1180px;
  --gutter: 24px;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Inter", sans-serif;
  --font-display: "Inter", ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
h2 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.accent { color: var(--accent); }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .section-sub { font-size: 1.1rem; color: var(--ink-soft); margin-top: 14px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.22s ease,
              border-color 0.22s ease,
              color 0.22s ease;
}

/* shimmer sweep on all buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* Primary — navy */
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(11,37,69,.2);
}
.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(11,37,69,.35), 0 2px 6px rgba(11,37,69,.2);
  color: #fff;
}

/* Ghost — outlined on light bg */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(11,37,69,.25);
}

/* Ghost light — outlined on dark bg */
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 8px 24px rgba(255,255,255,.1);
}

/* ============ ANNOUNCE BAR ============ */
/* ============ ANNOUNCE BAR ============ */
.announce {
  background: #4bc572;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.announce-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.announce-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ NAV ============ */
.nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(11,37,69,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.brand img { height: 34px; }

/* links with animated underline */
.nav-links {
  display: flex;
  gap: 6px;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 12px;
  color: #4a5568;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a span {
  position: relative;
}
.nav-links a span::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: #4bc572;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--navy); background: rgba(75,197,114,0.06); }
.nav-links a:hover span::after { transform: scaleX(1); }

/* right side */
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #4a5568;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-cta .phone:hover { color: var(--navy); }

/* green pill demo button */
.nav-btn-demo {
  background: #4bc572;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(75,197,114,0.35);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.2s !important;
}
.nav-btn-demo:hover {
  background: #3aad5e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(75,197,114,0.45) !important;
  color: #fff !important;
}

.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.2s; border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,162,73,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: inline-block;
  background: var(--bg-tint);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.dynamic-headline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.hero h1 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.02em; margin-bottom: 22px; }
.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 3px;
  border-radius: 1px;
  animation: typeBlink 0.75s step-end infinite;
}
@keyframes typeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero .lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero .lede strong { color: var(--ink); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-phone {
  margin: -16px 0 24px;
  font-size: 0.88rem;
}
.hero-phone a {
  color: var(--navy);
  font-weight: 600;
}
.hero-phone a:hover { color: var(--accent-deep); }

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.trust-badge strong { color: var(--navy); font-weight: 600; }

/* Hero visual mock */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.hero-card-header {
  background: var(--bg-soft);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.dot-row { display: flex; gap: 6px; }
.dot-row i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line-strong);
}
.dot-row i:nth-child(1) { background: #ff6058; }
.dot-row i:nth-child(2) { background: #ffbe2e; }
.dot-row i:nth-child(3) { background: #29c941; }
.hero-card-body { padding: 24px; }
.hc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hc-line:last-of-type { border-bottom: none; }
.hc-label { color: var(--ink-faint); font-weight: 500; }
.hc-amount { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hc-strong { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.hc-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.hc-pill-green { background: var(--green-soft); color: var(--green); }
.hc-progress {
  margin-top: 18px;
  height: 6px;
  background: var(--bg-tint);
  border-radius: 999px;
  overflow: hidden;
}
.hc-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #34d399 100%);
  animation: fillBar 1.2s ease-out;
}
@keyframes fillBar { from { width: 0; } }
.hc-foot {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ============ STATS + TRUST BAR ============ */
.stats {
  padding: 44px 0 32px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(75,197,114,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  padding-bottom: 32px;
}
.stat {
  padding: 16px 24px;
}
.stat-divider {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 40%, #4bc572 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* trust row inside stats */
.stats-trust-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stats-trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.stats-trust-track {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.stats-logo-slot {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.stats-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============ ABA ============ */
.aba {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #e6edf8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.aba::before {
  content: "";
  position: absolute;
  top: 50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(214,162,73,.18) 0%, transparent 60%);
  pointer-events: none;
}
.aba-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.aba-icon {
  font-size: 3.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,162,73,.15);
  border: 1px solid rgba(214,162,73,.3);
  border-radius: 50%;
}
.aba .kicker { color: var(--accent); }
.aba h2 { color: #fff; margin-bottom: 18px; }
.aba p { color: #c0cce0; font-size: 1.05rem; max-width: 720px; }
.aba p strong { color: #fff; }
.aba-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.aba-list li { color: #c0cce0; font-size: 0.97rem; }
.aba-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(214,162,73,.4);
  padding-bottom: 2px;
  transition: 0.2s;
}
.aba-link:hover { color: #fff; border-color: #fff; }

/* ============ PROBLEM / WHY (cards) ============ */
.problem, .why, .options, .practice {
  padding: 100px 0;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-6 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: 0.2s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tint);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

.problem { background: var(--bg-soft); }

/* ============ HOW IT WORKS ============ */
.how { background: #fff; padding: 100px 0; }
.steps { display: flex; flex-direction: column; gap: 80px; max-width: 1040px; margin: 0 auto; }

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.step-reverse .step-text { order: 2; }
.step-reverse .step-img   { order: 1; }

.step-text {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 6px 16px rgba(11,37,69,.25);
  flex-shrink: 0;
}
.step-text-body h3 { margin-bottom: 10px; }
.step-text-body p  { margin: 0; color: var(--ink-soft); }

.step-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.step-img img { width: 100%; height: auto; border-radius: 0; box-shadow: none; }

.step-img-final {
  background: linear-gradient(145deg, #e8fdf1 0%, #f0fdf8 50%, #e6f9ef 100%);
  padding: 40px 32px;
  min-height: 320px;
}

/* wrap */
.funded-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 380px;
}

/* header badge */
.funded-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.funded-check {
  width: 44px; height: 44px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: fundedPulse 2.2s ease-out infinite;
}
@keyframes fundedPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  60%  { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.funded-title {
  font-weight: 700;
  font-size: 1rem;
  color: #15803d;
  letter-spacing: 0.01em;
}

/* main card */
.funded-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.06);
  width: 100%;
}
.funded-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.funded-amount {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.funded-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.funded-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: dotBlink 1.6s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.funded-account {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.funded-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 16px;
}
.funded-details { display: flex; flex-direction: column; gap: 10px; }
.funded-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}
.funded-row span:first-child { color: var(--ink-faint); }
.funded-row span:last-child { color: var(--ink); font-weight: 600; }

/* ============ MID CTA ============ */
.cta-mid {
  background: linear-gradient(135deg, #f9fafc 0%, #eef3fb 100%);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-mid h2 { margin-bottom: 12px; }
.cta-mid p { font-size: 1.08rem; max-width: 600px; margin: 0 auto 28px; }

/* ============ OPTIONS ============ */
.options { background: #07111f; }
.options-head { --kicker-color: #4bc572; }
.options-head .kicker { color: #4bc572; }
.options-head h2 { color: #fff; }
.options-head .section-sub { color: rgba(255,255,255,0.5); }

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

/* ---- base card ---- */
.option-card {
  background: #0f1e32;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}
.option-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

/* accent glow line at top */
.option-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.option-card--green .option-accent { background: linear-gradient(90deg, #22c55e, #4ade80); }
.option-card--blue  .option-accent { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.option-card--gold  .option-accent { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.option-card--green:hover { box-shadow: 0 20px 50px rgba(34,197,94,0.15); }
.option-card--blue:hover  { box-shadow: 0 20px 50px rgba(59,130,246,0.18); }
.option-card--gold:hover  { box-shadow: 0 20px 50px rgba(245,158,11,0.15); }

/* featured ring */
.option-card--featured {
  border-color: rgba(59,130,246,0.3);
  background: #0d1c32;
}

/* most popular badge */
.option-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* icon */
.option-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-card--green .option-icon { background: rgba(34,197,94,0.12); color: #4ade80; }
.option-card--blue  .option-icon { background: rgba(59,130,246,0.12); color: #60a5fa; }
.option-card--gold  .option-icon { background: rgba(245,158,11,0.12); color: #fbbf24; }

/* tag */
.option-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  width: fit-content;
}
.option-card--green .option-tag { background: rgba(34,197,94,0.12); color: #4ade80; }
.option-card--blue  .option-tag { background: rgba(59,130,246,0.12); color: #60a5fa; }
.option-card--gold  .option-tag { background: rgba(245,158,11,0.12); color: #fbbf24; }

.option-card h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.option-card p  { color: rgba(255,255,255,0.5); font-size: 0.93rem; margin: 0; line-height: 1.65; }

/* benefit list */
.option-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.option-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.option-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.option-card--green .option-list li::before { color: #4ade80; }
.option-card--blue  .option-list li::before { color: #60a5fa; }
.option-card--gold  .option-list li::before { color: #fbbf24; }

/* cta link */
.option-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 6px;
  transition: gap 0.2s ease, opacity 0.2s;
}
.option-card--green .option-cta { color: #4ade80; }
.option-card--blue  .option-cta { color: #60a5fa; }
.option-card--gold  .option-cta { color: #fbbf24; }
.option-cta:hover { gap: 10px; opacity: 0.85; }

/* ============ PRACTICE AREAS ============ */
.practice { background: #fff; }
.practice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.practice-pill {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: 0.18s;
}
.practice-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ============ PRICING ============ */
.pricing {
  background: var(--bg-soft);
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* ---- shared card base ---- */
.price-card {
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-card-footer { margin-top: auto; padding-top: 28px; }

/* ---- dark left card ---- */
.price-card-dark {
  background: #0d1f35;
  color: #e2eaf4;
}
.price-card-dark h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.price-card-dark .price-desc { color: #8ca0b8; margin-bottom: 22px; font-size: 0.95rem; }

/* ---- light right card ---- */
.price-card-light {
  background: #fff;
  border: 1px solid var(--line);
}
.price-card-light h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 10px; }
.price-card-light .price-desc { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.95rem; }

/* ---- label (replaces pill tag) ---- */
.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4bc572;
  margin-bottom: 14px;
}

/* ---- inset price box (dark card) ---- */
.price-inset {
  background: #071526;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.price-inset-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.price-inset-note {
  font-size: 0.84rem;
  color: #6b849e;
  line-height: 1.5;
  margin: 0;
}

/* ---- price numbers ---- */
.price-num-lg {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #4bc572;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card-light .price-num-lg { color: var(--navy); }
.price-unit-sm {
  font-size: 0.95rem;
  font-weight: 500;
  color: #8ca0b8;
}
.price-card-light .price-unit-sm { color: var(--ink-soft); }

/* ---- mini price boxes (light card) ---- */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.price-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
}
.price-fine {
  font-size: 0.81rem;
  color: var(--ink-faint);
  margin-top: 6px;
  line-height: 1.4;
}

/* ---- features list ---- */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li {
  font-size: 0.93rem;
  padding-left: 24px;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4bc572;
  font-weight: 700;
}
.price-card-dark .price-features li { color: #c0d0e0; }
.price-card-light .price-features li { color: var(--ink-soft); }

/* ---- buttons ---- */
.price-btn-green,
.price-btn-dark {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.22s ease;
}
.price-btn-green::after,
.price-btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.price-btn-green:hover::after,
.price-btn-dark:hover::after { transform: translateX(100%); }

.price-btn-green {
  background: #4bc572;
  color: #fff;
  box-shadow: 0 2px 8px rgba(75,197,114,.25);
}
.price-btn-green:hover {
  background: #3aad5e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(75,197,114,.4);
}
.price-btn-dark {
  background: #0d1f35;
  color: #fff;
  box-shadow: 0 2px 8px rgba(13,31,53,.2);
}
.price-btn-dark:hover {
  background: #1a3350;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(13,31,53,.4);
}

/* ============ NOT LITIGATION FINANCE ============ */
.not-litfin {
  background: #fff;
  padding: 70px 0;
}
.not-litfin-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 32px;
}
.not-litfin-x {
  width: 60px; height: 60px;
  background: #fff;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-litfin h3 { margin-bottom: 8px; color: #78350f; }
.not-litfin p { margin: 0; color: #92400e; font-size: 0.98rem; }

/* ============ DEMO CTA ============ */
.demo-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.demo-cta::before {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214,162,73,.12) 0%, transparent 60%);
  pointer-events: none;
}
.demo-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.demo-cta .kicker { color: var(--accent); }
.demo-cta-copy h2 { color: #fff; margin-bottom: 18px; }
.demo-cta-sub {
  font-size: 1.05rem;
  color: #c0cce0;
  line-height: 1.6;
  margin-bottom: 36px;
}
.demo-cta-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.demo-cta-contact-item { display: flex; flex-direction: column; gap: 3px; }
.demo-cta-contact-item a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.15s;
}
.demo-cta-contact-item a:hover { color: var(--accent); }
.demo-cta-contact-item span { color: #8a9ab8; font-size: 0.85rem; }

.demo-cta-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.demo-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.demo-check {
  width: 22px;
  height: 22px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.demo-cta-fine {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin: 14px 0 0;
}

/* ============ DEMO (legacy — kept for reference) ============ */
.demo {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 100px 0;
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.demo-copy h2 { margin-bottom: 16px; }
.demo-copy p { font-size: 1.05rem; margin-bottom: 28px; }
.demo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-list li {
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.demo-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.demo-contact strong { color: var(--navy); display: block; font-size: 1.02rem; }
.demo-contact span { color: var(--ink-faint); font-size: 0.88rem; }

.demo-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.demo-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.demo-sub { color: var(--ink-faint); margin-bottom: 24px; font-size: 0.95rem; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: 0.15s;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,37,69,.1);
}
.form-fine {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin: 16px 0 0;
}

/* ============ FAQ ============ */
.faq { background: #fff; padding: 100px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.2s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-body {
  padding: 0 26px 24px;
}
.faq-body p { margin-bottom: 1em; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--ink); font-weight: 600; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(214,162,73,.12) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p {
  color: #c0cce0;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 36px;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
  border-color: var(--accent);
}
.final-cta .btn-primary:hover { background: #e8b965; box-shadow: 0 10px 28px rgba(214,162,73,.45); transform: translateY(-3px); }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: #c0cce0;
  padding: 70px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-line);
}
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 10px;
  transition: 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col span { display: block; font-size: 0.92rem; color: #94a3b8; margin-bottom: 10px; line-height: 1.6; }
.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 20px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.75);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.footer-bottom-address { text-align: right; }

/* ============ BACK TO TOP ============ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
#backToTop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover { background: #1d4ed8; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .phone { display: none; }

  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform: none; max-width: 380px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-trust-row { flex-direction: column; gap: 14px; }

  .aba-inner { grid-template-columns: 1fr; gap: 24px; }
  .aba-list { grid-template-columns: 1fr; }

  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }

  .step {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-reverse .step-text { order: 1; }
  .step-reverse .step-img  { order: 2; }
  .step-img { min-height: 220px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }

  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-form { padding: 28px; }

  .demo-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-cta-card { padding: 28px 24px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .problem, .why, .options, .practice, .pricing, .demo, .demo-cta, .faq, .final-cta { padding: 70px 0; }

  .not-litfin-inner {
    grid-template-columns: 60px 1fr;
    padding: 24px;
    gap: 20px;
  }
  .not-litfin-x { width: 50px; height: 50px; font-size: 1.6rem; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .demo-contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-address { text-align: center; }
  .hero-cta .btn { width: 100%; }
  .step-num { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ============ STAR RATING BADGE ============ */
.trust-stars {
  background: #fffbeb;
  border-color: #fde68a;
  color: var(--ink-soft);
}
.trust-stars strong { color: #92400e; }


/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-soft);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-meta strong {
  display: block;
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-meta span {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ============ COMPARISON TABLE ============ */
.comparison {
  background: #fff;
  padding: 100px 0;
}
.comparison-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.comparison-table th {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg-soft);
  border-bottom: 2px solid var(--line-strong);
}
.comparison-table .cmp-feature-col {
  text-align: left;
  width: 40%;
  font-weight: 500;
  color: var(--ink-soft);
}
.comparison-table td.cmp-feature-col { color: var(--ink-soft); font-size: 0.93rem; }
.comparison-table .cmp-cf-col {
  background: rgba(75, 197, 114, 0.05);
}
.comparison-table th.cmp-cf-col {
  background: rgba(75, 197, 114, 0.08);
  color: var(--green);
}
.cmp-badge {
  display: inline-block;
  background: #4bc572;
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.cmp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}
.cmp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}
.cmp-partial {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.comparison-table tbody tr:hover { background: var(--bg-soft); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.cmp-footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ============ LEAD FORM (in demo-cta-card) ============ */
.lead-form-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.lead-form-sub {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.lead-form .form-row { margin-bottom: 14px; }
.lead-form .form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.req { color: #dc2626; }
.lead-form .form-row input,
.lead-form .form-row select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lead-form .form-row input:focus,
.lead-form .form-row select:focus {
  outline: none;
  border-color: #4bc572;
  box-shadow: 0 0 0 3px rgba(75, 197, 114, 0.15);
}
.form-submit-btn {
  margin-top: 6px;
  background: #4bc572 !important;
  color: #fff !important;
  border-color: #4bc572 !important;
  box-shadow: 0 2px 10px rgba(75,197,114,0.3) !important;
}
.form-submit-btn:hover {
  background: #3aad5e !important;
  box-shadow: 0 8px 24px rgba(75,197,114,0.4) !important;
}
.tcpa-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-faint);
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
}
.tcpa-disclaimer a { color: var(--navy); text-decoration: underline; }

/* Form success state */
.lead-form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 72px; height: 72px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.lead-form-success h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--ink); }
.lead-form-success p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1rem; }
.lead-form-success a { color: var(--navy); font-weight: 600; }

/* ============ MOBILE STICKY CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(11,37,69,0.1);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
}
.sticky-cta-text span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.sticky-cta-btn {
  background: #4bc572 !important;
  color: #fff !important;
  border-color: #4bc572 !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============ EXIT-INTENT POPUP ============ */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.exit-popup.active { display: flex; }
.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 54, 0.6);
  backdrop-filter: blur(4px);
}
.exit-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-lg);
  animation: exitSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes exitSlideIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}
.exit-close:hover { background: var(--line); color: var(--ink); }
.exit-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4bc572;
  margin-bottom: 12px;
}
.exit-box h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.exit-box p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 18px;
}
.exit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exit-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.exit-cta {
  background: #4bc572 !important;
  color: #fff !important;
  border-color: #4bc572 !important;
  box-shadow: 0 4px 14px rgba(75,197,114,0.35) !important;
}
.exit-cta:hover {
  background: #3aad5e !important;
  box-shadow: 0 8px 24px rgba(75,197,114,0.45) !important;
}
.exit-fine {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin: 12px 0 0;
}

/* ============ RESPONSIVE — NEW SECTIONS ============ */
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 0.88rem; }
  .exit-box { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .logo-bar-track { gap: 8px; }
  .logo-slot { font-size: 0.82rem; padding: 7px 16px; }
  .exit-box { padding: 28px 20px; }
  .exit-box h2 { font-size: 1.5rem; }
}
