/* ============================================================
   Bart marketing site — styles-v2.css
   Conversion-first template. Pill-heavy brand language,
   warm-white base + navy panels, blue CTA only.
============================================================ */

:root {
  --blue: #29B5FF;
  --blue-deep: #0B8FDB;
  --green: #2ED158;
  --red: #FE4D56;

  --bg: #FAFBFD;
  --navy: #191E29;
  --navy-2: #141820;

  --ink: #16212E;
  --muted: rgba(22, 33, 46, 0.66);
  --dim: rgba(22, 33, 46, 0.48);
  --faint: rgba(22, 33, 46, 0.36);

  --stroke-soft: rgba(22, 33, 46, 0.08);
  --stroke: rgba(22, 33, 46, 0.13);

  --container: 1140px;

  --shadow-1: 0 1px 2px rgba(22, 33, 46, 0.05), 0 4px 16px rgba(22, 33, 46, 0.06);
  --shadow-2: 0 2px 6px rgba(22, 33, 46, 0.06), 0 24px 56px -12px rgba(22, 33, 46, 0.18);
  --shadow-phone: 0 40px 90px -24px rgba(0, 0, 0, 0.55);

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "tnum" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ─── Deadline bar ────────────────────── */
.deadline-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
}
.deadline-bar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 6px 0;
}
.deadline-bar .count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  background: rgba(41, 181, 255, 0.12);
  border: 1px solid rgba(41, 181, 255, 0.35);
  border-radius: 9999px;
  padding: 3px 12px;
  white-space: nowrap;
}
.deadline-bar a {
  color: #FFFFFF;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.deadline-bar a:hover { border-bottom-color: #FFFFFF; color: #FFFFFF; }

/* ─── Header ──────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 251, 253, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.header.scrolled {
  border-bottom-color: var(--stroke-soft);
  box-shadow: 0 4px 24px rgba(22, 33, 46, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img.wordmark { height: 25px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color 150ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.signin { font-size: 14.5px; color: var(--muted); font-weight: 500; padding: 8px 12px; }
.signin:hover { color: var(--ink); }

/* ─── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(41, 181, 255, 0.35), 0 12px 28px -8px rgba(41, 181, 255, 0.55);
}
.btn-primary:hover {
  background: #14A9F8;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-ghost {
  background: #FFFFFF;
  color: var(--ink);
  border-color: var(--stroke);
  box-shadow: var(--shadow-1);
}
.btn-ghost:hover { border-color: rgba(22, 33, 46, 0.24); color: var(--ink); transform: translateY(-1px); }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn .arrow { width: 14px; height: 14px; transition: transform 150ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero (centred) ──────────────────── */
.hero {
  position: relative;
  padding: 84px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 420px at 50% -6%, rgba(41, 181, 255, 0.14), transparent 68%);
}
.hero .container { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid rgba(41, 181, 255, 0.45);
  box-shadow: 0 2px 10px rgba(41, 181, 255, 0.15);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 181, 255, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(41, 181, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 181, 255, 0); }
}
.hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin: 30px auto 22px;
  max-width: 900px;
}
.hero h1 .accent { color: var(--blue); }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-micro {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--dim);
}
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro svg { width: 14px; height: 14px; color: #17A344; }

/* ─── Showcase panel ──────────────────── */
.showcase {
  position: relative;
  margin-top: 64px;
  background: var(--navy);
  border-radius: 32px 32px 0 0;
  padding: 72px 40px 0;
  overflow: hidden;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 320px at 50% 0%, rgba(41, 181, 255, 0.22), transparent 70%),
    radial-gradient(420px 260px at 92% 90%, rgba(175, 63, 254, 0.10), transparent 70%);
}
.showcase .cap {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 0 44px;
}
.showcase .cap b { color: var(--blue); font-weight: 500; }
.showcase-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 48px;
}
.showcase .phone {
  position: relative;
  width: 272px;
  height: 496px; /* cropped at panel bottom */
  background: #10151F;
  border-radius: 46px 46px 0 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.10), var(--shadow-phone);
  padding: 8px 8px 0;
  flex-shrink: 0;
}
.showcase .phone .island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 25px;
  border-radius: 13px;
  background: #000;
  z-index: 2;
}
.showcase .phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 38px 38px 0 0;
  overflow: hidden;
  background: #191E29;
}
.showcase .phone .screen img {
  width: 100%;
  height: auto;
}
.showcase .phone.mid { margin-bottom: 0; }
.showcase .phone.side { opacity: 0.95; }
.showcase .step-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 9999px;
  padding: 5px 14px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(41, 181, 255, 0.6);
}

