*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

    body {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      color: #0f172a;
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── Typography ─── */
    h1, h2, h3, h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    /* ─── NAV ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ffffff;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    nav.scrolled {
      box-shadow: 0 1px 0 #e2e8f0;
      border-color: #e2e8f0;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; }
    .nav-logo-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #2F6FED;
      letter-spacing: -0.03em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #475569;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
    }

    .nav-links a:hover { color: #0f172a; background: #f1f5f9; }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .nav-signin {
      font-size: 14px;
      font-weight: 500;
      color: #2F6FED;
      text-decoration: none;
      padding: 8px 16px;
    }

    .nav-signin:hover { text-decoration: underline; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #2F6FED;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      white-space: nowrap;
    }

    .btn-primary:hover { background: #1E4E8C; transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }

    .btn-primary-lg {
      font-size: 16px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 100px;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: #2F6FED;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 13px 27px;
      border-radius: 100px;
      text-decoration: none;
      border: 1.5px solid #2F6FED;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    .btn-outline:hover { background: #eff6ff; }

    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      color: #2F6FED;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      white-space: nowrap;
    }

    .btn-white:hover { background: #f0f7ff; transform: translateY(-1px); }

    .btn-white-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 13px 27px;
      border-radius: 100px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }

    .btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      margin-left: auto;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #0f172a;
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: #ffffff;
      z-index: 999;
      padding: 80px 32px 40px;
      flex-direction: column;
      gap: 8px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 600;
      color: #0f172a;
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid #f1f5f9;
    }

    .mobile-menu a:hover { color: #2F6FED; }

    .mobile-menu .btn-primary { margin-top: 24px; width: 100%; font-size: 16px; padding: 14px 28px; justify-content: center; }

    /* ─── HERO ─── */
    .hero {
      background: #ffffff;
      padding: 48px 24px 80px;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .hero-right {
      max-width: 460px;
      margin-left: auto;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eff6ff;
      color: #2F6FED;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid #bfdbfe;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .hero-label::before {
      content: '';
      display: block;
      width: 7px;
      height: 7px;
      background: #2F6FED;
      border-radius: 50%;
    }

    .hero h1 {
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .hero h1 .amount {
      color: #dc2626;
    }

    .hero-subhead {
      font-size: 18px;
      font-weight: 400;
      color: #475569;
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 520px;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: fit-content;
      gap: 0;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .hero-trust {
      font-size: 11px;
      color: #475569;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      flex-wrap: nowrap;
      width: var(--hero-ctas-width, 100%);
      margin-top: 8px;
      text-align: center;
      letter-spacing: -0.01em;
    }
    .hero-trust span {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      line-height: 1.4;
    }
    .hero-trust span + span::before {
      content: '·';
      margin-right: 6px;
      color: #e2e8f0;
      font-size: 16px;
      line-height: 1;
    }

    /* ─── DASHBOARD MOCKUP ─── */
    .dashboard-mockup {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 20px 60px -10px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
      overflow: hidden;
      max-width: 440px;
      margin-left: auto;
    }

    .db-topbar {
      background: #f8fafc;
      border-bottom: 1px solid #e2e8f0;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .db-topbar-brand {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #0f172a;
    }

    .db-live-indicator {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      color: #16a34a;
    }

    .db-live-dot {
      width: 8px;
      height: 8px;
      background: #16a34a;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .db-body { padding: 20px 18px; }

    .db-section-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #94a3b8;
      margin-bottom: 4px;
    }

    .db-portfolio-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .db-portfolio-sub {
      font-size: 13px;
      color: #64748b;
      margin-bottom: 16px;
    }

    .db-status-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

    .db-status-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      border-radius: 8px;
      background: #f8fafc;
    }

    .db-status-row.recall-match {
      background: #fef2f2;
      border: 1px solid #fecaca;
    }

    .db-status-row-left {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #0f172a;
    }

    .db-status-icon { font-size: 16px; }

    .db-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .badge-green { background: #dcfce7; color: #15803d; }
    .badge-amber { background: #fef3c7; color: #d97706; }
    .badge-red { background: #fee2e2; color: #dc2626; }

    .db-divider { height: 1px; background: #e2e8f0; margin: 0 -18px 16px; }

    .db-alert {
      border-left: 3px solid #dc2626;
      background: #fff5f5;
      border-radius: 0 8px 8px 0;
      padding: 12px 14px;
    }

    .db-alert-header {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: #dc2626;
      margin-bottom: 4px;
    }

    .db-alert-title {
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .db-alert-meta {
      font-size: 12px;
      color: #64748b;
      margin-bottom: 10px;
    }

    .db-alert-link {
      font-size: 13px;
      font-weight: 600;
      color: #2F6FED;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .db-alert-link:hover { text-decoration: underline; }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: #0f172a;
      padding: 40px 24px;
    }

    .stats-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .stat-item { text-align: center; }

    .stat-item .stat-label { max-width: 160px; margin: 0 auto; }

    .stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(40px, 4.5vw, 56px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 13px;
      font-weight: 500;
      color: #94a3b8;
      line-height: 1.5;
      max-width: 220px;
      margin: 0 auto;
    }

    .stats-source {
      max-width: 1200px;
      margin: 16px auto 0;
      padding: 0 24px;
      text-align: center;
      font-size: 10px;
      color: #334155;
      opacity: 0.35;
    }

    /* ─── THREAT SECTION ─── */
    .threat-section {
      background: #ffffff;
      padding: 64px 24px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-headline {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      text-align: center;
    }

    .section-subhead {
      font-size: 17px;
      color: #64748b;
      text-align: center;
      line-height: 1.65;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .threat-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 36px;
      align-items: stretch;
    }

    .threat-card {
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 28px;
      transition: border-color 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .threat-card:hover {
      border-color: #bfdbfe;
      box-shadow: 0 8px 32px rgba(47,111,237,0.08);
    }

    .threat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      background: #eff6ff;
    }
    .threat-icon svg { display: block; }

    .threat-icon-red    { background: #eff6ff; }
    .threat-icon-amber  { background: #eff6ff; }
    .threat-icon-orange { background: #eff6ff; }

    .threat-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
      text-align: center;
    }

    .threat-card p {
      font-size: 15px;
      color: #475569;
      line-height: 1.65;
      text-align: left;
    }

    .warning-box {
      background: #fffbeb;
      border: 1.5px solid #fbbf24;
      border-radius: 12px;
      padding: 20px 24px;
      font-size: 15px;
      color: #78350f;
      line-height: 1.6;
      display: flex;
      gap: 12px;
    }

    .warning-box-icon { font-size: 20px; flex-shrink: 0; align-self: center; }

    /* ─── CASE STUDY ─── */
    .case-study-section {
      background: #ffffff;
      padding: 64px 24px;
    }

    .case-study-section .section-subhead {
      max-width: 600px;
    }

    .case-study-subhead {
      max-width: 600px;
      margin: 0 auto 56px;
      text-align: center;
      font-size: 17px;
      color: #64748b;
      line-height: 1.65;
    }

    .proof-stats-row {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 0;
      margin: 48px 0 36px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #cbd5e1;
      box-shadow: 0 4px 24px rgba(15,23,42,0.07);
    }

    .proof-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 40px 28px;
      border-right: 1px solid #cbd5e1;
    }

    /* body copy: centered to match card column layout */
    .proof-stat-support,
    .proof-stat-label {
      text-align: center;
      margin: 0 auto;
    }

    .proof-stat:last-child { border-right: none; }

    .proof-stat--anchor {
      background: #1e3a5f;
    }

    .proof-stat--context {
      background: #f8fafc;
    }

    /* Main point = big, first - anchor card */
    .proof-stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    /* Main point = big, first - context cards */
    .proof-stat-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .proof-stat-headline em {
      font-style: normal;
      color: #dc2626;
    }

    /* Supporting copy - always below the main point */
    .proof-stat-support {
      font-size: clamp(13px, 1.2vw, 14px);
      font-weight: 500;
      color: #64748b;
      line-height: 1.5;
      max-width: 210px;
      margin: 0 auto;
    }

    .proof-stat-modifier {
      display: block;
      font-size: clamp(13px, 1.2vw, 15px);
      font-weight: 700;
      color: #2563eb;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      line-height: 1;
    }

    .proof-stat-qualifier {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      line-height: 1;
      margin-bottom: 10px;
    }

    .proof-stat--context .proof-stat-qualifier {
      color: #94a3b8;
    }

    .proof-stat-label {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
      max-width: 200px;
      margin: 0 auto;
    }

    /* Active recalls - 2-card grid */
    .proof-active-recalls {
      margin-bottom: 28px;
    }

    .proof-active-recalls-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #dc2626;
      margin-bottom: 14px;
    }

    .proof-active-recalls-heading::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #dc2626;
      box-shadow: 0 0 0 3px rgba(220,38,38,0.25);
      flex-shrink: 0;
      animation: pulse-dot 1.8s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(220,38,38,0.25); }
      50% { box-shadow: 0 0 0 6px rgba(220,38,38,0.12); }
    }

    .proof-active-recalls-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .proof-recall-card {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      padding: 28px 28px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .proof-recall-card-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 800;
      color: #0f172a;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 2px;
      text-align: center;
    }

    .proof-recall-card-name {
      font-size: 11px;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      line-height: 1;
      text-align: center;
      margin-bottom: 12px;
    }

    .proof-recall-card-stat {
      font-size: 13px;
      font-weight: 600;
      color: #dc2626;
      line-height: 1.4;
      text-align: center;
    }

    .proof-recall-card-sub {
      font-size: 13px;
      font-weight: 500;
      color: #64748b;
      line-height: 1.45;
      text-align: center;
    }

    @media (max-width: 600px) {
      .proof-active-recalls-grid {
        grid-template-columns: 1fr;
      }
      .proof-recall-card-stat,
      .proof-recall-card-sub {
        text-align: left;
      }
    }

    .proof-cta-strip {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      padding: 20px 28px;
      background: #f8fafc;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }

    .proof-cta-strip-copy {
      font-size: clamp(17px, 1.6vw, 20px);
      font-weight: 700;
      color: #0f172a;
      line-height: 1.4;
      flex: 1;
      min-width: 220px;
    }

    .case-footnotes { display: none; }

    /* ─── AUTO-PILOT SECTION ─── */
    .autopilot-section {
      background: #f8fafc;
      padding: 64px 24px;
    }

    .autopilot-eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #2563eb;
      margin-bottom: 14px;
    }

    .autopilot-flow {
      display: grid;
      grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
      gap: 0;
      margin: 52px 0 56px;
      align-items: stretch;
    }

    .autopilot-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 0;
    }

    .autopilot-step-num {
      font-size: 80px;
      font-weight: 900;
      line-height: 1;
      color: #475569;
      -webkit-text-stroke: 0;
      margin-bottom: 8px;
      letter-spacing: -3px;
      font-family: inherit;
    }

    .autopilot-step.is-you .autopilot-step-num {
      color: #2563eb;
      -webkit-text-stroke: 0;
    }

    .autopilot-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 28px 20px 32px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .autopilot-step.is-you {
      border-color: #c7d7f0;
      background: #f4f8ff;
      box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    }

    .autopilot-step-icon { display: none; }

    .autopilot-step-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-radius: 4px;
      padding: 2px 7px;
      margin-bottom: 10px;
    }

    .autopilot-step.is-you .autopilot-step-tag {
      background: #dbeafe;
      color: #1d4ed8;
      border: 1px solid #93c5fd;
      font-size: 11px;
    }

    .autopilot-step:not(.is-you) .autopilot-step-tag {
      background: #e2e8f0;
      color: #475569;
      border: 1px solid #cbd5e1;
      font-size: 11px;
    }

    .autopilot-step-title {
      font-size: 17px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .autopilot-step.is-you .autopilot-step-title {
      color: #1d4ed8;
    }

    .autopilot-step-desc {
      font-size: 14px;
      color: #64748b;
      line-height: 1.6;
    }

    .autopilot-bottom {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 36px;
      align-items: center;
    }

    .autopilot-bottom-text strong {
      display: block;
      font-size: 17px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .autopilot-bottom-text span {
      font-size: 14px;
      color: #64748b;
      line-height: 1.65;
    }

    .autopilot-items {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
    }

    .autopilot-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13.5px;
      font-weight: 600;
      color: #0f172a;
      white-space: nowrap;
    }

    .autopilot-item svg { flex-shrink: 0; }

    @media (max-width: 900px) {
      .autopilot-flow {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
      .autopilot-arrow { display: none; }
      .autopilot-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .autopilot-item { white-space: normal; }
    }

    @media (max-width: 480px) {
      .autopilot-flow { grid-template-columns: 1fr; }
    }

    /* ── Global superscript ── */
    sup { font-size: 9px !important; vertical-align: super; line-height: 0; color: #94a3b8; font-weight: 600; }

    /* ── Page-bottom footnotes ── */
    .page-footnotes {
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      padding: 36px 24px 28px;
    }
    .page-footnotes-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .page-footnotes-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 14px;
    }
    .page-footnotes ol {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .page-footnotes ol li {
      font-size: 11px;
      color: #64748b;
      line-height: 1.65;
      padding: 5px 0 5px 20px;
      position: relative;
      border-bottom: 1px solid #e9edf2;
    }
    .page-footnotes ol li:last-child { border-bottom: none; }
    .page-footnotes ol li::before {
      content: attr(data-n);
      position: absolute;
      left: 0;
      top: 6px;
      font-size: 9px;
      font-weight: 700;
      color: #94a3b8;
    }

    /* ─── HOW IT WORKS ─── */
    .how-it-works-section {
      background: #f1f5f9;
      padding: 64px 24px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-bottom: 48px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, #2F6FED, #1E4E8C);
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #2F6FED, #1E4E8C);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
      margin: 0 auto 20px;
    }

    .step h3 {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .step p {
      font-size: 14px;
      color: #475569;
      line-height: 1.65;
      max-width: 240px;
      margin: 0 auto;
    }

    .how-cta { text-align: center; margin-top: 16px; margin-bottom: 0; }

    /* ─── FEATURES GRID ─── */
    .features-section {
      background: #f1f5f9;
      padding: 64px 24px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .feature-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 28px;
      transition: box-shadow 0.2s, border-color 0.2s;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      box-sizing: border-box;
    }
    .feature-card:hover {
      box-shadow: 0 8px 32px rgba(47,111,237,0.07);
      border-color: #bfdbfe;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #eff6ff, #dbeafe);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }
    .feature-icon svg { display: block; }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
      text-align: center;
    }

    .feature-card p {
      font-size: 14px;
      color: #475569;
      line-height: 1.65;
      text-align: center;
      width: 100%;
    }

    /* ─── GUARANTEE ─── */
    .guarantee-section {
      background: #0f172a;
      padding: 64px 24px;
      text-align: center;
    }

    .guarantee-label {
      display: block;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #93c5fd;
      margin-bottom: 16px;
      line-height: 1.1;
    }

    .guarantee-amount {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(56px, 8vw, 88px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 12px;
    }

    .guarantee-subtitle {
      font-size: 18px;
      font-weight: 500;
      color: #94a3b8;
      margin-bottom: 32px;
    }

    .guarantee-body {
      max-width: 640px;
      margin: 0 auto 56px;
      font-size: 17px;
      color: #cbd5e1;
      line-height: 1.7;
    }

    .guarantee-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 0 auto 48px;
    }

    .guarantee-col {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 28px 24px;
      text-align: center;
    }

    .guarantee-col-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .guarantee-col h3 {
      font-size: 16px;
      font-weight: 700;
      color: #f1f5f9;
      margin-bottom: 8px;
      text-align: center;
    }

    .guarantee-col p {
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.65;
      text-align: center;
    }

    .guarantee-fine {
      font-size: 12px;
      color: #475569;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ─── AB 628 EXPLAINER ─── */
    .ab628-section {
      background: #ffffff;
      padding: 64px 24px;
    }

    .ab628-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .ab628-intro { margin-bottom: 24px; }

    .ab628-section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #2F6FED;
      margin-bottom: 12px;
    }

    .ab628-headline {
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .ab628-subhead {
      font-size: 16px;
      color: #475569;
      margin-bottom: 28px;
    }

    .ab628-body {
      font-size: 15px;
      color: #475569;
      line-height: 1.75;
    }

    .ab628-body ul {
      list-style: none;
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ab628-body ul li {
      padding-left: 20px;
      position: relative;
    }

    .ab628-body ul li::before {
      content: '-';
      position: absolute;
      left: 0;
      color: #94a3b8;
    }

    .ab628-checklist-card {
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 28px;
    }

    .ab628-checklist-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 20px;
    }

    .ab628-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

    .ab628-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: #0f172a;
      font-weight: 500;
      line-height: 1.5;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      background: #16a34a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      font-size: 12px;
      margin-top: 1px;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: #2F6FED;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 100px;
      text-decoration: none;
      border: 1.5px solid #bfdbfe;
      cursor: pointer;
      transition: background 0.15s;
      width: 100%;
      text-align: center;
    }

    .btn-ghost:hover { background: #eff6ff; }

    /* ─── PRICING CALCULATOR ─── */
    .pricing-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto 32px;
    }

    .pricing-card {
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 14px;
      padding: 36px 28px;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
    }

    .pricing-card:hover {
      border-color: #2F6FED;
      box-shadow: 0 4px 16px rgba(47,111,237,0.1);
    }

    .pricing-card.popular {
      border: 2px solid #2F6FED;
      transform: scale(1.02);
      box-shadow: 0 4px 20px rgba(47,111,237,0.14);
      position: relative;
    }

    .pricing-card .tier-name {
      font-size: 15px;
      font-weight: 700;
      color: #64748b;
      margin-bottom: 4px;
    }

    .pricing-card .tier-range {
      font-size: 14px;
      color: #94a3b8;
      margin-bottom: 14px;
    }

    .pricing-card .tier-price {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #0f172a;
      line-height: 1;
    }

    .pricing-card .tier-price .cents {
      font-size: 22px;
      vertical-align: super;
    }

    .pricing-card .tier-period {
      font-size: 13px;
      color: #64748b;
      margin-bottom: 20px;
    }

    .pricing-card .tier-features {
      font-size: 12px;
      color: #475569;
      text-align: left;
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .pricing-card .tier-features li {
      padding: 3px 0;
      line-height: 1.5;
    }

    .pricing-card .tier-features li::before {
      content: '✓ ';
      color: #16a34a;
      font-weight: 600;
    }

    .pricing-card .popular-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: #2F6FED;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-card .btn-primary {
      width: 100%;
      font-size: 14px;
      padding: 12px 20px;
      margin-top: auto;
    }

    .pricing-section {
      background: #f8fafc;
      padding: 64px 24px;
    }

    .pricing-calculator {
      max-width: 680px;
      margin: 0 auto 56px;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 20px;
      padding: 40px 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    }

    .calc-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .calc-input {
      width: 100%;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #0f172a;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 16px 20px;
      outline: none;
      transition: border-color 0.15s;
      margin-bottom: 20px;
      background: #f8fafc;
    }

    .calc-input:focus { border-color: #2F6FED; background: #ffffff; }
    .calc-input::placeholder { color: #94a3b8; font-weight: 400; font-size: 18px; }

    .billing-toggle-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }

    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 44px;
      height: 24px;
      flex-shrink: 0;
    }

    .toggle-switch input { display: none; }

    .toggle-slider {
      position: absolute;
      cursor: pointer;
      inset: 0;
      background: #e2e8f0;
      border-radius: 100px;
      transition: background 0.2s;
    }

    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      top: 3px;
      left: 3px;
      transition: transform 0.2s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .toggle-switch input:checked + .toggle-slider { background: #2F6FED; }
    .toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

    .billing-toggle-label {
      font-size: 14px;
      font-weight: 500;
      color: #475569;
      cursor: pointer;
    }

    .billing-save-badge {
      font-size: 12px;
      font-weight: 600;
      color: #16a34a;
      background: #dcfce7;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .pricing-output {
      display: none;
      border-top: 1px solid #f1f5f9;
      padding-top: 28px;
      animation: fadeIn 0.2s ease;
    }

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

    .rate-display-row {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 20px;
    }

    .rate-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: #2F6FED;
      line-height: 1;
    }

    .rate-period {
      font-size: 16px;
      font-weight: 500;
      color: #94a3b8;
      align-self: flex-end;
      padding-bottom: 6px;
    }

    .pricing-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

    .pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
    }

    .pricing-row-label { color: #64748b; font-weight: 400; }
    .pricing-row-value { font-weight: 600; color: #0f172a; }

    .savings-badge {
      display: none;
      background: #dcfce7;
      color: #15803d;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 10px;
      text-align: center;
    }

    .enterprise-cta {
      display: none;
      background: linear-gradient(135deg, #eff6ff, #f0fdf4);
      border: 1.5px solid #bfdbfe;
      border-radius: 12px;
      padding: 24px 28px;
      text-align: center;
    }

    .enterprise-cta h3 {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .enterprise-cta p {
      font-size: 14px;
      color: #475569;
      margin-bottom: 16px;
    }

    /* pricing-table CSS removed - table not rendered in current layout */

    .pricing-note {
      max-width: 720px;
      margin: 24px auto 0;
      font-size: 14px;
      color: #64748b;
      text-align: center;
      line-height: 1.6;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      background: #ffffff;
      padding: 64px 24px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .testimonial-card {
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      padding: 40px 28px 28px;
      position: relative;
      transition: box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      outline: none;
    }

    .testimonial-card:hover {
      box-shadow: 0 8px 32px rgba(47,111,237,0.08);
    }
    .testimonial-card:focus {
      outline: none;
    }

    .quote-mark {
      position: absolute;
      top: 24px;
      left: 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 80px;
      font-weight: 800;
      color: #eff6ff;
      line-height: 1;
      user-select: none;
    }

    .testimonial-text {
      font-size: 15px;
      color: #334155;
      line-height: 1.75;
      margin-bottom: 0;
      position: relative;
      z-index: 1;
      padding-top: 0;
    }

    .testimonial-author {
      border-top: 1px solid #f1f5f9;
      padding-top: 18px;
      margin-top: 24px;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
    }

    .testimonial-role {
      font-size: 13px;
      color: #94a3b8;
      margin-top: 2px;
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: #f8fafc;
      padding: 64px 24px;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid #e2e8f0;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      transition: color 0.15s;
    }

    .faq-question:hover { color: #2F6FED; }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #94a3b8;
      transition: transform 0.25s;
    }

    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-item.open .faq-question { color: #2F6FED; }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer-inner {
      padding: 0 0 24px;
      font-size: 15px;
      color: #475569;
      line-height: 1.75;
    }

    /* ─── DEMO / CALENDLY SECTION ─── */
    .demo-section {
      background: #ffffff;
      padding: 64px 24px;
    }

    .demo-section .section-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .demo-section .section-headline {
      margin-bottom: 12px;
    }

    .demo-section .section-subhead {
      margin-bottom: 40px;
    }

    .calendly-inline-widget {
      border-radius: 12px;
      overflow: hidden;
    }

    /* ─── FINAL CTA ─── */
    .final-cta-section {
      background: linear-gradient(135deg, #2F6FED 0%, #1E4E8C 100%);
      padding: 64px 24px;
      text-align: center;
    }

    .final-cta-headline { max-width: 800px; margin-left: auto; margin-right: auto; }

    .final-cta-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 18px;
    }

    .final-cta-subhead {
      font-size: 18px;
      color: rgba(255,255,255,0.82);
      line-height: 1.65;
      max-width: 580px;
      margin: 0 auto 40px;
    }

    .final-cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .final-trust {
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0 8px;
    }

    .final-trust span { display: inline-flex; align-items: center; gap: 4px; }
    .final-trust span::before { content: '·'; }
    .final-trust span:first-child::before { content: ''; }

    /* ─── FOOTER ─── */
    footer {
      background: #0f172a;
      padding: 64px 24px 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
      margin-bottom: 0;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #ffffff;
      letter-spacing: -0.03em;
      display: inline-block;
      margin-bottom: 12px;
    }

    .footer-tagline {
      font-size: 14px;
      color: #475569;
      max-width: 280px;
      line-height: 1.6;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 20px;
    }

    .footer-links a {
      font-size: 14px;
      font-weight: 500;
      color: #64748b;
      text-decoration: none;
      white-space: nowrap;
    }

    .footer-links a:hover { color: #94a3b8; }

    .lm-submit-btn {
      width: 100%;
      padding: 14px;
      background: #2563eb;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lm-submit-btn:hover { background: #1d4ed8; }

    .footer-citations {
      padding: 24px 0 28px;
      margin-bottom: 0;
    }
    .footer-citations-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #334155;
      margin-bottom: 14px;
    }
    .footer-citations-list {
      list-style: none;
      margin: 0;
      padding: 0;
      columns: 2;
      column-gap: 40px;
    }
    .footer-citations-list li {
      font-size: 10px;
      color: #334155;
      line-height: 1.6;
      padding: 4px 0 4px 16px;
      position: relative;
      break-inside: avoid;
    }
    .footer-citations-list li::before {
      content: attr(data-n);
      position: absolute;
      left: 0;
      top: 5px;
      font-size: 9px;
      font-weight: 700;
      color: #475569;
    }

    .footer-bottom {
      font-size: 12px;
      color: #334155;
      line-height: 1.7;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 20px;
    }

    .footer-bottom a { color: #475569; text-decoration: none; }
    .footer-bottom a:hover { text-decoration: underline; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .steps-grid::before { display: none; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-signin { display: none; }
      .hamburger { display: flex; }
      .nav-actions .btn-primary { display: none; }

      /* Hero */
      .hero { padding: 48px 16px 56px; }
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-right { margin-left: auto; margin-right: auto; max-width: 380px; }
      .dashboard-mockup { margin: 0 auto; max-width: 100%; }
      .hero-cta-group { align-items: center; width: 100%; }
      .hero-ctas { flex-direction: column; gap: 12px; align-items: stretch; width: 100%; }
      .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
      .hero-trust { width: 100%; justify-content: center; }
      .hero-trust { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }

      /* Stats bar */
      .stats-bar { padding: 32px 16px; }
      .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

      /* Sections - reduce padding on mobile */
      .threat-section, .case-study-section, .how-it-works-section,
      .features-section, .autopilot-section, .guarantee-section,
      .ab628-section, .pricing-section, .testimonials-section,
      .faq-section, .final-cta-section, .demo-section { padding: 48px 16px; }

      .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-card.popular { transform: none; }

      /* Section text */
      .section-subhead { font-size: 15px; margin-bottom: 36px; }

      /* Threat */
      .threat-cards { grid-template-columns: 1fr; }

      /* Case study */
      .proof-stats-row { flex-direction: column; border-radius: 12px; }
      .proof-stat { border-right: none; border-bottom: 1px solid #cbd5e1; padding: 28px 20px; }
      .proof-stat:last-child { border-bottom: none; }
      .proof-active-recalls-grid { grid-template-columns: 1fr; }
      .proof-cta-strip { flex-direction: column; gap: 16px; text-align: center; }
      .proof-cta-strip-copy { min-width: unset; }

      /* How it works */
      .steps-grid { grid-template-columns: 1fr; gap: 24px; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }

      /* Autopilot */
      .autopilot-flow { grid-template-columns: 1fr 1fr; gap: 24px; }
      .autopilot-arrow { display: none; }
      .autopilot-bottom { grid-template-columns: 1fr; gap: 16px; }

      /* Guarantee */
      .guarantee-cols { grid-template-columns: 1fr; gap: 16px; }
      .guarantee-section { padding: 48px 16px; }

      /* AB 628 */
      .ab628-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 0; }
      .ab628-section { padding: 48px 16px; }

      /* Pricing */
      .pricing-calculator { padding: 24px 16px; }
      .rate-display-row { flex-wrap: wrap; justify-content: center; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr; }

      /* FAQ */
      .faq-item { padding: 18px 0; }

      /* Final CTA */
      .final-cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
      .final-cta-btns a { width: 100%; text-align: center; justify-content: center; }
      .final-trust { flex-direction: column; gap: 6px; align-items: center; }
      .final-trust span::before { content: ''; }
      .final-trust span:first-child::before { content: ''; }

      /* Footer */
      .footer-top { flex-direction: column; gap: 28px; }
      .footer-citations-list { columns: 1; }
    }

    @media (max-width: 480px) {
      .pricing-cards-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
      .pricing-card.popular { transform: none; }

      /* Nav */
      .nav-inner { padding: 0 14px; }

      /* Hero */
      .hero { padding: 36px 14px 48px; }
      .hero h1 { font-size: 30px; }
      .hero-label { font-size: 11px; }

      /* Stats */
      .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
      .stat-value { font-size: 28px; }

      /* Autopilot - single col on very small screens */
      .autopilot-flow { grid-template-columns: 1fr; }

      /* Guarantee */
      .guarantee-amount { font-size: 48px; }
      .guarantee-label { font-size: clamp(20px, 6vw, 28px); }
      .guarantee-subtitle { font-size: 15px; white-space: normal; }
      .guarantee-body { font-size: 15px; text-align: left; }
      .guarantee-col { text-align: left; }
      .guarantee-col-icon { justify-content: center; margin: 0 auto 16px; }
      .guarantee-col h3 { text-align: center; }
      .guarantee-col p { text-align: left; }

      /* Pricing */
      .rate-value { font-size: 38px; }

      /* Sections */
      .section-headline { font-size: clamp(22px, 7vw, 32px); }
      .how-it-works-headline { max-width: 480px; margin-left: auto; margin-right: auto; }
      .section-subhead { font-size: 14px; }
      .case-study-subhead { text-align: left; font-size: 15px; }

      /* Proof stats - tighten */
      .proof-stat { padding: 22px 16px; }

      /* Cards - reduce padding */
      .threat-card, .feature-card, .testimonial-card, .guarantee-col { padding: 20px 16px; }
      .testimonial-text { font-size: 13px; line-height: 1.7; }
      .testimonial-text div[style*="text-align:center"] { text-align: left !important; }
      .testimonial-subhead { text-align: left !important; }
      .proof-recall-card { padding: 18px 16px; }

      /* Footer citations */
      .footer-citations-list { columns: 1; }

      /* Overflow safety */
      body { overflow-x: hidden; }
      img, video, iframe { max-width: 100%; }
    }