  :root {
    /* Brand */
    --navy-900: #021a3d;   /* darker hero/contact panels */
    --navy-800: #042d62;   /* section headings + primary */
    --navy-700: #0c3f7c;
    --navy-600: #1a5497;
    --navy-50:  #E7EEF8;
    --green:    #1A8A68;   /* checkmarks + accent */
    --green-50: #E6F4EE;
    /* Neutrals */
    --bg:       #FFFFFF;
    --bg-alt:   #F7F9FB;   /* alternating section background */
    --bone:     #FBFCFD;
    --ink:      #1E2D3D;   /* body text */
    --ink-2:    #6B7C8D;   /* supporting text */
    --ink-3:    #95A2B0;   /* fainter labels */
    --line:     #E1E6EC;
    --line-2:   #ECEFF3;
    /* Legacy aliases (kept for minimal churn) */
    --paper:    #FFFFFF;
    --paper-2:  #F7F9FB;
    --brass:    #1A8A68;
    --brass-50: #E6F4EE;
    --success:  #1A8A68;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 500;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .serif { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
  h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: var(--navy-800); }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
  section { padding: 96px 0; }
  @media (max-width: 800px) { section { padding: 64px 0; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--green);
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--green);
  }
  .eyebrow.center::before { display: none; }
  .eyebrow.brass { color: #6FE3B5; }
  .eyebrow.brass::before { background: #6FE3B5; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14.5px;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
  .btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(15,37,71,0.5); }
  .btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
  .btn-ghost:hover { background: var(--bone); border-color: var(--navy-800); }
  .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.3); }
  .btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
  .btn-brass { background: var(--brass); color: #fff; border-color: var(--brass); }
  .btn-brass:hover { filter: brightness(0.95); transform: translateY(-1px); }
  .btn-light { background: #fff; color: var(--navy-800); border-color: rgba(255,255,255,0.2); }
  .btn-light:hover { background: var(--bone); }
  .btn .arrow { transition: transform .2s ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* HEADER */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-2);
    transition: background .2s ease, border-color .2s ease;
  }
  header:has(.mobile-menu.open) {
    background: rgba(2,26,61,0.4);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom-color: transparent;
  }
  header:has(.mobile-menu.open) .brand .wordmark { color: #fff; }
  header:has(.mobile-menu.open) .brand img { border-radius: 8px; box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }
  header:has(.mobile-menu.open) .menu-btn {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff;
  }
  body:has(.mobile-menu.open)::after {
    content: ""; position: fixed; inset: 0; z-index: 45;
    background: rgba(2,26,61,0.4);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    animation: menuBackdropIn .18s ease;
  }
  @keyframes menuBackdropIn { from { opacity: 0; } to { opacity: 1; } }
  nav.navbar {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 18px 0; gap: 24px;
  }
  .brand { grid-column: 1; display: flex; align-items: center; gap: 12px; justify-self: start; }
  .brand img { width: 58px; height: 58px; object-fit: contain; }
  .brand .wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 30px; color: var(--navy-800); letter-spacing: -0.02em; }
  .nav-links { grid-column: 2; display: flex; gap: 32px; justify-self: center; }
  .nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
  .nav-links a:hover { color: var(--navy-800); }
  .nav-right { grid-column: 3; display: flex; align-items: center; gap: 14px; justify-self: end; }
  /* TEMP: remove once Founding 5 is full */
  .nav-trucker-pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-50); padding: 7px 14px; border-radius: 999px; white-space: nowrap; transition: background .15s, color .15s; }
  .nav-trucker-pill:hover { background: var(--green); color: #fff; }
  .nav-phone { font-size: 14px; font-weight: 600; color: var(--navy-800); }
  .menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; background: transparent; border: 1px solid var(--line); color: var(--navy-800); font-size: 18px; }
  @media (max-width: 960px) {
    .nav-links, .nav-phone, .nav-cta, .nav-right .nav-trucker-pill { display: none; }
    .menu-btn { display: grid; place-items: center; }
  }
  .mobile-menu {
    display: none; flex-direction: column; gap: 4px; align-items: stretch;
    margin: 12px 16px 16px; padding: 14px;
    background: #fff; border: 1px solid var(--line-2); border-radius: 18px;
    box-shadow: 0 20px 40px -20px rgba(2,26,61,0.25);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 14px; border-radius: 10px; font-weight: 600; color: var(--navy-800); text-align: center; }
  .mobile-menu a:hover { background: var(--bone); }
  .mobile-menu a.btn { color: #fff; padding: 14px 22px; justify-content: center; margin-top: 6px; }
  .mobile-menu a.btn:hover { background: var(--navy-900); }

  /* CAPACITY BANNER */
  .capacity-banner { background: var(--brass); color: #fff; overflow: hidden; line-height: 1; }
  .capacity-inner {
    display: flex; align-items: center; gap: 14px; padding: 12px 28px;
    font-size: 14px; font-weight: 800; line-height: 1;
  }
  .capacity-badge {
    box-sizing: border-box; flex-shrink: 0; display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px; padding: 5px 13px;
    font-size: 12.5px; font-weight: 800; letter-spacing: 0.01em; white-space: nowrap; line-height: 1;
  }
  .capacity-scroll {
    flex: 1; min-width: 0; overflow: hidden; line-height: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  }
  .capacity-track { display: inline-flex; align-items: center; white-space: nowrap; line-height: 1; animation: capacityMarquee 16s linear infinite; }
  .capacity-track span { padding-right: 56px; font-weight: 800; }
  .capacity-banner:hover .capacity-track,
  .capacity-banner:active .capacity-track { animation-play-state: paused; }
  @keyframes capacityMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) {
    .capacity-track { animation: none; }
    .capacity-track span:nth-child(2) { display: none; }
  }
  @media (max-width: 560px) {
    .capacity-inner { padding: 12px 20px; font-size: 13px; gap: 10px; }
    .capacity-track { animation-duration: 12s; }
  }

  /* HERO */
  .hero { padding: 80px 0 56px; }
  .hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
  .hero h1 { font-size: clamp(40px, 6vw, 72px); margin: 22px 0 24px; letter-spacing: -0.03em; }
  .hero h1 .italic { color: var(--navy-700); }
  .hero h1 .brass-accent { color: var(--green); position: relative; display: inline-block; }
  .hero h1 .brass-accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px; background: var(--green-50); z-index: -1; }
  .hero .lead { font-size: 18px; color: var(--ink-2); max-width: 540px; margin-bottom: 32px; line-height: 1.6; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
  .hero-trust { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); }
  .hero-trust .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
  .hero-trust .flag-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
  .hero-trust .flag-row span { font-size: 14px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
  .hero-trust .flag-row span .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

  /* Hero visual - financial report mock */
  .hero-visual {
    position: relative;
  }
  .report-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 30px 60px -30px rgba(15,37,71,0.25), 0 8px 20px -10px rgba(15,37,71,0.08);
  }
  .report-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
  .report-head .t1 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
  .report-head .t2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy-800); margin-top: 4px; letter-spacing: -0.02em; }
  .report-head .period { font-size: 12px; color: var(--ink-3); }
  .pnl-rows { margin-top: 16px; }
  .pnl-row { display: grid; grid-template-columns: 1fr auto; padding: 9px 0; font-size: 14px; }
  .pnl-row.head { font-size: 11px; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid var(--line-2); font-weight: 600; }
  .pnl-row.total { border-top: 1px solid var(--line-2); margin-top: 6px; padding-top: 14px; font-weight: 700; font-size: 15px; color: var(--navy-800); }
  .pnl-row.total.positive { color: var(--green); }
  .pnl-row .num { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
  .pnl-row .num.neg { color: var(--ink-2); }
  .pnl-row .num.pos { color: var(--green); }
  .mini-chart { margin-top: 18px; display: flex; align-items: flex-end; gap: 6px; height: 64px; }
  .mini-chart .bar { flex: 1; height: var(--h, 50%); background: var(--navy-700); border-radius: 4px 4px 0 0; }
  .mini-chart .bar.brass { background: var(--green); }

  .float-kpi {
    position: absolute;
    background: var(--navy-900); color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 20px 40px -20px rgba(15,37,71,0.5);
  }
  .float-kpi .k1 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }
  .float-kpi .k2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 30px; margin-top: 4px; color: #fff; letter-spacing: -0.02em; }
  .float-kpi .k3 { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }
  .float-kpi.top-right { top: -22px; right: -22px; }
  .float-kpi.bot-left { bottom: -22px; left: -22px; background: #fff; color: var(--navy-800); border: 1px solid var(--line); }
  .float-kpi.bot-left .k1 { color: var(--ink-3); }
  .float-kpi.bot-left .k2 { color: var(--navy-800); }
  .float-kpi.bot-left .k3 { color: var(--green); }
  @media (max-width: 600px) { .float-kpi { position: static; margin: 14px 0; } .float-kpi.top-right { display: none; } }

  /* CREDIBILITY BAND */
  .cred {
    background: var(--navy-900); color: #fff;
    padding: 36px 0;
  }
  .cred-inner {
    display: flex; flex-direction: column; gap: 22px;
  }
  .cred-label {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 600;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .cred-label::after {
    content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.12); max-width: 320px;
  }
  @media (max-width: 600px) { .cred-label { font-size: 10px; letter-spacing: 0.14em; } }
  .cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: flex-start; }
  @media (max-width: 600px) { .cred-grid { gap: 12px; } }
  .cred-stat { display: flex; flex-direction: column; gap: 8px; }
  .cred-stat .n { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 44px; color: #fff; line-height: 1; letter-spacing: -0.025em; }
  .cred-stat .l { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.4; }
  @media (max-width: 600px) {
    .cred-stat .n { font-size: 26px; }
    .cred-stat .l { font-size: 10.5px; line-height: 1.35; }
  }
  @media (max-width: 360px) {
    .cred-stat .n { font-size: 22px; }
    .cred-stat .l { font-size: 10px; }
  }
  .cred-stat .l { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 8px; }

  /* GENERIC SECTION HEADER */
  .section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; margin-bottom: 56px; }
  .section-head.left { align-items: flex-start; text-align: left; }
  .section-head h2 { font-size: clamp(34px, 4.6vw, 56px); max-width: 760px; }
  .section-head .sub { color: var(--ink-2); max-width: 620px; font-size: 17px; line-height: 1.6; }

  /* WHO / HOW */
  .who-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; }
  @media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }
  .who-card {
    background: var(--bg-alt);
    border: 1px solid var(--line-2);
    border-radius: 22px;
    padding: 44px;
  }
  .who-card.dark { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
  .who-card.dark h3 { color: #fff; }
  .who-card.dark .step-list li { color: rgba(255,255,255,0.85); }
  .who-card.dark .step-num { background: rgba(26,138,104,0.16); color: #6FE3B5; border-color: rgba(26,138,104,0.35); }
  .who-card.dark .eyebrow { color: #6FE3B5; }
  .who-card.dark .eyebrow::before { background: #6FE3B5; }
  .who-card h3 { font-size: 36px; margin: 14px 0 16px; }
  .who-card p { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
  .who-card.dark p { color: rgba(255,255,255,0.78); }
  .who-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
  .tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13px; font-weight: 600; color: var(--ink-2); }
  .tag-pill .d { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
  .step-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
  .step-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 15.5px; font-weight: 500; }
  .step-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px;
    background: var(--green-50); color: var(--green);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-size: 13px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .step-list li .stxt { padding-top: 5px; }
  .step-list li .stxt b { font-weight: 700; color: #fff; display: block; }
  .step-list li .stxt span { color: var(--ink-2); font-size: 14px; font-weight: 500; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 22px; overflow: hidden; }
  @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
  .svc-card { background: #fff; padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; transition: background .2s; min-height: 240px; }
  .svc-card:hover { background: var(--bg-alt); }
  .svc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-50); color: var(--green); display: grid; place-items: center; margin-bottom: 14px; }
  .svc-card h3 { font-size: 24px; }
  .svc-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
  .svc-card .more { margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.04em; }

  /* PACKAGES */
  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
  @media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
  .pkg {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 32px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .pkg.feature { background: var(--navy-900); color: #fff; border-color: var(--navy-900); transform: translateY(-8px); }
  @media (max-width: 900px) { .pkg.feature { transform: none; } }
  .pkg .pkg-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy-800); letter-spacing: -0.02em; }
  .pkg.feature .pkg-name { color: #fff; }
  .pkg .pkg-tag { font-size: 14.5px; color: var(--ink-2); margin-top: 6px; font-weight: 500; line-height: 1.5; }
  .pkg.feature .pkg-tag { color: rgba(255,255,255,0.75); }
  .pkg .pkg-price { margin: 22px 0 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 36px; color: var(--navy-800); line-height: 1.1; letter-spacing: -0.025em; }
  .pkg.feature .pkg-price { color: #fff; }
  .pkg .pkg-price small { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: var(--ink-3); font-weight: 500; }
  .pkg.feature .pkg-price small { color: rgba(255,255,255,0.6); }
  .pkg .pkg-pricerange { font-size: 13px; color: var(--ink-3); font-weight: 500; margin-bottom: 24px; }
  .pkg.feature .pkg-pricerange { color: rgba(255,255,255,0.55); }
  .pkg ul { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 24px 0; border-top: 1px solid var(--line-2); }
  .pkg.feature ul { border-top-color: rgba(255,255,255,0.12); }
  .pkg ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; font-weight: 500; line-height: 1.5; }
  .pkg .check { color: var(--green); flex-shrink: 0; margin-top: 3px; }
  .pkg.feature .check { color: #6FE3B5; }
  .pkg .ideal {
    font-size: 12.5px; color: var(--ink-3); padding: 14px 0; border-top: 1px dashed var(--line);
    display: flex; flex-direction: column; gap: 4px;
  }
  .pkg.feature .ideal { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.12); }
  .pkg .ideal b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink-2); letter-spacing: 0.06em; font-size: 11px; text-transform: uppercase; }
  .pkg.feature .ideal b { color: #6FE3B5; }
  .pkg .pkg-cta { margin-top: auto; padding-top: 8px; }
  .pkg .pkg-cta .btn { width: 100%; }
  .pkg-ribbon {
    position: absolute; top: 24px; right: 24px;
    background: var(--green); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
  }

  /* HR + One-time */
  .hr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 72px; }
  @media (max-width: 800px) { .hr-grid { grid-template-columns: 1fr; } }
  .hr-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 36px; display: flex; flex-direction: column; }
  .hr-card h3 { font-size: 28px; }
  .hr-card .pkg-tag { font-size: 15px; color: var(--ink-2); margin-top: 8px; line-height: 1.6; max-width: 440px; }
  .hr-card .pkg-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 24px; margin: 18px 0 0; color: var(--navy-800); letter-spacing: -0.02em; }
  .hr-card ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; padding: 22px 0; margin-top: 18px; border-top: 1px solid var(--line-2); }
  .hr-card ul li { display: flex; gap: 10px; font-size: 14px; }
  @media (max-width: 540px) { .hr-card ul { grid-template-columns: 1fr; } }

  .onetime-wrap {
    margin-top: 24px;
    background: var(--navy-900);
    color: #fff; border-radius: 26px; padding: 48px;
  }
  .onetime-wrap h3 { color: #fff; font-size: 28px; margin: 12px 0 6px; }
  .onetime-wrap p.sub { color: rgba(255,255,255,0.7); }
  .onetime-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
  @media (max-width: 800px) { .onetime-grid { grid-template-columns: 1fr; } }
  .onetime-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column;
  }
  .onetime-icon {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
    background: rgba(111,227,181,0.14); color: #6FE3B5;
  }
  .onetime-card h4 { color: #fff; font-size: 21px; margin-bottom: 6px; }
  .onetime-card p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.55; }
  .pill-row { display: flex; gap: 10px; margin-top: 16px; }
  .pill-opt {
    flex: 1 1 0; display: inline-flex; align-items: center; gap: 10px; text-align: left;
    white-space: normal; padding: 12px 14px; border-radius: 14px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px; font-weight: 600; color: #fff; line-height: 1.35;
    transition: background .2s ease, border-color .2s ease;
  }
  .pill-opt:hover { background: rgba(111,227,181,0.1); border-color: rgba(111,227,181,0.35); }
  .pill-num {
    flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(111,227,181,0.18); color: #6FE3B5;
    font-size: 11px; font-weight: 800;
  }
  @media (max-width: 460px) { .pill-row { flex-direction: column; } }
  .onetime-footer {
    position: relative; margin-top: 36px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    text-align: center;
  }
  .onetime-footer .quote-line {
    display: flex; align-items: baseline; gap: 8px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .onetime-footer .quote-line .arrow { color: #6FE3B5; transition: transform .2s ease; }
  .onetime-footer .quote-line:hover .arrow { transform: translateX(3px); }
  .onetime-footer .quote-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
  .onetime-footer .price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: #6FE3B5; letter-spacing: -0.01em; }
  @media (max-width: 560px) {
    .onetime-wrap { padding: 28px 20px; }
    .onetime-card { padding: 22px; }
    .onetime-footer .quote-line {
      flex-direction: column; gap: 6px; align-items: center;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px; padding: 18px 32px;
    }
    .onetime-footer .quote-line:active { background: rgba(255,255,255,0.09); }
    .onetime-footer .quote-line .arrow { display: none; }
    .onetime-footer .quote-label { font-size: 11px; }
    .onetime-footer .price { font-size: 19px; }
  }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    transition: transform .2s, box-shadow .2s;
  }
  .why-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -25px rgba(4,45,98,0.16); border-color: var(--navy-50); }
  .why-card h3 { font-size: 22px; margin: 16px 0 6px; }
  .why-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
  .why-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; color: var(--green); letter-spacing: -0.02em; }

  /* TOOLS */
  .tools-section { background: var(--bg); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
  .marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
  .marquee-track { display: flex; gap: 14px; width: max-content; animation: scroll 50s linear infinite; padding: 8px 0; }
  .tool-pill {
    flex-shrink: 0; padding: 16px 24px; border-radius: 999px;
    border: 1px solid var(--line); background: #fff;
    display: flex; align-items: center; gap: 14px;
  }
  .tool-pill .ic {
    width: 32px; height: 32px; border-radius: 8px;
    display: grid; place-items: center;
    color: #fff; font-weight: 800; font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .tool-pill strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
  .tool-pill span { color: var(--ink-3); font-size: 12.5px; }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* INDUSTRIES MARQUEE */
  .industry-pill {
    flex-shrink: 0; padding: 16px 24px; border-radius: 999px;
    border: 1px solid var(--line); background: #fff;
    display: flex; align-items: center; gap: 14px;
    color: var(--navy-900); text-decoration: none;
    transition: border-color .2s ease;
  }
  .industry-pill:hover { border-color: var(--green); }
  .industry-pill .ic {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
    color: #fff; display: grid; place-items: center;
  }
  .industry-pill .ic svg { width: 18px; height: 18px; }
  .industry-pill strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--navy-900); white-space: nowrap; }
  .industry-pill.link { border-color: var(--green); background: var(--green-50); }
  .industry-pill.link strong { color: var(--navy-800); }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: flex-start; }
  @media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
  .faq-list { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line-2); }
  details.faq-item {
    border-bottom: 1px solid var(--line-2);
    overflow: hidden;
  }
  details.faq-item summary {
    padding: 22px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px; color: var(--navy-800);
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    letter-spacing: -0.015em;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary .plus {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
    border: 1px solid var(--line); display: grid; place-items: center;
    font-size: 16px; color: var(--navy-800); transition: transform .25s ease, background .2s;
  }
  details.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
  details.faq-item .answer { padding: 0 0 24px; color: var(--ink-2); font-size: 15px; line-height: 1.65; max-width: 640px; }

  /* CONTACT */
  .contact-section { background: var(--navy-900); color: #fff; }
  .contact-section h2 { color: #fff; }
  .contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: flex-start; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-left h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
  .contact-left .lead { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.6; max-width: 480px; margin-bottom: 36px; }
  .contact-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; }
  @media (max-width: 540px) { .contact-tiles { grid-template-columns: 1fr; } }
  .contact-tile {
    display: flex; gap: 14px; align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 18px;
    transition: background .2s, border-color .2s;
  }
  .contact-tile:hover { background: rgba(255,255,255,0.08); border-color: var(--green); }
  .contact-tile .ic { width: 36px; height: 36px; border-radius: 8px; background: rgba(26,138,104,0.18); color: #6FE3B5; display: grid; place-items: center; flex-shrink: 0; }
  .contact-tile .l1 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
  .contact-tile .l2 { font-size: 14.5px; font-weight: 600; color: #fff; margin-top: 2px; }

  .form-card {
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    padding: 36px;
  }
  .form-card h3 { font-size: 28px; margin-bottom: 6px; }
  .form-card p.sub { color: var(--ink-2); font-size: 14.5px; margin-bottom: 22px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .field label { font-size: 12px; font-weight: 700; color: var(--ink-2); letter-spacing: 0.06em; text-transform: uppercase; }
  .field input, .field textarea, .field select {
    border: 1px solid var(--line); border-radius: 10px;
    padding: 13px 14px; font-family: inherit; font-weight: 500; font-size: 15px;
    background: #fff; color: var(--ink); outline: none;
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--navy-800);
    box-shadow: 0 0 0 3px rgba(15,37,71,0.08);
  }
  /* Custom select (combobox) - replaces native <select> since browsers won't let CSS style the native options popup */
  .select-custom { position: relative; }
  .select-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
    border: 1px solid var(--line); border-radius: 10px;
    padding: 13px 14px; font-family: inherit; font-weight: 500; font-size: 15px; line-height: normal;
    background: #fff; color: var(--ink); cursor: pointer; text-align: left;
    transition: border-color .15s, box-shadow .15s;
  }
  .select-trigger .select-chevron { color: var(--ink-3); flex-shrink: 0; transition: transform .15s, color .15s; }
  .select-trigger[aria-expanded="true"] { border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(15,37,71,0.08); }
  .select-trigger[aria-expanded="true"] .select-chevron { transform: rotate(180deg); color: var(--navy-800); }
  .select-list {
    display: none; list-style: none;
    position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    box-shadow: 0 16px 32px -12px rgba(4,45,98,0.22);
    max-height: 240px; overflow-y: auto; padding: 6px;
  }
  .select-list.open { display: block; }
  .select-list li { padding: 10px 12px; border-radius: 7px; font-size: 14.5px; font-weight: 500; color: var(--ink); cursor: pointer; }
  .select-list li.active { background: var(--green-50); color: var(--navy-800); }
  .select-list li.selected { font-weight: 700; color: var(--navy-800); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }
  .form-card .btn { width: 100%; padding: 16px; margin-top: 8px; }
  .form-note { font-size: 12px; color: var(--ink-3); margin-top: 10px; text-align: center; }

  /* FOOTER */
  footer { background: var(--bg-alt); padding: 64px 0 32px; border-top: 1px solid var(--line-2); }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-2); }
  @media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
  .foot-brand p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; max-width: 320px; margin-top: 16px; }
  .foot-col h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; margin-bottom: 14px; }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col ul li a { font-size: 14.5px; color: var(--ink-2); }
  .foot-col ul li a:hover { color: var(--navy-800); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 14px; }
  .foot-bottom .mut { font-size: 13px; color: var(--ink-3); }
  .foot-socials { display: flex; gap: 8px; }
  .foot-socials a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all .15s; }
  .foot-socials a:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

  /* SAMPLE REPORTS */
  .reports-section { background: var(--bg-alt); }
  .reports-stack { display: flex; flex-direction: column; gap: 28px; }
  .dash {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 60px -40px rgba(4,45,98,0.25);
    overflow: hidden;
  }
  .dash-tab {
    background: #F1F4F8; border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 12px; padding: 12px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  }
  .dash-tab .dots { display: flex; gap: 6px; }
  .dash-tab .dots span { width: 10px; height: 10px; border-radius: 50%; background: #D6DCE4; }
  .dash-tab .dots span:nth-child(1) { background: #ED6A5E; }
  .dash-tab .dots span:nth-child(2) { background: #F5BD4F; }
  .dash-tab .dots span:nth-child(3) { background: #61C554; }
  .dash-tab .file { color: var(--ink); font-weight: 700; }
  .dash-body { padding: 28px; position: relative; }
  .dash-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy-800); letter-spacing: -0.025em; margin-bottom: 22px; }
  .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  @media (max-width: 720px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
  .kpi {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 16px 18px; display: flex; flex-direction: column; gap: 4px;
  }
  .kpi .lbl { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
  .kpi .val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; color: var(--navy-800); letter-spacing: -0.02em; }
  .kpi .val.green { color: var(--green); }
  .kpi .delta { font-size: 12px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
  .kpi .delta.down { color: #C8483E; }
  .kpi .delta.neutral { color: var(--ink-2); }

  .dash-body .row-2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; margin-top: 14px; }
  @media (max-width: 800px) { .dash-body .row-2 { grid-template-columns: 1fr; } }
  .panel {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 22px;
  }
  .panel h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy-800); margin-bottom: 16px; letter-spacing: -0.01em; }

  /* Bar chart */
  .bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 160px; padding-top: 8px; }
  .bar-chart .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; min-width: 0; }
  .bar-chart .col .bar-wrap { width: 100%; flex: 1; min-height: 0; display: flex; align-items: flex-end; }
  .bar-chart .col .bar { width: 100%; height: var(--h, 50%); background: var(--navy-700); border-radius: 4px 4px 0 0; position: relative; }
  .bar-chart .col.acc .bar { background: var(--green); }
  .bar-chart .col .lbl { font-size: 10.5px; color: var(--ink-2); font-weight: 600; flex-shrink: 0; }

  /* Donut */
  .donut-wrap { display: flex; align-items: center; gap: 22px; }
  .donut {
    width: 132px; height: 132px; border-radius: 50%;
    background: conic-gradient(var(--navy-800) 0 38%, var(--green) 38% 60%, #6FE3B5 60% 78%, #B7C6D8 78% 90%, #DDE3EB 90% 100%);
    position: relative; flex-shrink: 0;
  }
  .donut::after { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: #fff; }
  .donut .center { position: absolute; inset: 0; display: grid; place-items: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--navy-800); font-size: 17px; letter-spacing: -0.02em; z-index: 1; }
  .legend { display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .legend .item { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }
  .legend .item .lhs { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; }
  .legend .item .lhs .sw { width: 10px; height: 10px; border-radius: 3px; }
  .legend .item .rhs { font-weight: 700; color: var(--navy-800); font-variant-numeric: tabular-nums; }

  /* Line chart (SVG via CSS path) */
  .line-chart { position: relative; height: 160px; }
  .line-chart svg { width: 100%; height: 100%; display: block; }

  /* Data table */
  .data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
  .data-table th, .data-table td { padding: 10px 12px; text-align: left; }
  .data-table th { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--line); }
  .data-table td { border-bottom: 1px solid var(--line-2); color: var(--ink); font-weight: 500; }
  .data-table td.num { font-variant-numeric: tabular-nums; font-weight: 700; text-align: right; }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table .pos { color: var(--green); }
  .data-table .neg { color: #C8483E; }

  /* Top expenses horizontal bars */
  .hbars { display: flex; flex-direction: column; gap: 12px; }
  .hbar-row { display: grid; grid-template-columns: 90px 1fr 70px; gap: 12px; align-items: center; font-size: 12.5px; }
  .hbar-row .name { font-weight: 600; color: var(--ink); }
  .hbar-row .track { height: 10px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
  .hbar-row .track .fill { height: 100%; background: var(--navy-700); border-radius: 999px; }
  .hbar-row.acc .track .fill { background: var(--green); }
  .hbar-row .amt { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--navy-800); }

  /* Sample report CTA */
  .reports-foot {
    margin-top: 32px;
    background: var(--navy-900); color: #fff; border-radius: 18px;
    padding: 32px 36px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  }
  .reports-foot h3 { color: #fff; font-size: 24px; }
  .reports-foot p { color: rgba(255,255,255,0.7); margin-top: 4px; font-size: 14.5px; }

  /* TESTIMONIALS */
  .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 720px) { .testimonial-grid { grid-template-columns: 1fr; } }
  .testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 30px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .testimonial.dark { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
  .testimonial.dark .quote { color: #fff; }
  .testimonial.dark .who { color: rgba(255,255,255,0.7); }
  .testimonial.dark .who b { color: #fff; }
  .testimonial .stars { display: flex; gap: 2px; margin-bottom: 18px; color: var(--green); }
  .testimonial.dark .stars { color: #6FE3B5; }
  .testimonial .quote {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
    font-size: 17px; line-height: 1.55; color: var(--navy-800);
    letter-spacing: -0.01em;
    flex: 1;
  }
  .testimonial .who {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-2);
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; color: var(--ink-2);
  }
  .testimonial.dark .who { border-top-color: rgba(255,255,255,0.12); }
  .testimonial .who b { display: block; font-weight: 700; color: var(--navy-800); font-size: 14.5px; }
  .testimonial .who .av {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-50); color: var(--green);
    display: grid; place-items: center;
    font-weight: 800; font-size: 14px;
    flex-shrink: 0;
  }
  .testimonial.dark .who .av { background: rgba(111,227,181,0.15); color: #6FE3B5; }
  .testimonial .flag { margin-left: auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); }
  .testimonial.dark .flag { color: rgba(255,255,255,0.5); }

  /* TESTIMONIALS - SCROLLING MARQUEE */
  .testimonial-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    padding: 6px 0;
  }
  .testimonial-marquee + .testimonial-marquee { margin-top: 16px; }
  .testimonial-track {
    display: flex; gap: 20px; width: max-content;
    animation: tscroll 64s linear infinite;
  }
  .testimonial-track.reverse { animation-name: tscrollR; animation-duration: 72s; }
  .testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
  @keyframes tscroll { to { transform: translateX(-50%); } }
  @keyframes tscrollR { from { transform: translateX(-50%); } to { transform: none; } }
  .testimonial-marquee .testimonial {
    flex-shrink: 0;
    width: 380px;
    margin: 0;
  }
  @media (max-width: 600px) {
    .testimonial-marquee .testimonial { width: 300px; padding: 24px 22px; }
    .testimonial-marquee .testimonial .quote { font-size: 15.5px; }
    .testimonial-track { gap: 14px; animation-duration: 50s; }
    .testimonial-track.reverse { animation-duration: 58s; }
  }

  /* Misc utilities */
  .glow {
    position: absolute; pointer-events: none;
    width: 480px; height: 480px;
    background: radial-gradient(circle at center, rgba(184,144,85,0.18), transparent 60%);
    z-index: 0;
  }

  /* ===== ANIMATIONS ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal.delay-1 { transition-delay: .08s; }
    .reveal.delay-2 { transition-delay: .16s; }
    .reveal.delay-3 { transition-delay: .24s; }
    .reveal.delay-4 { transition-delay: .32s; }
    .reveal.delay-5 { transition-delay: .4s; }

    /* Hero entrance */
    .hero-grid > div:first-child > * {
      opacity: 0; transform: translateY(18px);
      animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards;
    }
    .hero-grid > div:first-child > *:nth-child(1) { animation-delay: .05s; }
    .hero-grid > div:first-child > *:nth-child(2) { animation-delay: .15s; }
    .hero-grid > div:first-child > *:nth-child(3) { animation-delay: .25s; }
    .hero-grid > div:first-child > *:nth-child(4) { animation-delay: .35s; }
    .hero-grid > div:first-child > *:nth-child(5) { animation-delay: .45s; }
    @keyframes heroIn { to { opacity: 1; transform: none; } }

    /* Hero visual floats */
    .hero-visual .report-card { opacity: 0; transform: translateY(24px) scale(.98); animation: cardIn .9s .2s cubic-bezier(.2,.7,.2,1) forwards; }
    .hero-visual .float-kpi.top-right { opacity: 0; transform: translateY(-10px) translateX(10px); animation: kpiInTR .7s .8s cubic-bezier(.2,.7,.2,1) forwards; }
    .hero-visual .float-kpi.bot-left { opacity: 0; transform: translateY(10px) translateX(-10px); animation: kpiInBL .7s 1s cubic-bezier(.2,.7,.2,1) forwards; }
    @keyframes cardIn { to { opacity: 1; transform: none; } }
    @keyframes kpiInTR { to { opacity: 1; transform: none; } }
    @keyframes kpiInBL { to { opacity: 1; transform: none; } }

    /* Subtle floating idle motion on KPI tiles */
    .hero-visual .float-kpi.top-right { animation: kpiInTR .7s .8s cubic-bezier(.2,.7,.2,1) forwards, floatA 6s 1.6s ease-in-out infinite; }
    .hero-visual .float-kpi.bot-left { animation: kpiInBL .7s 1s cubic-bezier(.2,.7,.2,1) forwards, floatB 7s 1.8s ease-in-out infinite; }
    @keyframes floatA { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
    @keyframes floatB { 0%, 100% { translate: 0 0; } 50% { translate: 0 6px; } }

    /* Bar chart grow */
    .bar-chart .col .bar { transform-origin: bottom; transform: scaleY(0); transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
    .bar-chart.is-visible .col .bar { transform: scaleY(1); }
    .bar-chart.is-visible .col:nth-child(1) .bar { transition-delay: .02s; }
    .bar-chart.is-visible .col:nth-child(2) .bar { transition-delay: .06s; }
    .bar-chart.is-visible .col:nth-child(3) .bar { transition-delay: .1s; }
    .bar-chart.is-visible .col:nth-child(4) .bar { transition-delay: .14s; }
    .bar-chart.is-visible .col:nth-child(5) .bar { transition-delay: .18s; }
    .bar-chart.is-visible .col:nth-child(6) .bar { transition-delay: .22s; }
    .bar-chart.is-visible .col:nth-child(7) .bar { transition-delay: .26s; }
    .bar-chart.is-visible .col:nth-child(8) .bar { transition-delay: .3s; }
    .bar-chart.is-visible .col:nth-child(9) .bar { transition-delay: .34s; }
    .bar-chart.is-visible .col:nth-child(10) .bar { transition-delay: .38s; }
    .bar-chart.is-visible .col:nth-child(11) .bar { transition-delay: .42s; }
    .bar-chart.is-visible .col:nth-child(12) .bar { transition-delay: .46s; }

    /* Horizontal bars */
    .hbar-row .track .fill { width: 0 !important; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
    .hbars.is-visible .hbar-row .track .fill { width: var(--w) !important; }
    .hbars.is-visible .hbar-row:nth-child(1) .fill { transition-delay: .05s; }
    .hbars.is-visible .hbar-row:nth-child(2) .fill { transition-delay: .12s; }
    .hbars.is-visible .hbar-row:nth-child(3) .fill { transition-delay: .19s; }
    .hbars.is-visible .hbar-row:nth-child(4) .fill { transition-delay: .26s; }
    .hbars.is-visible .hbar-row:nth-child(5) .fill { transition-delay: .33s; }

    /* Line chart draw */
    .line-chart svg path { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1); }
    .line-chart.is-visible svg path { stroke-dashoffset: 0; }
    /* fill paths shouldn't dash */
    .line-chart svg path[fill]:not([fill="none"]) { stroke-dasharray: none; stroke-dashoffset: 0; opacity: 0; transition: opacity .9s ease .6s; }
    .line-chart.is-visible svg path[fill]:not([fill="none"]) { opacity: 1; }

    /* Donut spin-in */
    .donut { transform: rotate(-90deg) scale(.85); opacity: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1), opacity .6s ease; }
    .donut.is-visible { transform: rotate(0) scale(1); opacity: 1; }

    /* Hover lifts */
    .kpi { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
    .kpi:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -16px rgba(4,45,98,0.2); border-color: var(--navy-50); }

    /* Marquee pause on hover */
    .marquee:hover .marquee-track { animation-play-state: paused; }
  }

  /* ===== DASHBOARD MOBILE ===== */
  @media (max-width: 720px) {
    .dash-body { padding: 18px 14px; }
    .dash-title { font-size: 20px; margin-bottom: 16px; }
    .kpi { padding: 14px; }
    .kpi .val { font-size: 22px; }
    .kpi .lbl { font-size: 10.5px; }
    .panel { padding: 16px 14px; }
    .panel h5 { font-size: 13.5px; margin-bottom: 12px; }
    .bar-chart { height: 130px; gap: 3px; }
    .bar-chart .col .lbl { font-size: 9px; }
    .donut-wrap { flex-direction: column; align-items: stretch; gap: 16px; }
    .donut { align-self: center; width: 110px; height: 110px; }
    .legend { width: 100%; }
    .data-table { font-size: 12.5px; }
    .data-table th, .data-table td { padding: 8px 10px; }
    .hbar-row { grid-template-columns: 64px 1fr 56px; font-size: 11.5px; gap: 8px; }
    .dash-body .row-2 { grid-template-columns: 1fr !important; gap: 12px; margin-top: 12px; }
    .dash-body .row-2 > .panel { min-width: 0; }
    /* force ALL kpi-row variants (including inline overrides) to 2 cols on mobile */
    .kpi-row, .kpi-row[style] { grid-template-columns: 1fr 1fr !important; gap: 10px; }
    .dash-tab { font-size: 11px; padding: 10px 14px; gap: 8px; }
    .dash-tab .dots span { width: 8px; height: 8px; }
    .dash-tab > span:last-child { display: none; }
    /* Hide labels for non-key bars on mobile to avoid crowding */
    .bar-chart .col:not(:nth-child(3n+1)):not(:last-child) .lbl { opacity: 0; }
    /* Make all data tables horizontally scrollable */
    .panel:has(.data-table) { padding: 16px 0 8px; position: relative; overflow: hidden; border-radius: 12px; }
    .panel:has(.data-table) h5 { padding: 0 14px; }
    .panel:has(.data-table)::after {
      content: ""; position: absolute; top: 44px; bottom: 8px; right: 0; width: 28px;
      background: linear-gradient(90deg, rgba(255,255,255,0), #fff);
      pointer-events: none;
    }
    .panel .data-table {
      display: block; overflow-x: auto; white-space: nowrap; padding: 0 14px;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .panel .data-table::-webkit-scrollbar { display: none; }
    .panel .data-table thead, .panel .data-table tbody { display: table; width: 100%; min-width: 360px; }
    .line-chart { height: 140px !important; }
  }

  /* Hero report mobile pass */
  @media (max-width: 600px) {
    .report-card { padding: 20px 18px 24px; }
    .report-head .t2 { font-size: 17px; }
    .report-head .t1 { font-size: 10px; letter-spacing: 0.12em; }
    .report-head .period { font-size: 11px; }
    .pnl-row { font-size: 12.5px; padding: 7px 0; }
    .pnl-row.head { font-size: 9.5px; letter-spacing: 0.08em; }
    .pnl-row.total { font-size: 13.5px; }
    .mini-chart { height: 150px; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-2); justify-content: center; }
    .mini-chart .bar { flex: none; width: 13%; border-radius: 4px 4px 0 0; }
  }

  @media (max-width: 480px) {
    .bar-chart { gap: 2px; height: 110px; }
    .reports-foot { padding: 24px 22px; flex-direction: column; align-items: flex-start; }
    .reports-foot h3 { font-size: 20px; }
    .dash-body { padding: 16px 12px; }
    .dash-title { font-size: 18px; }
    .kpi .val { font-size: 20px; }
    .panel { padding: 14px 12px; }
    .hbar-row { grid-template-columns: 56px 1fr 52px; font-size: 11px; gap: 6px; }
    .hbar-row .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  }

  /* Float KPIs mobile fix - keep BOTH visible, side-by-side under the card */
  .hero-kpi-wrap { display: contents; }
  @media (max-width: 600px) {
    .hero-visual { display: block; }
    .hero-kpi-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px;
    }
    .float-kpi {
      position: static !important; animation: none !important;
      padding: 14px 14px; border-radius: 12px;
      top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
    }
    .float-kpi.top-right { display: block; background: var(--navy-900); color: #fff; }
    .float-kpi.top-right .k1 { color: rgba(255,255,255,0.6); }
    .float-kpi.top-right .k2 { color: #fff; }
    .float-kpi.top-right .k3 { color: #6FE3B5; }
    .float-kpi .k2 { font-size: 24px; }
    .float-kpi .k1 { font-size: 10px; letter-spacing: 0.12em; }
    .float-kpi .k3 { font-size: 10.5px; }
  }

  /* General section spacing tightening on phones */
  @media (max-width: 480px) {
    section { padding: 56px 0; }
    .container { padding: 0 18px; }
    .hero { padding: 40px 0 24px; }
    .hero-grid { gap: 32px; }
    .who-card { padding: 28px 22px; }
    .pkg { padding: 28px 22px; }
    .testimonial { padding: 26px 22px; }
    .form-card { padding: 24px 20px; }
    .pkg-ribbon {
      position: static; display: inline-flex; align-items: center; align-self: flex-start;
      margin-bottom: 14px; font-size: 10px; padding: 6px 14px; letter-spacing: 0.12em;
    }
  }

  /* PKG GRID - 2-COLUMN VARIANT (trucking page pricing) */
  .pkg-grid-2col { grid-template-columns: 1fr; }
  @media (min-width: 900px) { .pkg-grid-2col { grid-template-columns: repeat(2, 1fr); } }