/* ─── Trust marquee ───────────────────── */
.marquee {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  overflow: hidden;
}
.marquee .track {
  display: flex;
  width: max-content;
}
.marquee .track-group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee .track { width: auto; }
  .marquee .track-group { animation: none; flex-wrap: wrap; justify-content: center; }
  .marquee .track-group[aria-hidden="true"] { display: none; }
  .hero-eyebrow .pulse { animation: none; }
}
.marquee .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.marquee .chip svg { width: 15px; height: 15px; color: var(--blue); }

/* ─── Sections ────────────────────────── */
.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.section.alt { background: #FFFFFF; border-top: 1px solid var(--stroke-soft); border-bottom: 1px solid var(--stroke-soft); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 16px;
}
.section-head p { font-size: 17px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── Steps ───────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.step {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 20px;
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-1);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(41, 181, 255, 0.35); }
.step .n {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFFFFF;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px -4px rgba(41, 181, 255, 0.55);
}
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 10px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── Feature rows ────────────────────── */
.feat {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 52px 0;
}
.feat.reverse { grid-template-columns: 1fr 1.05fr; }
.feat.reverse .text { order: 2; }
.feat .text .eyebrow { margin-bottom: 14px; }
.feat .text h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 16px;
}
.feat .text p.lead { font-size: 17px; color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.bullets li svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 50%;
  padding: 3px;
  margin-top: 1px;
}

.feat-art { position: relative; display: grid; place-items: center; min-height: 560px; }
.feat-art::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(41, 181, 255, 0.13), rgba(41, 181, 255, 0.03) 60%, transparent 72%);
}
.feat-art .phone {
  position: relative;
  width: 284px;
  height: 580px;
  background: #10151F;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.09), 0 40px 90px -20px rgba(22, 33, 46, 0.35);
  padding: 8px;
}
.feat-art .phone .island {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  border-radius: 13px;
  background: #000;
  z-index: 2;
}
.feat-art .phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #191E29;
}
.feat-art .phone .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ─── Comparison table ────────────────── */
.compare-wrap { max-width: 880px; margin: 0 auto; overflow-x: auto; }
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14.5px;
  border-top: 1px solid var(--stroke-soft);
}
.compare thead th { border-top: 0; padding: 20px; font-size: 14px; }
.compare th:first-child, .compare td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  width: 38%;
}
.compare thead th { color: var(--dim); font-weight: 600; }
.compare .col-bart {
  background: rgba(41, 181, 255, 0.07);
  font-weight: 600;
}
.compare thead .col-bart { color: var(--blue-deep); }
.compare thead .col-bart img { height: 20px; margin: 0 auto; }
.compare .yes, .compare .no, .compare .part {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
}
.compare .yes { background: rgba(46, 209, 88, 0.16); color: #17A344; }
.compare .no { background: rgba(22, 33, 46, 0.06); color: var(--faint); }
.compare .part { background: rgba(22, 33, 46, 0.06); color: var(--dim); width: auto; height: auto; border-radius: 9999px; padding: 3px 10px; font-size: 12px; }
.compare .yes svg, .compare .no svg { width: 13px; height: 13px; }
.compare tfoot td { font-weight: 700; color: var(--muted); }
.compare tfoot td.col-bart { color: var(--blue-deep); }
.compare-note { text-align: center; font-size: 12.5px; color: var(--faint); margin-top: 14px; }

/* ─── Eligibility ─────────────────────── */
.elig-card {
  background: #F2F7FC;
  border: 1px solid var(--stroke-soft);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.elig-card .left h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.elig-card .left p { font-size: 15.5px; color: var(--muted); margin: 0 0 24px; line-height: 1.6; }
.elig-card .left .micro { font-size: 13px; color: var(--dim); margin-top: 18px; line-height: 1.55; }
.elig-card .left .micro a { color: var(--blue-deep); border-bottom: 1px solid rgba(11, 143, 219, 0.4); }
.elig-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.elig-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  font-size: 14px;
  box-shadow: var(--shadow-1);
}
.elig-list li .pip {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(46, 209, 88, 0.16);
  color: #17A344;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.elig-list li .pip svg { width: 12px; height: 12px; }
.elig-list li.no .pip { background: rgba(254, 77, 86, 0.12); color: var(--red); }

/* ─── Eligibility checker (interactive form) ── */
.eligibility-card {
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}
.eligibility-progress {
  height: 4px;
  background: rgba(22, 33, 46, 0.08);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.eligibility-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #AF3FFE);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}
.eligibility-question { animation: fadeIn 0.3s ease; text-align: left; }
.eligibility-question h4 { font-size: 1.25rem; margin: 0 0 8px; color: var(--ink); }
.eligibility-question p { color: var(--muted); font-size: 0.9375rem; margin: 0 0 24px; }
.eligibility-question p a { color: var(--blue-deep); text-decoration: underline; }
.eligibility-options { display: flex; flex-direction: column; gap: 10px; }
.eligibility-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(22, 33, 46, 0.025);
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: var(--ink);
  font-family: inherit;
  width: 100%;
}
.eligibility-option:hover {
  border-color: rgba(41, 181, 255, 0.40);
  background: rgba(41, 181, 255, 0.06);
}
.eligibility-option-indicator {
  width: 22px;
  height: 22px;
  border: 2px solid var(--stroke);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.eligibility-option:hover .eligibility-option-indicator { border-color: var(--blue); }
.eligibility-option-text { flex: 1; }
.eligibility-option-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.9375rem;
}
.eligibility-option-text span {
  font-size: 0.875rem;
  color: var(--muted);
}
.eligibility-option.selected {
  border-color: var(--blue);
  background: rgba(41, 181, 255, 0.10);
}
.eligibility-option.selected .eligibility-option-indicator {
  border-color: var(--blue);
  background: var(--blue);
}
.eligibility-option.selected .eligibility-option-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
}
.eligibility-result { animation: fadeIn 0.3s ease; }
.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.result-icon.success {
  background: rgba(46, 209, 88, 0.10);
  border: 1px solid rgba(46, 209, 88, 0.25);
}
.result-icon.success svg { width: 36px; height: 36px; color: var(--green); }
.result-icon.warning {
  background: rgba(254, 77, 86, 0.10);
  border: 1px solid rgba(254, 77, 86, 0.25);
}
.result-icon.warning svg { width: 36px; height: 36px; color: var(--red); }
.eligibility-result h3 { font-size: 1.5rem; margin: 0 0 12px; color: var(--ink); }
.eligibility-result.eligible h3 { color: var(--blue-deep); }
.eligibility-result p {
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 420px;
  line-height: 1.6;
}
.ineligibility-reasons {
  list-style: none;
  text-align: left;
  background: rgba(22, 33, 46, 0.025);
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 auto 24px;
  max-width: 520px;
}
.ineligibility-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--stroke-soft);
  color: var(--ink);
  font-size: 0.9375rem;
}
.ineligibility-reasons li:last-child { border-bottom: none; }
.ineligibility-reasons li::before {
  content: '\00d7';
  color: var(--red);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}
.eligibility-restart,
.eligibility-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}
.eligibility-restart:hover,
.eligibility-back:hover { color: var(--blue-deep); }
.eligibility-back { margin-top: 20px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Pricing ─────────────────────────── */
.price-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.price-main { padding: 44px 48px; }
.price-main .badge {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(41, 181, 255, 0.10);
  border: 1px solid rgba(41, 181, 255, 0.35);
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: var(--mono);
  margin-bottom: 20px;
}
.price-main .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-main .price .currency { font-size: 32px; font-weight: 600; color: var(--muted); }
.price-main .price .num { font-size: 84px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-main .price .per { font-size: 18px; color: var(--muted); margin-left: 4px; }
.price-main .anchor { font-size: 14px; color: var(--dim); margin-bottom: 26px; }
.price-main .anchor b { color: var(--ink); font-weight: 600; }
.price-main .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.price-main .footnote { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

.price-side {
  background: #F2F7FC;
  border-left: 1px solid var(--stroke-soft);
  padding: 44px 40px;
}
.price-side h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
  margin: 0 0 20px;
}
.price-side ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.price-side ul li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink); }
.price-side ul li svg {
  width: 18px; height: 18px;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

/* ─── FAQ ─────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #FFFFFF;
  border: 1px solid var(--stroke-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.faq details[open] { border-color: rgba(41, 181, 255, 0.35); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(41, 181, 255, 0.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq summary .chev svg { width: 12px; height: 12px; color: var(--blue-deep); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}
.faq .a a { color: var(--blue-deep); border-bottom: 1px solid rgba(11, 143, 219, 0.4); }

/* ─── Final CTA ───────────────────────── */
.cta-band {
  position: relative;
  text-align: center;
  background: var(--navy);
  border-radius: 28px;
  padding: 84px 32px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 300px at 50% -10%, rgba(41, 181, 255, 0.28), transparent 70%),
    radial-gradient(420px 260px at 90% 100%, rgba(175, 63, 254, 0.12), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 14px;
  color: #FFFFFF;
}
.cta-band p { font-size: 17px; color: rgba(255, 255, 255, 0.7); max-width: 540px; margin: 0 auto 30px; }
.cta-band .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { background: rgba(255, 255, 255, 0.08); color: #FFFFFF; border-color: rgba(255, 255, 255, 0.22); box-shadow: none; }
.cta-band .btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }
.cta-band .micro { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ─── Footer ──────────────────────────── */
.footer { border-top: 1px solid var(--stroke-soft); padding: 64px 0 36px; background: #FFFFFF; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: 14px; color: var(--muted); margin: 0; max-width: 320px; line-height: 1.6; }
.foot-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col ul a { font-size: 14px; color: var(--muted); transition: color 150ms ease; }
.foot-col ul a:hover { color: var(--ink); }
.foot-legal { border-top: 1px solid var(--stroke-soft); padding-top: 28px; font-size: 12.5px; color: var(--faint); line-height: 1.65; }
.foot-legal a { color: var(--muted); }
.foot-legal a:hover { color: var(--ink); }

/* ─── Sticky mobile CTA ───────────────── */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--stroke-soft);
}
.mobile-cta .btn { width: 100%; }

/* ─── Cookie banner ───────────────────── */
.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cookie-banner-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--stroke-soft);
  box-shadow: 0 -8px 40px rgba(22, 33, 46, 0.12);
  z-index: 9999;
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.cookie-banner-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--blue-deep);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner .btn {
  height: 40px;
  padding: 0 18px;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.cookie-manage-link {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  transition: color 0.2s;
  text-decoration: underline;
  font-family: inherit;
}
.cookie-manage-link:hover { color: var(--blue-deep); }
.cookie-preferences {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--stroke-soft);
}
.cookie-preferences.visible { display: block; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--stroke-soft);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-info { flex: 1; }
.cookie-category-info strong {
  display: block;
  color: var(--ink);
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.cookie-category-info span {
  color: var(--muted);
  font-size: 0.75rem;
}
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 16px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(22, 33, 46, 0.15);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.30);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: rgba(41, 181, 255, 0.45);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: var(--blue);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-save-prefs {
  margin-top: 16px;
  text-align: right;
}

/* ─── Reveal animation ────────────────── */
.reveal { transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.js-ready .reveal { opacity: 0; transform: translateY(20px); }
.js-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ──────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 0; }
  .showcase { padding: 56px 24px 0; }
  .showcase-phones { gap: 24px; }
  .showcase .phone.side { display: none; }
  .showcase .phone.mid { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .feat, .feat.reverse { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feat.reverse .text { order: 0; }
  .feat-art { min-height: 520px; }
  .elig-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-side { border-left: 0; border-top: 1px solid var(--stroke-soft); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .section.tight { padding: 56px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 50px; }
  .price-main { padding: 32px 28px; }
  .price-main .price .num { font-size: 60px; }
  .price-side { padding: 32px 28px; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-cta .signin { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
  .eligibility-card { padding: 32px 24px; }
  .cookie-banner-main { flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
