
  :root {
    --blue:        #21438D;
    --blue-lite:   #3D6FB3;
    --blue-soft:   #E8EEF8;
    --blue-tint:   #F2F5FB;
    --cream:       #F5EFE4;
    --cream-deep:  #EDE5D2;
    --navy:        #0F2347;
    --navy-soft:   #1A2F5C;
    --ink:         #0F2347;
    --muted:       #6B7280;
    --line:        #E6E2D8;
    --line-white:  #ECEFF4;
    --orange:      #F5A623;
    --orange-deep: #E09415;
    --white:       #FFFFFF;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.6;
  }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; }
  a { color: inherit; text-decoration: none; }

  /* layout */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }

  /* wordmark */
  .wordmark {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--blue);
    display: inline-block;
    user-select: none;
  }
  .wordmark b { font-weight: 700; letter-spacing: 0.08em; }
  .wordmark.light { color: #fff; }

  .wordmark-img {
    height: 26px;
    width: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
  }
  .wordmark-img.light {
    filter: brightness(0) invert(1);
  }

  /* eyebrow label */
  .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
  }
  .eyebrow.lite { color: #8FA8D3; }

  /* headlines */
  .h-hero {
    font-weight: 700;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 0;
    text-wrap: balance;
  }
  .h-hero .accent { color: var(--blue-lite); }

  .h-section {
    font-weight: 700;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--navy);
    margin: 12px 0 18px;
    text-wrap: balance;
  }
  .h-section.light { color: #fff; }
  .dealer-h { font-size: clamp(26px, 2.7vw, 38px); letter-spacing: -0.02em; }
  .dealer-h .title-line { display: block; white-space: nowrap; }

  /* buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
  .btn-primary { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(33,67,141,.2); }
  .btn-primary:hover { background: #1B3878; box-shadow: 0 8px 24px -8px rgba(33,67,141,.5); }
  .btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
  .btn-outline:hover { background: var(--blue); color: #fff; }
  .btn-orange { background: var(--orange); color: #fff; box-shadow: 0 2px 6px rgba(245,166,35,.3); position: relative; overflow: hidden; isolation: isolate; }
  .btn-orange:hover { background: var(--orange-deep); box-shadow: 0 10px 28px -8px rgba(245,166,35,.6); }
  .btn-orange::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 70%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.32) 50%, transparent 100%);
    transform: skewX(-22deg);
    animation: btnShine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }
  .btn-orange > * { position: relative; z-index: 1; }
  .btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
  .btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 12px; }
  .btn .ic { display: inline-flex; }

  /* utility nav row */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line-white); box-shadow: 0 1px 3px rgba(15,35,71,.04); }
  .nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
  .nav-center { display: flex; gap: 32px; align-items: center; }
  .nav-center a { font-size: 15px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
  .nav-center a:hover { color: var(--blue); }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 500; padding: 8px 6px; }
  .nav-phone:hover { color: var(--ink); }
  @media (max-width: 1100px) { .nav-phone { display: none; } }
  @media (max-width: 900px)  { .nav-center { display: none; } }
  @media (max-width: 540px)  { .nav-right .btn-outline { display: none; } }

  /* hero */
  .hero {
    position: relative; overflow: hidden;
    padding: 80px 0 120px;
    background:
      radial-gradient(900px 600px at 95% 10%, rgba(33,67,141,.08), transparent 60%),
      radial-gradient(700px 500px at -5% 30%, rgba(33,67,141,.04), transparent 60%),
      #FBFBFD;
  }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line-white);
    padding: 5px 14px 5px 5px; border-radius: 999px;
    font-size: 13.5px; color: var(--ink); font-weight: 500;
    box-shadow: 0 1px 2px rgba(15,35,71,.05);
  }
  .hero-badge .pill {
    background: var(--blue); color: #fff;
    padding: 3px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  }
  .hero-ctas { display: flex; gap: 14px; align-items: center; margin-top: 36px; flex-wrap: wrap; }

  .hero-ctas .btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #2C5AAF 100%);
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow:
      0 14px 32px -10px rgba(33,67,141,.55),
      0 2px 4px rgba(33,67,141,.18),
      inset 0 1px 0 rgba(255,255,255,.18);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-ctas .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 70%; height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
    transform: skewX(-22deg);
    animation: btnShine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }
  .hero-ctas .btn-primary > * { position: relative; z-index: 1; }
  @keyframes btnShine {
    0%, 60% { left: -150%; }
    85% { left: 150%; }
    100% { left: 150%; }
  }
  .hero-ctas .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 22px 44px -12px rgba(33,67,141,.7),
      0 4px 8px rgba(33,67,141,.25),
      inset 0 1px 0 rgba(255,255,255,.18);
  }

  .hero-ctas .btn-outline {
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border-width: 2px;
  }
  .hero-divider { height: 1px; background: var(--line-white); margin: 40px 0 28px; }
  .stars { color: var(--orange); letter-spacing: 1px; font-size: 16px; }

  /* hero social proof row */
  .hero-social {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .hero-social .stars-row {
    color: var(--orange);
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .hero-avatars {
    display: inline-flex; align-items: center;
  }
  .hero-avatars img {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2.5px solid #FBFBFD;
    object-fit: cover;
    box-shadow: 0 4px 10px -3px rgba(15,35,71,.25);
  }
  .hero-avatars img + img { margin-left: -10px; }
  .hero-social-text {
    font-size: 15.5px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.3;
  }
  .hero-social-text b {
    font-weight: 800;
    color: var(--navy);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 36px;
    background: linear-gradient(180deg, #fff 0%, #F7FAFE 100%);
    border: 1px solid var(--line-white);
    border-radius: 16px;
    padding: 22px 4px;
    box-shadow:
      0 1px 2px rgba(15,35,71,.04),
      0 16px 32px -20px rgba(15,35,71,.12);
    max-width: 560px;
  }
  .hero-stats-cell { padding: 0 28px; }
  .hero-stats-divider { width: 1px; background: linear-gradient(180deg, transparent, var(--line-white) 20%, var(--line-white) 80%, transparent); }
  .hero-stats .lab {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    color: var(--muted); text-transform: uppercase;
  }
  .hero-stats .val {
    display: flex; align-items: baseline; gap: 10px;
    margin-top: 8px;
  }
  .hero-stats .num {
    font-size: 28px; font-weight: 800; color: var(--navy);
    letter-spacing: -0.025em; line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .hero-stats .num-lab { font-size: 13.5px; color: var(--ink); font-weight: 600; }
  .hero-stats .stars { color: var(--orange); font-size: 15px; letter-spacing: 1.5px; line-height: 1; }
  .hero-stats .sub { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

  @media (max-width: 540px) {
    .hero-stats { grid-template-columns: 1fr; padding: 18px 4px; }
    .hero-stats-divider { width: 100%; height: 1px; margin: 14px 0; background: linear-gradient(90deg, transparent, var(--line-white) 20%, var(--line-white) 80%, transparent); }
  }

  /* hero phone */
  .stage { position: relative; aspect-ratio: 4/5; }
  .blob {
    position: absolute; inset: 8% 6%;
    background: radial-gradient(closest-side, rgba(33,67,141,.32), rgba(61,111,179,.20) 55%, transparent 80%);
    border-radius: 50%;
    filter: blur(8px);
    animation: blobFloat 8s ease-in-out infinite;
    z-index: 0;
  }
  @keyframes blobFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.06) rotate(8deg); }
  }
  .phone-img {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    height: 96%; width: auto; max-width: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(15,35,71,.25));
    z-index: 2;
  }
  .phone {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 62%; max-width: 320px;
    aspect-ratio: 9/19;
    background: linear-gradient(180deg, #1A1A1F, #0E0E12);
    border-radius: 44px;
    padding: 10px;
    box-shadow:
      0 40px 80px -20px rgba(15,35,71,.35),
      0 8px 24px -8px rgba(15,35,71,.18),
      inset 0 0 0 1.5px rgba(255,255,255,.06);
    z-index: 2;
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 34px;
    background: linear-gradient(180deg, #F2F5FB 0%, #E6EDF8 100%);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .phone-notch {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 24px; background: #0E0E12; border-radius: 14px; z-index: 3;
  }
  .ps-status {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px 0; font-size: 12px; font-weight: 600; color: var(--navy);
  }
  .ps-body { flex: 1; padding: 56px 22px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; }
  .ps-check {
    width: 64px; height: 64px; border-radius: 50%;
    background: #2EB976; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px -8px rgba(46,185,118,.6);
    margin-bottom: 18px;
  }
  .ps-title { font-size: 18px; font-weight: 700; color: var(--navy); margin: 4px 0 6px; }
  .ps-amt { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin: 8px 0 4px; }
  .ps-meta { font-size: 11.5px; color: var(--muted); line-height: 1.4; }
  .ps-card {
    margin-top: 18px; width: 100%;
    background: #fff; border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 4px 14px -6px rgba(15,35,71,.16);
    text-align: left;
    border: 1px solid #EEF0F5;
  }
  .ps-card .row { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); margin-bottom: 4px; }
  .ps-card .veh { font-size: 13px; font-weight: 600; color: var(--navy); }

  /* floating cards */
  .float {
    position: absolute; z-index: 4;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(15,35,71,.28), 0 4px 12px -4px rgba(15,35,71,.08);
    padding: 12px 14px;
    animation: floatY 4s ease-in-out infinite;
  }
  .float-1 { top: 6%; right: 6%; animation-delay: .2s; }
  .float-2 { top: 46%; right: 0%; animation-delay: 1.2s; }
  .float-3 { bottom: 8%; left: 2%; animation-delay: 2.2s; }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .float .lab { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
  .float .val { font-size: 15px; font-weight: 700; color: var(--navy); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
  .float .stars-sm { color: var(--orange); font-size: 10px; letter-spacing: 1px; }
  .float .row { display: flex; align-items: center; gap: 10px; }
  .float .ic-circle {
    width: 32px; height: 32px; border-radius: 50%;
    background: #FFF1D6; color: var(--orange-deep);
    display: grid; place-items: center;
  }
  .float .ic-circle.green { background: #E2F6EB; color: #2EB976; }
  .float .ic-circle.green svg { width: 16px; height: 16px; }
  .appstore-ic {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(15,35,71,.18);
  }
  @keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
  .spin { animation: spin 3.5s linear infinite; }

  /* trust bar */
  .trust { background: rgb(242, 245, 251); padding: 64px 0; }

  .assoc-label {
    font-size: 15px; font-weight: 800; letter-spacing: 0.12em;
    color: var(--navy); text-transform: uppercase; text-align: center;
    margin-bottom: 44px;
  }
  .assoc-hl { color: var(--blue); }
  .assoc-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 0; row-gap: 18px;
    max-width: 1120px; margin: 0 auto;
  }
  .assoc-item {
    flex: 0 0 14.28%;
    display: flex; align-items: center; justify-content: center;
    padding: 0 22px; min-height: 96px;
    position: relative;
  }
  .assoc-item + .assoc-item::before {
    content: ""; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    height: 56px; width: 1px;
    background: rgba(15,35,71,.10);
  }
  .assoc-item img {
    max-width: 100%; max-height: 88px;
    width: auto; height: auto; object-fit: contain;
    filter: grayscale(1);
    opacity: .82;
    transition: opacity .2s ease, filter .2s ease;
  }
  .assoc-item img:hover { opacity: 1; filter: grayscale(0); }
  @media (max-width: 900px) {
    .assoc-item { flex: 0 0 25%; padding: 0 16px; min-height: 84px; }
  }
  @media (max-width: 540px) {
    .assoc-item { flex: 0 0 33.33%; }
  }
  .trust-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px 32px;
  }
  .trust-row.row2 { grid-template-columns: 1fr; place-items: center; margin-top: 24px; }
  @media (max-width: 980px) { .trust-row { grid-template-columns: repeat(3, 1fr); } .trust-row.row2 { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .trust-row { grid-template-columns: repeat(2, 1fr); } .trust-row.row2 { grid-template-columns: repeat(2, 1fr); } }
  .dealer {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
  }
  .dealer-tile {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--blue); color: #fff;
    display: grid; place-items: center;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .dealer-name { font-style: italic; font-size: 14.5px; color: var(--navy); font-weight: 500; }

  /* logo cards */
  .trust-label.centered {
    text-align: center;
    margin: 0 auto 36px;
  }
  .trust-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    margin-top: 32px;
  }
  .trust-arrow {
    appearance: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  }
  .trust-arrow:hover {
    background: var(--blue); color: #fff; border-color: var(--blue);
    transform: scale(1.05);
  }
  .trust-dots { display: inline-flex; gap: 7px; align-items: center; }
  .trust-dots i {
    width: 7px; height: 7px; border-radius: 50%;
    background: #C9C2B3;
    transition: width .25s ease, background .15s ease;
  }
  .trust-dots i.on {
    width: 24px; border-radius: 999px; background: var(--blue);
  }

  .logo-viewport { overflow: hidden; }
  .logo-track {
    display: flex; align-items: stretch;
    transition: transform .55s cubic-bezier(.4,.0,.2,1);
    will-change: transform;
  }
  .logo-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 980px) { .logo-page { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .logo-page { grid-template-columns: 1fr; } }

  .logo-mark.dark {
    background: #0E0E12;
    border-color: #2A2A2F;
  }

  .logo-card {
    background: #fff;
    border: 1px solid #E6E1D5;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -14px rgba(15,35,71,.14);
    border-color: #DDE3EE;
  }
  .logo-mark {
    width: 56px; height: 56px;
    background: #fff;
    border: 1px solid var(--line-white);
    border-radius: 12px;
    display: grid; place-items: center;
    padding: 6px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .logo-mark img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
  }
  .logo-mark.big { padding: 1px; }
  .logo-mark.big img { transform: scale(1.18); }
  .logo-meta { min-width: 0; }
  .logo-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.005em;
    line-height: 1.25;
  }
  .logo-sub {
    font-size: 11.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 4px;
  }

  /* For dealers */
  .editorial { background: var(--cream); padding: 96px 0; }
  .ed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  #dealers .ed-grid { align-items: start; }
  #dealers .ed-grid > .reveal:nth-child(2) { padding-top: 56px; }
  @media (max-width: 980px) { .ed-grid { grid-template-columns: 1fr; gap: 40px; } #dealers .ed-grid > .reveal:nth-child(2) { padding-top: 0; } }
  .ed-photo-wrap {
    position: relative;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(15,35,71,.35), 0 10px 24px -10px rgba(15,35,71,.18);
    aspect-ratio: 4/5;
    background: #2A2A2A;
  }
  .ed-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: contrast(1.02);
  }
  .ed-stat {
    position: absolute; bottom: 20px; left: 20px;
    background: #fff; border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 20px 40px -16px rgba(15,35,71,.32);
    min-width: 200px;
  }
  .ed-stat .big { font-size: 36px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
  .ed-stat .sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
  .ed-body { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 480px; margin: 0 0 32px; }
  .ed-rule { height: 1px; background: var(--line); margin: 32px 0; max-width: 480px; }
  .ed-quote { font-style: italic; font-size: 19px; color: var(--navy); line-height: 1.55; max-width: 480px; margin: 0 0 14px; }
  .ed-attr { font-size: 14.5px; color: var(--muted); }
  .ed-attr b { color: var(--navy); font-weight: 600; }

  /* dealer rotator */
  .ed-photo-wrap.fade-key { animation: photoFade .35s ease; }
  @keyframes photoFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ed-quote.fade-key, .ed-attr.fade-key { animation: textFade .3s ease; }
  @keyframes textFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ed-stat.fade-key { animation: statFade .45s cubic-bezier(.2,.7,.3,1); }
  @keyframes statFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* arrows overlaid on photo */
  .ed-photo-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    color: var(--navy);
    border: 1px solid rgba(255,255,255,.5);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px -8px rgba(15,35,71,.35), 0 2px 6px rgba(15,35,71,.12);
    z-index: 5;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }
  .ed-photo-nav:hover {
    background: var(--blue); color: #fff;
    transform: translateY(-50%) scale(1.05);
  }
  .ed-photo-nav.prev { left: 14px; }
  .ed-photo-nav.next { right: 14px; }

  .ed-thumbs {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 440px;
  }
  .ed-thumb {
    appearance: none; padding: 0;
    width: 100%; aspect-ratio: 1; height: auto;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream-deep);
    border: 1.5px solid #C9C2B3;
    cursor: pointer;
    opacity: 0.6;
    transform: scale(1);
    transition: opacity .2s ease, transform .25s cubic-bezier(.2,.7,.3,1), border-color .2s ease, box-shadow .2s ease;
  }
  .ed-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ed-thumb:hover { opacity: 0.9; transform: scale(1.04); }
  .ed-thumb[aria-current="true"] {
    opacity: 1;
    transform: scale(1.06);
    border: 3px solid var(--blue);
    box-shadow: 0 14px 28px -8px rgba(33,67,141,.45);
  }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* generic section */
  .section { padding: 96px 0; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head.wide { max-width: none; }
  .section-head.wide .h-section { font-size: clamp(36px, 6vw, 72px); text-wrap: balance; }
  .h-section .mark {
    position: relative; display: inline-block; color: var(--blue);
  }
  .h-section .mark::after {
    content: '';
    position: absolute;
    left: -2px; right: -2px; bottom: 6%;
    height: 18%;
    background: var(--orange);
    opacity: 1;
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-4deg);
  }
  .section-head p { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 620px; margin: 0; }

  /* three-card row */
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr; } }
  .feat-card {
    background: var(--blue-tint);
    border-radius: 20px;
    padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .feat-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(33,67,141,.22); }
  .feat-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 4px 0; letter-spacing: -0.01em; line-height: 1.2; }
  .feat-card p { font-size: 15.5px; color: var(--muted); margin: 0; line-height: 1.55; }
  .feat-card .feat-ic {
    width: 44px; height: 44px; border-radius: 12px;
    background: #fff; color: var(--blue);
    display: grid; place-items: center;
    box-shadow: 0 4px 12px -4px rgba(33,67,141,.18);
  }

  /* channels */
  .ch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
  .ch-grid.four {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .ch-grid.four .ch { padding: 24px; }
  .ch-grid.four .ch h3 { font-size: 20px; }
  .ch-grid.four .ch p { font-size: 14.5px; }
  @media (max-width: 1080px) {
    .ch-grid.four { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .ch-grid.four { grid-template-columns: 1fr; }
  }
  @media (max-width: 880px) { .ch-grid { grid-template-columns: 1fr; } }
  .ch {
    background: #fff; border: 1px solid var(--line-white); border-radius: 20px;
    padding: 32px; display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .ch:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(15,35,71,.14); border-color: #DDE3EE; }
  .ch .num { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.06em; }
  .ch h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 10px 0 12px; letter-spacing: -0.01em; }
  .ch p { font-size: 15.5px; color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
  .ch-mock { margin-top: 18px; }
  .ch-grid.channels-grid { align-items: stretch; }
  .ch-grid.channels-grid .ch-channel { height: auto; }
  .ch-grid.channels-grid .ch-channel p { min-height: 92px; margin-bottom: 0; }
  .ch-grid.channels-grid .ch-channel .ch-mock { margin-top: 22px; }
  @media (max-width: 880px) {
    .ch-grid.channels-grid .ch-channel p { min-height: 0; }
  }

  /* ============================================================
     STEPS variant — FeatureRow (Onboarding → Integrations → Support)
     Visual: connected horizontal pipeline with big numbered circles
     ============================================================ */
  .ch-grid.steps { position: relative; }
  .ch-grid.steps::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 8%;
    right: 8%;
    height: 0;
    border-top: 2px dashed rgba(33,67,141,.22);
    z-index: 0;
    pointer-events: none;
  }
  @media (max-width: 880px) { .ch-grid.steps::before { display: none; } }
  .ch-grid.steps .ch {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #fff 0%, #FAFBFD 100%);
    padding-top: 36px;
  }
  .ch-grid.steps .step-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 8px;
  }
  .ch-grid.steps .step-no {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--blue, #2A6FDB);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px -4px rgba(33,67,141,.45), inset 0 -2px 0 rgba(0,0,0,.08);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }
  .ch-grid.steps .step-lab {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted, #5C6680);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .ch-grid.steps .ch h3 { margin-top: 4px; }

  /* ============================================================
     CHANNELS variant — Channels (App / SMS / IVR / Web)
     Visual: parallel options with a colored icon + thin top accent
     ============================================================ */
  .ch-grid.channels-grid .ch.ch-channel {
    padding-top: 26px;
    position: relative;
    overflow: hidden;
  }
  .ch-grid.channels-grid .ch.ch-channel::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ch-accent, var(--blue, #2A6FDB));
  }
  .ch-grid.channels-grid .ch-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--ch-accent-soft, rgba(33,67,141,.10));
    color: var(--ch-accent, var(--blue, #2A6FDB));
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .ch-grid.channels-grid .ch-icon svg {
    width: 22px; height: 22px;
  }
  .ch-grid.channels-grid .ch-c1 { --ch-accent: #2A6FDB; --ch-accent-soft: rgba(42,111,219,.10); }
  .ch-grid.channels-grid .ch-c2 { --ch-accent: #2EB976; --ch-accent-soft: rgba(46,185,118,.12); }
  .ch-grid.channels-grid .ch-c3 { --ch-accent: #E09415; --ch-accent-soft: rgba(224,148,21,.14); }
  .ch-grid.channels-grid .ch-c4 { --ch-accent: #7A4FE0; --ch-accent-soft: rgba(122,79,224,.12); }

  .pay-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; border-radius: 12px;
    background: var(--blue-tint); border: 1px solid #DDE6F4;
  }
  .pay-bar .amt { font-size: 17px; font-weight: 700; color: var(--navy); }
  .pay-bar .sub { font-size: 12px; color: var(--muted); }
  .pay-bar .link { font-size: 13px; color: var(--blue); font-weight: 600; }

  .sms-mock {
    background: var(--blue-tint); border-radius: 14px; padding: 14px;
    border: 1px solid #DDE6F4;
  }
  .sms-mock .bubble {
    background: #fff; border-radius: 14px;
    padding: 10px 14px; font-size: 13.5px; color: var(--navy); line-height: 1.45;
    box-shadow: 0 1px 2px rgba(15,35,71,.06);
  }
  .sms-mock .pay-btn {
    background: var(--blue); color: #fff;
    border: none; border-radius: 10px;
    padding: 9px 14px; font-size: 13px; font-weight: 600;
    margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  }

  .ivr-mock {
    background: var(--blue-tint); border-radius: 14px; padding: 16px;
    border: 1px solid #DDE6F4;
    font-size: 13.5px; color: var(--navy); line-height: 1.5;
  }
  .ivr-mock .ivr-row { display: flex; align-items: center; gap: 10px; }
  .ivr-mock .ivr-row svg { color: var(--blue); flex-shrink: 0; }
  .ivr-mock em { font-style: normal; font-family: 'Inter', sans-serif; }
  .ivr-mock .web { display: block; margin-top: 12px; font-size: 12.5px; color: var(--blue); font-weight: 600; }

  /* feature row mocks */
  .onboarding-mock, .integrations-mock, .compliance-mock {
    background: var(--blue-tint);
    border: 1px solid #DDE6F4;
    border-radius: 14px;
    padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .mock-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13.5px;
    gap: 10px;
  }
  .mock-row-tight { font-size: 12.5px; padding-top: 4px; border-top: 1px solid #DDE6F4; }
  .mock-k { color: var(--muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mock-v { font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; flex-shrink: 0; }
  .mock-status { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 600; }
  .mock-mono { color: var(--muted); font-family: 'Inter', ui-monospace, monospace; font-variant-numeric: tabular-nums; font-weight: 500; }
  .dot-ok { width: 7px; height: 7px; border-radius: 50%; background: #2EB976; box-shadow: 0 0 0 3px rgba(46,185,118,.18); }
  .sync-ic { color: var(--blue); font-weight: 700; }

  .mock-bar {
    width: 100%; height: 6px; border-radius: 999px;
    background: #DDE6F4; overflow: hidden;
  }
  .mock-fill {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-lite));
    border-radius: 999px;
    animation: mockFill 1.6s cubic-bezier(.2,.7,.3,1) forwards;
    transform-origin: left;
  }
  @keyframes mockFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  .dms-row { display: flex; flex-wrap: wrap; gap: 6px; }
  .dms-chip {
    background: #fff;
    border: 1px solid #DDE6F4;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px; font-weight: 600;
    color: var(--navy);
  }
  .dms-chip.more { color: var(--blue); }

  .badge-row { display: flex; gap: 8px; }
  .cmp-badge {
    flex: 1;
    background: #fff;
    border: 1px solid #DDE6F4;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    font-size: 11.5px; font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  /* ----- channel mocks v2 ----- */
  .app-mock {
    background: var(--blue-tint);
    border: 1px solid #DDE6F4;
    border-radius: 14px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .app-balance {
    background: #fff; border: 1px solid #E8ECF4;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
  }
  .app-k { font-size: 11.5px; color: var(--muted); font-weight: 500; }
  .app-amt { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-top: 2px; line-height: 1; }
  .app-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
  .app-pay {
    appearance: none;
    background: var(--blue); color: #fff;
    border: 0; border-radius: 10px;
    padding: 9px 14px;
    font-size: 13px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 5px;
    box-shadow: 0 4px 12px -4px rgba(33,67,141,.5);
    flex-shrink: 0;
    cursor: pointer;
  }
  .app-row-list { display: flex; flex-direction: column; gap: 6px; }
  .app-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #E8ECF4;
    border-radius: 10px;
    font-size: 12.5px; color: var(--navy);
  }
  .app-row > span:nth-child(2) { flex: 1; }
  .app-row b { font-weight: 700; }
  .app-icon {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .app-mono { font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .app-toggle {
    width: 26px; height: 14px; border-radius: 999px;
    background: #CDD5E2; position: relative; flex-shrink: 0;
  }
  .app-toggle::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 10px; height: 10px; border-radius: 50%; background: #fff;
    transition: transform .2s;
  }
  .app-toggle.on { background: #2EB976; }
  .app-toggle.on::after { transform: translateX(12px); }

  /* SMS mock v2 */
  .sms-mock-mini {
    background: var(--blue-tint);
    border: 1px solid #DDE6F4;
    border-radius: 14px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .mini-bubble {
    font-size: 13px; line-height: 1.45;
    border-radius: 14px; padding: 9px 13px;
    max-width: 92%;
  }
  .mini-bubble.in {
    background: #fff; color: var(--navy);
    border-top-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 1px rgba(15,35,71,.04);
  }
  .mini-bubble.out {
    background: var(--blue); color: #fff;
    border-top-right-radius: 4px;
    font-weight: 700; letter-spacing: 0.04em;
    align-self: flex-end;
    padding: 7px 16px;
  }
  .mini-bubble.done {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 12.5px;
  }

  /* IVR v2 */
  .ivr-mock-v2 {
    background: var(--blue-tint);
    border: 1px solid #DDE6F4;
    border-radius: 14px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 10px;
    font-size: 13px;
  }
  .ivr-line {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }
  .ivr-line-divider { padding-top: 10px; border-top: 1px solid #DDE6F4; }
  .ivr-tag {
    background: #fff; color: var(--blue);
    border: 1px solid #DDE6F4;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em;
  }
  .ivr-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--muted); }
  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2EB976; box-shadow: 0 0 0 3px rgba(46,185,118,.18);
    animation: livePulse 2s infinite;
  }
  @keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,185,118,.18); }
    50% { box-shadow: 0 0 0 5px rgba(46,185,118,.08); }
  }
  .ivr-quote {
    font-style: italic; color: var(--navy);
    line-height: 1.45; font-size: 13px;
  }
  .ivr-url {
    color: var(--blue); font-weight: 600; font-size: 12.5px;
    text-decoration: none;
  }

  /* integrations sync flow */
  .sync-flow {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    padding: 16px 4px;
  }
  .sync-node {
    flex: 1;
    background: #fff;
    border: 1px solid #DDE6F4;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    font-size: 12.5px; font-weight: 700; color: var(--navy);
    letter-spacing: 0.02em;
  }
  .sync-node.carpay { background: var(--blue); color: #fff; border-color: var(--blue); }
  .sync-arrow {
    color: var(--blue);
    flex-shrink: 0;
    animation: syncPulse 2.4s ease-in-out infinite;
  }
  @keyframes syncPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
  }

  /* support mock */
  .support-avatars {
    display: flex; align-items: center;
    padding: 10px 4px;
  }
  .sup-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    color: #fff;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px -3px rgba(15,35,71,.25);
  }
  .sup-av + .sup-av { margin-left: -10px; }
  .sup-av.more {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    font-weight: 800;
  }

  /* web portal mock */
  .web-mock {
    background: var(--blue-tint);
    border: 1px solid #DDE6F4;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
  }
  .web-bar {
    display: flex; align-items: center; gap: 8px;
    background: #fff;
    padding: 8px 12px;
    border-bottom: 1px solid #DDE6F4;
  }
  .web-dots { display: inline-flex; gap: 4px; }
  .web-dots i {
    width: 7px; height: 7px; border-radius: 50%;
    background: #DDE3EE;
  }
  .web-url {
    flex: 1;
    background: var(--blue-tint);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--muted);
    font-family: ui-monospace, monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .web-url b { color: var(--navy); font-weight: 700; }
  .web-body {
    background: #fff;
    padding: 16px;
    text-align: center;
  }
  .web-amt {
    font-size: 26px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.02em;
    line-height: 1;
  }
  .web-due { font-size: 12px; color: var(--muted); margin: 6px 0 12px; }
  .web-pay {
    appearance: none; border: 0;
    background: var(--blue); color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 12px -4px rgba(33,67,141,.5);
    cursor: pointer;
  }

  /* reminders / automation */
  .auto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  @media (max-width: 980px) { .auto-grid { grid-template-columns: 1fr; gap: 48px; } }
  .auto-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
  .auto-item { display: flex; gap: 16px; }
  .auto-ic {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue-soft); color: var(--blue);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .auto-item h4 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
  .auto-item p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; max-width: 440px; }

  .convo-stage {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 520px;
    margin: 0 auto;
  }
  .convo-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 36px rgba(15,35,71,.18));
  }
  .convo-stage .convo {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 340px;
    margin: 0;
  }
  @media (max-width: 720px) {
    .convo-stage .convo { width: 86%; }
  }

  .convo {
    background: #fff; border-radius: 22px;
    padding: 22px 22px 24px;
    box-shadow: 0 30px 60px -20px rgba(15,35,71,.22), 0 8px 20px -8px rgba(15,35,71,.08);
    max-width: 420px;
    margin: 0 auto;
  }
  .convo-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line-white); margin-bottom: 14px; }
  .convo-head .from { font-size: 13px; font-weight: 700; color: var(--navy); }
  .convo-head .when { font-size: 11px; color: var(--muted); font-weight: 500; }
  .convo-body { display: flex; flex-direction: column; gap: 8px; }
  .convo-body > * { animation: bubbleIn .28s cubic-bezier(.2,.7,.3,1) backwards; }
  @keyframes bubbleIn {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .convo .bubble-in {
    background: #F2F4F8; color: var(--navy);
    border-radius: 18px; border-top-left-radius: 6px;
    padding: 11px 16px; font-size: 14.5px; line-height: 1.5;
    max-width: 90%; align-self: flex-start;
  }
  .convo .bubble-out {
    background: var(--blue); color: #fff;
    border-radius: 18px; border-top-right-radius: 6px;
    padding: 10px 18px;
    font-size: 14.5px; font-weight: 600; line-height: 1.5;
    align-self: flex-end;
    display: inline-flex; align-items: baseline; gap: 12px;
    letter-spacing: 0.02em;
  }
  .bubble-time {
    font-size: 11px;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
  }
  .bubble-in .bubble-time { color: var(--muted); opacity: .7; }
  .bubble-out .bubble-time { color: rgba(255,255,255,.7); margin-left: 0; }
  .typing {
    display: inline-flex; gap: 4px; padding: 12px 16px;
    background: #F2F4F8; border-radius: 18px; border-top-left-radius: 6px;
    width: fit-content;
  }
  .typing span {
    width: 6px; height: 6px; border-radius: 50%; background: #9AA4B5; display: inline-block;
    animation: blink 1.3s infinite;
  }
  .typing span:nth-child(2) { animation-delay: .2s; }
  .typing span:nth-child(3) { animation-delay: .4s; }
  @keyframes blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
  .cursor { display: inline-block; width: 2px; background: var(--navy); height: 16px; vertical-align: -3px; margin-left: 1px; animation: cursorBlink .8s steps(1) infinite; }
  @keyframes cursorBlink { 50% { opacity: 0; } }

  /* stats */
  .stats { background: var(--navy); color: #fff; padding: 110px 0; position: relative; overflow: hidden; }
  .stats::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(700px 300px at 90% -20%, rgba(245,166,35,.10), transparent 60%),
      radial-gradient(800px 500px at 5% 110%, rgba(33,67,141,.6), transparent 60%);
    pointer-events: none;
  }
  .stats .wrap { position: relative; }
  .stat-head { max-width: 760px; margin-bottom: 64px; }
  .stats h2 { color: #fff; }
  .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  @media (max-width: 980px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }
  .stat { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.18); }
  .stat .num {
    font-size: clamp(56px, 6vw, 84px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
  }
  .stat .num em {
    font-style: normal;
    color: var(--orange);
    background: linear-gradient(100deg,
      var(--orange) 0%,
      var(--orange) 38%,
      #FFE5B0 48%,
      #FFFFFF 50%,
      #FFE5B0 52%,
      var(--orange) 62%,
      var(--orange) 100%);
    background-size: 300% 100%;
    background-position: 100% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: numShine 4.5s ease-in-out infinite;
  }
  @keyframes numShine {
    0%, 55% { background-position: 100% 0%; }
    85%, 100% { background-position: -10% 0%; }
  }
  .stat .desc { font-size: 14px; color: #B7C4DC; margin-top: 14px; line-height: 1.45; max-width: 220px; }

  /* reviews */
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
  .testi {
    background: #fff; border: 1px solid var(--line-white); border-radius: 20px;
    padding: 30px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .testi:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(15,35,71,.14); }
  .testi .stars { font-size: 16px; }
  .testi blockquote {
    margin: 0; font-style: italic; font-size: 16.5px;
    color: var(--navy); line-height: 1.55;
  }
  .testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-white); }
  .testi .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue); color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  }
  .testi .nm { font-size: 14.5px; font-weight: 700; color: var(--navy); }
  .testi .rl { font-size: 13px; color: var(--muted); }
  .testi .store-line { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
  .testi .store-line svg { flex: none; }

  /* CTA gradient */
  .cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lite) 100%);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    pointer-events: none;
  }
  .cta .wrap { position: relative; max-width: 1100px; }
  .cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }
  .cta h2 { color: #fff; }
  .cta-body { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.55; max-width: 520px; margin: 0; }
  .cta-actions { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-phone {
    margin-top: 10px;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
  }
  .cta-phone .ic {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(245,166,35,.22); color: var(--orange);
    display: grid; place-items: center;
  }
  .cta-phone .lab { font-size: 12px; color: rgba(255,255,255,.75); }
  .cta-phone .num { font-size: 16px; font-weight: 700; color: #fff; }

  /* demo form */
  .demo-form {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    border-radius: 20px;
    padding: 26px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 30px 60px -24px rgba(0,0,0,.4);
  }
  .form-note-top {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    text-align: center;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
  .form-field {
    display: flex; flex-direction: column; gap: 5px;
    min-width: 0;
  }
  .form-field > span {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,.82);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .form-field > span i { color: #FFC55C; font-style: normal; margin-left: 3px; }
  .form-field input,
  .form-field select {
    appearance: none; -webkit-appearance: none;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font: inherit;
    font-size: 15px;
    width: 100%;
    outline: none;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
  }
  .form-field input::placeholder { color: rgba(255,255,255,.4); }
  .form-field input:hover,
  .form-field select:hover { border-color: rgba(255,255,255,.4); }
  .form-field input:focus,
  .form-field select:focus {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.7);
    box-shadow: 0 0 0 3px rgba(255,255,255,.08);
  }
  .form-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .form-field select option { background: var(--navy); color: #fff; }
  .form-submit { margin-top: 6px; width: 100%; justify-content: center; }

  /* top status bar */
  .top-bar {
    background: var(--navy);
    color: #B9C4DA;
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .top-bar-row {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
  }
  .top-bar-row a { color: #B9C4DA; text-decoration: none; transition: color .15s; }
  .top-bar-row a:hover { color: #fff; }
  .top-status { display: inline-flex; align-items: center; gap: 8px; }
  .top-status b { color: #fff; font-weight: 600; }
  .top-status .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2EB976; box-shadow: 0 0 0 3px rgba(46,185,118,.22);
    animation: livePulse 2s infinite;
  }
  .top-bar-row .sep { color: #4A5E84; }
  @media (max-width: 540px) {
    .top-bar { display: none; }
  }

  /* footer */
  footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
  .foot-status {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 32px;
    font-size: 13px; color: #B9C4DA;
    flex-wrap: wrap;
  }
  .foot-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #2EB976; box-shadow: 0 0 0 3px rgba(46,185,118,.22); }
  .foot-status .sep { color: #4A5E84; }
  .foot-status a:hover { color: #fff; }
  .foot-main {
    padding-bottom: 56px;
    display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: 56px;
    align-items: start;
  }
  .foot-brand-col .wordmark-img { height: 40px; }
  .foot-social { display: flex; gap: 14px; margin-top: 34px; }
  .foot-social a {
    width: 42px; height: 42px; border-radius: 10px;
    background: #fff; color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
    transition: opacity .2s ease, transform .2s ease;
  }
  .foot-social a:hover { opacity: .88; transform: translateY(-1px); }
  .foot-mission {
    font-size: 19px; line-height: 1.55; color: #fff; font-weight: 500;
    max-width: 880px; margin: 0; text-wrap: pretty;
  }
  @media (max-width: 860px) {
    .foot-main { grid-template-columns: 1fr; gap: 40px; }
  }
  .foot-address {
    font-size: 18px; color: #fff; margin: 30px 0 0; font-weight: 400;
  }
  .foot-links {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 16px 56px; margin-top: 44px;
  }
  .foot-links a {
    font-size: 17px; font-weight: 700; color: #fff; text-decoration: none;
  }
  .foot-links a:hover { opacity: .82; }
  .foot-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px;
  }
  @media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-grid h6 {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #fff; margin: 0 0 18px; font-weight: 700;
  }
  .foot-grid a { display: block; padding: 5px 0; font-size: 14.5px; color: #B9C4DA; }
  .foot-grid a:hover { color: #fff; }
  .foot-brand p { font-size: 14.5px; color: #8FA1C4; line-height: 1.6; max-width: 340px; margin: 18px 0 0; }
  .foot-bot {
    border-top: 1px solid rgba(255,255,255,.22);
    padding-top: 30px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    font-size: 15px; color: rgba(255,255,255,.92);
  }
  .foot-legal a { color: rgba(255,255,255,.92); text-decoration: none; }
  .foot-legal a:hover { color: #fff; }
  .foot-made { display: inline-flex; align-items: center; gap: 8px; }
  .foot-flag { font-size: 17px; line-height: 1; }
  .foot-bot .links { display: flex; gap: 18px; flex-wrap: wrap; }
  .foot-bot .links a:hover { color: #fff; }
  @media (max-width: 600px) {
    .foot-mission { font-size: 17px; }
    .foot-address { font-size: 16px; }
    .foot-links { gap: 14px 32px; }
  }

  /* scroll reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.from-left { transform: translateX(-30px); }
  .reveal.from-right { transform: translateX(30px); }
  .reveal.in.from-left, .reveal.in.from-right { transform: translateX(0); }

  /* ============================================================
     PERSON-FOCUS HERO
     ============================================================ */
  .hero-person-stage {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    background: #2A2A2A;
    box-shadow:
      0 40px 80px -20px rgba(15,35,71,.4),
      0 12px 24px -8px rgba(15,35,71,.18);
  }
  .hero-person-stage img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-person-stage::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,35,71,.35) 100%);
    pointer-events: none;
  }
  .hero-tag {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 3;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    color: var(--navy);
    border-radius: 999px;
    padding: 7px 12px 7px 9px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px -6px rgba(15,35,71,.3);
  }
  .hero-tag .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2EB976; box-shadow: 0 0 0 3px rgba(46,185,118,.22);
    animation: livePulse 2s infinite;
  }
  .hero-stat-pill {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 3;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 18px 40px -16px rgba(15,35,71,.32);
  }
  .hero-stat-pill .big {
    font-size: 28px; font-weight: 800; color: var(--blue);
    letter-spacing: -0.02em; line-height: 1;
  }
  .hero-stat-pill .sub {
    font-size: 12px; color: var(--muted); margin-top: 4px;
  }
  .hero-quote-bubble {
    position: absolute;
    z-index: 4;
    bottom: 28px; left: 28px; right: 28px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px 18px;
    box-shadow:
      0 24px 48px -16px rgba(15,35,71,.4),
      0 6px 14px -6px rgba(15,35,71,.16);
  }
  .hero-quote-bubble::before {
    content: '"';
    position: absolute;
    top: -8px; left: 22px;
    width: 32px; height: 32px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: Georgia, serif;
    font-size: 28px; font-weight: 700; line-height: 1;
    padding-top: 8px;
  }
  .hero-quote-bubble blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--navy);
    font-style: italic;
    font-weight: 500;
    text-wrap: pretty;
  }
  .hero-quote-bubble .who {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-white);
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
  }
  .hero-quote-bubble .who b { color: var(--navy); font-weight: 700; }
  .hero-quote-bubble .who span { color: var(--muted); }
  .hero-quote-bubble .stars-mini { color: var(--orange); font-size: 13px; letter-spacing: 1px; }

  @media (max-width: 720px) {
    .hero-quote-bubble { left: 16px; right: 16px; bottom: 16px; padding: 18px 18px 14px; }
    .hero-quote-bubble blockquote { font-size: 14.5px; }
  }

  /* ============================================================
     APP SHOWCASE (phone moved lower)
     ============================================================ */
  .app-showcase {
    background:
      radial-gradient(900px 600px at 90% 20%, rgba(33,67,141,.08), transparent 60%),
      linear-gradient(180deg, #FBFBFD, #F2F5FB);
    padding: 120px 0;
    position: relative; overflow: hidden;
  }
  .app-showcase-grid {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px;
    align-items: center;
  }
  @media (max-width: 980px) { .app-showcase-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* ============================================================
     DEALER DASHBOARD — laptop showcase (replaces app showcase)
     ============================================================ */
  .dealer-dash {
    background:
      radial-gradient(900px 600px at 90% 20%, rgba(33,67,141,.08), transparent 60%),
      linear-gradient(180deg, #FBFBFD, #F2F5FB);
    padding: 120px 0;
    position: relative; overflow: hidden;
  }
  .dealer-dash-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.55fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 980px) {
    .dealer-dash-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .laptop-stage {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .laptop-blob {
    position: absolute;
    inset: 8% 4% 4% 4%;
    background:
      radial-gradient(60% 60% at 50% 40%, rgba(33,67,141,.14), transparent 70%),
      radial-gradient(40% 40% at 30% 60%, rgba(61,111,179,.10), transparent 70%);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
  }
  .laptop-img {
    position: relative;
    z-index: 1;
    width: 130%;
    max-width: 130%;
    height: auto;
    margin: 0 -15%;
    filter: drop-shadow(0 30px 60px rgba(15,35,71,.18));
  }
  .laptop-img.dash-img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(15,35,71,.10);
    box-shadow:
      0 40px 80px -20px rgba(15,35,71,.35),
      0 12px 32px -8px rgba(15,35,71,.18);
    filter: none;
  }
  .laptop-stage:has(.dash-img) .laptop-blob {
    inset: -4% -2% -6% -2%;
    background:
      radial-gradient(700px 500px at 70% 30%, rgba(124,93,250,.18), transparent 60%),
      radial-gradient(500px 400px at 20% 80%, rgba(33,67,141,.12), transparent 60%);
    opacity: .7;
  }
  .laptop-float {
    position: absolute;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--line-white);
    border-radius: 14px;
    box-shadow: 0 18px 40px -14px rgba(15,35,71,.22), 0 2px 6px rgba(15,35,71,.06);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .laptop-float .lf-lab {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .laptop-float .lf-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2px;
  }
  .laptop-float .lf-big {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .laptop-float .lf-sub {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-top: 4px;
  }
  .laptop-float-live {
    top: -4%;
    right: 3%;
    left: auto;
    animation: laptopFloatY 5.5s ease-in-out infinite;
  }
  .laptop-float-live .live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #2EB976;
    box-shadow: 0 0 0 4px rgba(46,185,118,.18);
    flex-shrink: 0;
  }
  .laptop-float-stat {
    bottom: -4%;
    right: -2%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    animation: laptopFloatY 6s ease-in-out infinite .8s;
  }
  .laptop-float-stat.alt {
    bottom: 9%;
    top: auto;
    right: auto;
    left: -3%;
    animation-delay: 1.6s;
  }
  .laptop-float-stat.alt .lf-big { color: var(--orange, #E09415); }
  @keyframes laptopFloatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  @media (max-width: 980px) {
    .laptop-float-live { top: -4%; right: 2%; left: auto; }
    .laptop-float-stat { right: 0; bottom: -3%; }
    .laptop-float-stat.alt { left: 0; bottom: 16%; }
  }
  @media (max-width: 620px) {
    .laptop-float { padding: 10px 12px; }
    .laptop-float .lf-big { font-size: 18px; }
    .laptop-float .lf-lab { font-size: 9.5px; }
    .laptop-float .lf-val { font-size: 12.5px; }
    .laptop-float .lf-sub { font-size: 10.5px; }
  }

  .app-feat-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
  .app-feat-item { display: flex; gap: 14px; align-items: flex-start; }
  .app-feat-ic {
    width: 40px; height: 40px; border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line-white);
    color: var(--blue);
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -6px rgba(33,67,141,.2);
  }
  .app-feat-item h4 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
  .app-feat-item p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; max-width: 440px; }

  /* ============================================================
     MOOD VARIANTS — reshape rhythm, weight, density
     ============================================================ */

  /* EDITORIAL: more cream, lighter weights, slower pace */
  body[data-mood="editorial"] .section[data-mood-swap] { background: var(--cream); }
  body[data-mood="editorial"] .section[data-mood-swap] .feat-card { background: #fff; }
  body[data-mood="editorial"] .section[data-mood-swap] .ch { background: #fff; border-color: var(--cream-deep); }
  body[data-mood="editorial"] .section[data-mood-swap] .testi { background: #fff; border-color: var(--cream-deep); }
  body[data-mood="editorial"] .feat-card { background: #fff; }
  body[data-mood="editorial"] .hero { background:
    radial-gradient(900px 600px at 95% 10%, rgba(33,67,141,.08), transparent 60%),
    radial-gradient(700px 500px at -5% 30%, rgba(245,239,228,.5), transparent 60%),
    #FBF8F1; }
  body[data-mood="editorial"] .h-hero { font-weight: 600; letter-spacing: -0.03em; }
  body[data-mood="editorial"] .h-section { font-weight: 600; letter-spacing: -0.025em; }
  body[data-mood="editorial"] .section { padding: 128px 0; }
  body[data-mood="editorial"] .hero { padding: 96px 0 140px; }
  body[data-mood="editorial"] .editorial { padding: 128px 0; }
  body[data-mood="editorial"] .eyebrow { font-weight: 500; letter-spacing: 0.22em; }

  /* BOLD: white-forward, heavy weights, tighter spacing, navy more present */
  body[data-mood="bold"] .editorial { background: #fff; border-top: 1px solid var(--line-white); border-bottom: 1px solid var(--line-white); }
  body[data-mood="bold"] .trust { background: #fff; border-bottom: 1px solid var(--line-white); }
  body[data-mood="bold"] .h-hero { font-weight: 800; letter-spacing: -0.035em; }
  body[data-mood="bold"] .h-section { font-weight: 800; letter-spacing: -0.03em; }
  body[data-mood="bold"] .section { padding: 80px 0; }
  body[data-mood="bold"] .hero { padding: 64px 0 96px; }
  body[data-mood="bold"] .editorial { padding: 80px 0; }
  body[data-mood="bold"] .stats { padding: 132px 0; }
  body[data-mood="bold"] .feat-card { background: var(--navy); color: #fff; }
  body[data-mood="bold"] .feat-card h3 { color: #fff; }
  body[data-mood="bold"] .feat-card p { color: #B7C4DC; }
  body[data-mood="bold"] .feat-card .feat-ic { background: rgba(255,255,255,.08); color: #fff; }
  body[data-mood="bold"] .feat-card .eyebrow { color: #8FA8D3; }
  body[data-mood="bold"] .btn-primary { background: var(--navy); }
  body[data-mood="bold"] .btn-primary:hover { background: #051836; }

  /* ============================================================
     HERO LAYOUT VARIANTS
     ============================================================ */

  /* STAGE — text centered above, phone large + centered below */
  .hero-stage { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
  .hero-stage .hero-text { max-width: 880px; }
  .hero-stage .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-stage .hero-ctas { justify-content: center; }
  .hero-stage .stage-wrap { width: 100%; max-width: 720px; margin-top: 24px; position: relative; }
  .hero-stage .stage { aspect-ratio: 16/10; max-width: 720px; margin: 0 auto; }
  .hero-stage .phone { width: auto; height: 90%; max-width: none; }
  .hero-stage .phone-img { height: 92%; max-width: 56%; }
  .hero-stage .float-1 { top: 8%; right: 8%; }
  .hero-stage .float-2 { top: 44%; right: 4%; }
  .hero-stage .float-3 { bottom: 8%; left: 6%; }

  /* PORTRAIT — B&W portrait fills right, no phone, more editorial */
  .hero-portrait-img {
    position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(15,35,71,.35), 0 10px 24px -10px rgba(15,35,71,.18);
    background: #2A2A2A;
  }
  .hero-portrait-img img {
    width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04);
  }
  .hero-portrait-img .portrait-pill {
    position: absolute; left: 22px; bottom: 22px;
    background: #fff; border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 20px 40px -16px rgba(15,35,71,.32);
    display: flex; align-items: center; gap: 14px;
  }
  .hero-portrait-img .portrait-pill .stars { color: var(--orange); font-size: 14px; letter-spacing: 1.5px; }
  .hero-portrait-img .portrait-pill .lab { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
  .hero-portrait-img .portrait-pill .val { font-size: 16px; font-weight: 700; color: var(--navy); }
  .hero-portrait-img .portrait-tag {
    position: absolute; top: 20px; right: 20px;
    background: rgba(15,35,71,.85); color: #fff;
    backdrop-filter: blur(8px);
    border-radius: 999px; padding: 8px 14px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  }

  /* ============================================================
     Language toggle (floating, bottom-right)
     ============================================================ */
  .lang-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line-white);
    box-shadow: 0 8px 24px -8px rgba(15,35,71,.18), 0 2px 6px rgba(15,35,71,.06);
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .lang-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(15,35,71,.24), 0 2px 6px rgba(15,35,71,.08);
    border-color: #DDE3EE;
  }
  .lang-btn .lang-flag {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.08));
  }
  .lang-btn .lang-code { font-variant-numeric: tabular-nums; }
  .lang-btn .lang-caret {
    color: var(--muted);
    transition: transform .2s ease;
  }
  .lang-toggle.open .lang-btn .lang-caret { transform: rotate(180deg); }
  .lang-toggle.open .lang-btn { border-color: var(--blue-lite); }

  .lang-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--line-white);
    border-radius: 14px;
    box-shadow: 0 18px 40px -10px rgba(15,35,71,.22), 0 4px 10px rgba(15,35,71,.08);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: langMenuIn .18s ease;
  }
  @keyframes langMenuIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .lang-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 9px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: background .15s ease;
  }
  .lang-opt:hover { background: #F4F6FA; }
  .lang-opt.active { background: #F0F4FB; color: var(--blue); font-weight: 600; }
  .lang-opt .lang-flag { font-size: 18px; line-height: 1; }
  .lang-opt .lang-label { flex: 1; }
  .lang-opt .lang-check { color: var(--blue); }

  @media (max-width: 720px) {
    .lang-toggle { bottom: 16px; right: 16px; }
    .lang-btn { height: 40px; padding: 0 12px 0 10px; }
  }


  .hero-orbit { padding: 28px 0 90px; }
  .hero-orbit .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .hero-orbit .hero-text-orbit { max-width: 920px; }
  .hero-orbit .hero-text-orbit .h-hero { font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -0.03em; }
  .hero-orbit .hero-eyebrow {
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
  }
  .hero-orbit .h-hero .hl-line { display: block; white-space: nowrap; }

  .hero-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.3;
  }
  .hero-total-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #2EB976;
    box-shadow: 0 0 0 4px rgba(46,185,118,.16);
    flex-shrink: 0;
    animation: heroTotalPulse 1.8s ease-in-out infinite;
  }
  @keyframes heroTotalPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,185,118,.10); }
    50%      { box-shadow: 0 0 0 5px rgba(46,185,118,.22); }
  }
  .hero-total-label { font-weight: 700; color: var(--navy); }
  .hero-total-val {
    font-weight: 800;
    color: var(--blue);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-total-dot { animation: none; }
  }
  @media (max-width: 720px) {
    .hero-orbit .hero-text-orbit .h-hero { font-size: clamp(36px, 9vw, 56px); }
    .hero-orbit .h-hero .hl-line { white-space: normal; }
  }
  .hero-orbit .hero-ctas { justify-content: center; }

  .hero-orbit .hero-lead {
    max-width: 720px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    text-wrap: pretty;
  }
  .hero-orbit .hero-lead b { color: var(--navy); font-weight: 600; }

  .hero-orbit .hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 48px 0 0;
    text-align: left;
    align-items: stretch;
  }
  .hero-orbit .hf-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    align-items: center;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--line-white);
    border-radius: 18px;
    padding: 26px 28px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
    box-sizing: border-box;
  }
  .hero-orbit .hf-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -22px rgba(33,67,141,.28);
    border-color: #DDE3EE;
  }
  .hero-orbit .hf-ic {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line-white);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--blue);
    box-shadow: 0 6px 14px -6px rgba(33,67,141,.22);
  }
  .hero-orbit .hf-ic svg { width: 22px; height: 22px; }
  .hero-orbit .hf-body { flex: 1; min-width: 0; }
  .hero-orbit .hf-h {
    font-size: 17.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .hero-orbit .hf-p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
  }
  @media (max-width: 980px) {
    .hero-orbit .hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  }
  @media (max-width: 680px) {
    .hero-orbit .hero-features { grid-template-columns: 1fr; gap: 14px; }
    .hero-orbit .hf-item { padding: 22px; grid-template-columns: 44px 1fr; column-gap: 14px; }
  }
  .hero-orbit .hero-social { justify-content: center; }
  .hero-orbit .hero-hint {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .hero-orbit .hero-hint .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(33,67,141,.18);
    animation: livePulse 2s infinite;
  }

  .orbit-stage {
    position: relative;
    width: 100%;
    max-width: 1120px;
    aspect-ratio: 16/8.2;
    margin: 12px auto 0;
  }
  .orbit-ring {
    position: absolute;
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(33,67,141,.18) 18%, rgba(33,67,141,.18) 82%, transparent 100%);
    z-index: 1;
  }

  .orbit-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(33,67,141,.18), rgba(61,111,179,.06) 60%, transparent 78%);
    z-index: 0;
    filter: blur(4px);
    animation: orbitGlow 6s ease-in-out infinite;
  }
  @keyframes orbitGlow {
    0%, 100% { transform: translate(-50%,-50%) scale(1); }
    50% { transform: translate(-50%,-50%) scale(1.06); }
  }

  .orbit-phone {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    width: 28%;
    max-width: 360px;
    z-index: 6;
    filter:
      drop-shadow(0 30px 50px rgba(15,35,71,.28))
      drop-shadow(0 8px 18px rgba(15,35,71,.14));
  }
  .orbit-phone img {
    width: 100%; height: auto; display: block;
  }
  @keyframes phoneFloat {
    0%, 100% { transform: translateY(-7px); }
    50%      { transform: translateY(7px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .orbit-phone img { animation: none; }
  }

  /* CSS phone — clean, simplified payment screen */
  .op-phone {
    width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(180deg, #1A1A1F, #0E0E12);
    border-radius: 13%/6.5%;
    padding: 3% 3% 3% 3%;
    position: relative;
    box-shadow:
      inset 0 0 0 1.5px rgba(255,255,255,.06);
  }
  .op-notch {
    position: absolute;
    top: 3.2%; left: 50%; transform: translateX(-50%);
    width: 30%; height: 3.6%;
    background: #0E0E12;
    border-radius: 999px;
    z-index: 3;
  }
  .op-screen {
    width: 100%; height: 100%;
    background: #F6F7FA;
    border-radius: 11%/5.5%;
    overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
  }
  .op-statusbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 5% 9% 0;
    font-size: clamp(8px, 0.9vw, 11px);
    font-weight: 700;
    color: var(--navy);
  }
  .op-statusbar-icons { display: inline-flex; align-items: center; gap: 3px; color: var(--navy); }
  .op-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6% 8% 4%;
    border-bottom: 1px solid #E6EAF1;
  }
  .op-back {
    color: var(--blue);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1;
    width: 8%;
    text-align: left;
  }
  .op-spacer { width: 8%; }
  .op-title {
    font-size: clamp(10px, 1.1vw, 14px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .op-body {
    flex: 1;
    padding: 8% 6% 6%;
    display: flex; flex-direction: column;
    gap: 6%;
  }
  .op-card {
    background: #fff;
    border-radius: 14px;
    padding: 6% 5% 7%;
    text-align: center;
    box-shadow: 0 4px 14px -8px rgba(15,35,71,.12);
    border: 1px solid #ECEFF4;
  }
  .op-label {
    font-size: clamp(8px, 0.9vw, 11px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .op-amount {
    font-size: clamp(28px, 4.2vw, 52px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .op-dollar {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--muted);
    vertical-align: 0.6em;
    margin-right: 2px;
  }
  .op-cents {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--muted);
    vertical-align: 0.6em;
  }
  .op-due {
    font-size: clamp(9px, 1vw, 12px);
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
  }
  .op-pay {
    appearance: none;
    border: 0;
    background: var(--blue);
    color: #fff;
    border-radius: 12px;
    padding: 14% 0;
    font-size: clamp(11px, 1.3vw, 16px);
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 8px 20px -8px rgba(33,67,141,.6);
    height: clamp(34px, 4.5vw, 56px);
    line-height: 1;
  }
  .op-foot {
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    font-size: clamp(9px, 1vw, 12px);
    color: var(--muted);
    margin-top: auto;
    padding-bottom: 4%;
  }
  .op-foot b { color: var(--navy); font-weight: 700; }
  .op-toggle {
    width: 22px; height: 12px; border-radius: 999px;
    background: #CDD5E2;
    position: relative; flex-shrink: 0;
  }
  .op-toggle::after {
    content: '';
    position: absolute; top: 2px; left: 2px;
    width: 8px; height: 8px;
    border-radius: 50%; background: #fff;
    transition: transform .2s;
  }
  .op-toggle.on { background: #2EB976; }
  .op-toggle.on::after { transform: translateX(10px); }

  /* Orbit hero CTAs */
  .hero-orbit-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 16px auto 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Golden rating box */
  .hero-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 16px;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-rating-box .hrb-stars {
    color: #F5A623;
    font-size: 19px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .hero-rating-box .hrb-avatars {
    display: inline-flex;
    align-items: center;
  }
  .hero-rating-box .hrb-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFF8EA;
    margin-left: -10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
  }
  .hero-rating-box .hrb-avatars img:first-child { margin-left: 0; }
  .hero-rating-box .hrb-text {
    font-size: 16px;
    color: var(--navy, #0F2347);
    font-weight: 500;
    white-space: nowrap;
  }
  .hero-rating-box .hrb-text b { font-weight: 800; }

  /* Golden nav "Schedule a demo" button */
  .nav-demo-gold {
    background: linear-gradient(135deg, #F5A623 0%, #F0851A 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 6px 18px -8px rgba(214, 148, 21, .7) !important;
  }
  .nav-demo-gold:hover {
    background: linear-gradient(135deg, #F6AE35 0%, #E5790F 100%) !important;
    box-shadow: 0 8px 22px -8px rgba(214, 148, 21, .8) !important;
  }
  .hero-orbit-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 0;
    font-size: 14.5px;
    color: var(--muted);
  }
  .hero-orbit-contact .hoc-label {
    letter-spacing: 0.01em;
  }
  .hero-orbit-contact .hoc-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
  }
  .hero-orbit-contact .hoc-phone:hover {
    color: var(--blue);
    border-bottom-color: currentColor;
  }
  .hero-orbit-contact .hoc-phone svg {
    color: var(--orange);
  }
  .btn-demo-pulse {
    --c1: #F5A623;
    --c2: #F0851A;
    --c3: #FFC15C;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.005em;
    border-radius: 999px;
    text-decoration: none;
    isolation: isolate;
    overflow: hidden;
    box-shadow:
      0 4px 14px -4px rgba(240,133,26,.55),
      0 0 0 1px rgba(255,255,255,.18) inset;
    animation: demoPulse 2.4s ease-in-out infinite;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .btn-demo-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: demoShine 3.4s ease-in-out infinite;
    animation-delay: 1.2s;
    z-index: 1;
    pointer-events: none;
  }
  .btn-demo-pulse > * { position: relative; z-index: 2; }
  .btn-demo-glow {
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: radial-gradient(closest-side, rgba(245,166,35,.55), transparent 70%);
    filter: blur(14px);
    z-index: -1;
    animation: demoGlow 2.4s ease-in-out infinite;
    pointer-events: none;
  }
  .btn-demo-arrow {
    display: inline-flex;
    transition: transform .25s ease;
  }
  .btn-demo-pulse:hover {
    transform: translateY(-2px);
    box-shadow:
      0 14px 32px -8px rgba(240,133,26,.7),
      0 0 0 1px rgba(255,255,255,.25) inset;
  }
  .btn-demo-pulse:hover .btn-demo-arrow {
    transform: translateX(4px);
  }
  .btn-demo-pulse:active { transform: translateY(0); }

  .btn-demo-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(33,67,141,.18);
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(4px);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
  }
  .btn-demo-ghost:hover {
    color: var(--blue);
    border-color: var(--blue);
    background: #fff;
  }

  /* "Get Live Demo" header CTA */
  .btn-live-demo-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px 9px 16px;
    background: linear-gradient(150deg, #2FB36A 0%, #1F9D55 55%, #178A48 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    box-shadow:
      0 6px 18px -8px rgba(23,138,72,.7),
      0 0 18px -2px rgba(31,157,85,.55),
      0 1px 0 0 rgba(255,255,255,.25) inset;
    transition: transform .2s ease, box-shadow .2s ease;
    animation: ldGlow 2.6s ease-in-out infinite;
  }
  @keyframes ldGlow {
    0%, 100% { box-shadow: 0 6px 18px -8px rgba(23,138,72,.7), 0 0 14px -2px rgba(31,157,85,.45), 0 1px 0 0 rgba(255,255,255,.25) inset; }
    50%      { box-shadow: 0 6px 18px -8px rgba(23,138,72,.75), 0 0 26px 2px rgba(31,157,85,.75), 0 1px 0 0 rgba(255,255,255,.25) inset; }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-live-demo-nav { animation: none; }
  }
  .btn-live-demo-nav:hover {
    transform: translateY(-1px);
    animation: none;
    box-shadow:
      0 10px 24px -8px rgba(23,138,72,.8),
      0 0 30px 2px rgba(31,157,85,.8),
      0 1px 0 0 rgba(255,255,255,.3) inset;
  }
  .btn-live-demo-nav:active { transform: translateY(0); }
  .btn-live-demo-nav .bld-dot {
    position: relative;
    flex-shrink: 0;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #FF3B30;
    box-shadow: 0 0 0 0 rgba(255,59,48,.55);
    animation: bldPulse 1.8s ease-out infinite;
  }
  @keyframes bldPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,59,48,.55); }
    70%  { box-shadow: 0 0 0 9px rgba(255,59,48,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
  }
  .btn-live-demo-nav .bld-text {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.005em;
    line-height: 1;
    white-space: nowrap;
  }
  .btn-live-demo-nav .bld-arrow {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,.14);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s ease, background .2s ease;
  }
  .btn-live-demo-nav:hover .bld-arrow { background: rgba(0,0,0,.22); transform: translateX(2px); }
  @media (prefers-reduced-motion: reduce) {
    .btn-live-demo-nav .bld-dot { animation: none; }
  }

  @keyframes demoPulse {
    0%, 100% { box-shadow: 0 4px 14px -4px rgba(240,133,26,.55), 0 0 0 1px rgba(255,255,255,.18) inset; }
    50%      { box-shadow: 0 8px 24px -6px rgba(240,133,26,.8),  0 0 0 1px rgba(255,255,255,.25) inset; }
  }
  @keyframes demoGlow {
    0%, 100% { opacity: .55; transform: scale(1); }
    50%      { opacity: .95; transform: scale(1.08); }
  }
  @keyframes demoSpin {
    to { transform: rotate(360deg); }
  }
  @keyframes demoShine {
    0%   { left: -120%; }
    55%  { left: 140%; }
    100% { left: 140%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-demo-pulse, .btn-demo-glow, .btn-demo-pulse::before, .btn-demo-pulse::after {
      animation: none;
    }
  }

  /* Amplified app rating badge */
  .hero-rating-amp {
    margin: 28px auto 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 28px;
    background: #fff;
    border: 1px solid var(--line-white);
    border-radius: 999px;
    box-shadow:
      0 16px 36px -16px rgba(15,35,71,.18),
      0 2px 6px rgba(15,35,71,.05);
  }
  .hero-orbit .hero-rating-amp {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    display: inline-flex;
  }
  .hero-rating-amp .hra-stars {
    color: var(--orange);
    font-size: 26px;
    letter-spacing: 3px;
    line-height: 1;
  }
  .hero-rating-amp .hra-main {
    display: inline-flex; align-items: baseline; gap: 2px;
    line-height: 1;
  }
  .hero-rating-amp .hra-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
  }
  .hero-rating-amp .hra-sub {
    font-size: 14.5px;
    color: var(--muted);
    border-left: 1px solid var(--line-white);
    padding-left: 18px;
    line-height: 1.35;
    text-align: left;
  }
  .hero-rating-amp .hra-sub b { color: var(--navy); font-weight: 700; }
  @media (max-width: 540px) {
    .hero-rating-amp { flex-wrap: wrap; justify-content: center; gap: 10px 16px; padding: 12px 20px; }
    .hero-rating-amp .hra-sub { border-left: 0; padding-left: 0; text-align: center; }
  }

  /* Hero subhead + eyebrow row for orbit */
  .hero-eyebrow-orbit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 6px 14px 6px 6px;
    background: #fff;
    border: 1px solid var(--line-white);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15,35,71,.04);
  }
  .hero-eyebrow-orbit .he-pill {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
  }
  .hero-eyebrow-orbit .he-sep { color: var(--muted); }
  .hero-eyebrow-orbit .he-meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
  }
  .hero-sub-orbit {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--muted);
    line-height: 1.5;
    max-width: 640px;
    margin: 18px auto 0;
    text-wrap: pretty;
  }

  /* App store + Play store badges */
  .orbit-badge {
    position: absolute;
    z-index: 7;
    background: #fff;
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow:
      0 18px 36px -14px rgba(15,35,71,.28),
      0 4px 10px -2px rgba(15,35,71,.10);
    animation: badgeFloat 5s ease-in-out infinite;
  }
  .orbit-badge .b-ic {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .orbit-badge .b-lab {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--blue);
    line-height: 1;
    text-transform: uppercase;
  }
  .orbit-badge .b-val {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-top: 3px;
    display: flex; align-items: center; gap: 4px;
  }
  .orbit-badge .b-val .star { color: var(--orange); font-size: 12px; }
  .orbit-badge.apple { top: 8%; left: 50%; transform: translateX(20%); animation-delay: .2s; z-index: 9; }
  .orbit-badge.play  { bottom: 8%; left: 50%; transform: translateX(-120%); animation-delay: 1.4s; z-index: 9; }
  @keyframes badgeFloat {
    0%, 100% { transform: translate(var(--bx, -160%), 0); }
    50%      { transform: translate(var(--bx, -160%), -6px); }
  }
  .orbit-badge.apple { --bx: 20%; }
  .orbit-badge.play  { --bx: -120%; }

  /* Feature pills around the phone (replaces store-rating badges) */
  .orbit-feat {
    position: absolute;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 10px;
    background: #fff;
    border: 1px solid var(--line-white, rgba(15,35,71,.08));
    border-radius: 999px;
    box-shadow: 0 12px 30px -10px rgba(15,35,71,.22), 0 2px 6px -2px rgba(15,35,71,.08);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #0F2347);
    letter-spacing: -0.005em;
    white-space: nowrap;
    animation: badgeFloat 5s ease-in-out infinite;
  }
  .orbit-feat .ft-ic {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--blue, #2A6FDB);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .orbit-feat .ft-ic svg { width: 14px; height: 14px; }
  .orbit-feat.feat-1 { top: 6%;   left: 50%; --bx: 30%;   animation-delay: .2s; }
  .orbit-feat.feat-2 { bottom: 8%; left: 50%; --bx: -180%; animation-delay: 1.4s; }
  .orbit-feat.feat-3 { top: 52%;  left: 50%; --bx: 90%;   animation-delay: .8s; }
  .orbit-feat.feat-2 .ft-ic { background: var(--orange, #E09415); }
  .orbit-feat.feat-3 .ft-ic { background: #2EB976; }
  @media (max-width: 720px) {
    .orbit-feat { padding: 7px 12px 7px 8px; font-size: 12.5px; gap: 6px; }
    .orbit-feat .ft-ic { width: 22px; height: 22px; }
    .orbit-feat .ft-ic svg { width: 12px; height: 12px; }
    .orbit-feat.feat-1 { top: 16%;    --bx: 20%; }
    .orbit-feat.feat-2 { bottom: 18%; --bx: -170%; }
    .orbit-feat.feat-3 { top: 50%;    --bx: 80%; }
  }

  /* Dealer orbit circles */
  .orbit-dealer {
    position: absolute;
    aspect-ratio: 1/1;
    perspective: 1000px;
    cursor: default;
    z-index: 3;
    will-change: transform;
  }

  .orbit-stage:hover .orbit-dealer:not(:hover):not(.slot-out-left):not(.slot-out-right) {
    filter: saturate(.85) brightness(.95);
    opacity: .85;
  }
  .orbit-inner {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.4,.0,.2,1);
  }
  .orbit-dealer:hover .orbit-inner {
    transform: rotateY(180deg);
  }
  .orbit-face {
    position: absolute; inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 50%;
    box-shadow:
      0 22px 42px -14px rgba(15,35,71,.38),
      0 6px 14px -4px rgba(15,35,71,.18),
      inset 0 0 0 4px #fff;
  }
  .orbit-face.front {
    background: #2A2A2A;
  }
  .orbit-face.front img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }
  .orbit-face.back {
    background: #fff;
    color: var(--navy);
    transform: rotateY(180deg);
    padding: 10% 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
    inset: 0;
    box-shadow:
      0 22px 42px -14px rgba(15,35,71,.38),
      0 6px 14px -4px rgba(15,35,71,.18),
      inset 0 0 0 4px #fff,
      inset 0 0 0 5px var(--blue-soft);
  }
  .orbit-face.back .back-logo {
    width: 56%;
    height: 36%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  .orbit-face.back .back-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  .orbit-face.back .back-logo.dark {
    background: #111418;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  }
  .orbit-face.back .back-logo.big {
    width: 82%;
    height: 48%;
  }
  .orbit-face.back .back-logo.big.dark {
    padding: 7px 9px;
  }
  .orbit-face.back .back-name {
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.15;
  }
  .orbit-face.back .back-title {
    font-size: clamp(9px, 0.9vw, 11px);
    font-weight: 600;
    color: var(--muted);
    line-height: 1.2;
    margin-top: 1px;
  }
  .orbit-face.back .back-dealership {
    font-size: clamp(9px, 0.85vw, 10.5px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 1.2;
    margin-top: 4px;
  }

  /* 4 visible slots — outer dealers (slot-0, slot-3) bigger than inner ones, tight gaps */
  .orbit-dealer {
    width: 19%;
    max-width: 210px;
    top: 50%;
    transform: translate(-50%, -50%);
    transition:
      left .6s cubic-bezier(.4,.0,.2,1),
      width .6s cubic-bezier(.4,.0,.2,1),
      transform .3s cubic-bezier(.2,.7,.3,1),
      opacity .5s ease,
      filter .35s ease,
      z-index 0s linear .35s;
  }
  .orbit-dealer.slot-0 { left: 11.5%; width: 22%; max-width: 230px; }
  .orbit-dealer.slot-1 { left: 32%;   width: 18%; max-width: 200px; }
  .orbit-dealer.slot-2 { left: 68%;   width: 18%; max-width: 200px; }
  .orbit-dealer.slot-3 { left: 88.5%; width: 22%; max-width: 230px; }
  /* off-screen slots — hidden via visibility so they can't flash through */
  .orbit-dealer.slot-out-left  { left: -22%; width: 22%; max-width: 230px; opacity: 0; visibility: hidden; pointer-events: none; }
  .orbit-dealer.slot-out-right { left: 122%; width: 22%; max-width: 230px; opacity: 0; visibility: hidden; pointer-events: none; }

  .orbit-dealer:hover {
    transform: translate(-50%, -50%) scale(1.12);
    z-index: 20;
    transition-delay: 0s;
  }

  /* Carousel arrows */
  .orbit-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line-white);
    color: var(--navy);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    box-shadow:
      0 12px 28px -10px rgba(15,35,71,.28),
      0 3px 8px -2px rgba(15,35,71,.12);
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }
  .orbit-arrow:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-50%) scale(1.08);
  }
  .orbit-arrow.prev { left: -40px; }
  .orbit-arrow.next { right: -40px; }
  @media (min-width: 1100px) {
    .orbit-arrow.prev { left: -64px; }
    .orbit-arrow.next { right: -64px; }
  }

  @media (max-width: 980px) {
    .orbit-stage { aspect-ratio: 16/10; }
    .orbit-dealer { width: 22%; }
    .orbit-phone { width: 30%; }
  }

  @media (max-width: 720px) {
    .orbit-stage { aspect-ratio: 1/1.04; max-width: 480px; }
    .orbit-phone { width: 47%; }
    .orbit-arrow.prev { left: -4px; }
    .orbit-arrow.next { right: -4px; }
    .orbit-badge { padding: 6px 12px 6px 8px; }
    .orbit-badge .b-ic { width: 26px; height: 26px; }
    .orbit-badge .b-val { font-size: 14px; }
    .orbit-badge.apple { top: 16%; transform: translateX(10%); }
    .orbit-badge.play  { bottom: 16%; transform: translateX(-110%); }
    .orbit-arrow { width: 40px; height: 40px; }
    /* show 4 dealers framing the phone — two per side, bigger and tighter */
    .orbit-dealer { width: 31%; max-width: 200px; }
    .orbit-dealer.slot-0 { display: block; left: 14%; top: 29%; width: 31%; max-width: 200px; }
    .orbit-dealer.slot-1 { display: block; left: 14%; top: 71%; width: 31%; max-width: 200px; }
    .orbit-dealer.slot-2 { display: block; left: 86%; top: 71%; width: 31%; max-width: 200px; }
    .orbit-dealer.slot-3 { display: block; left: 86%; top: 29%; width: 31%; max-width: 200px; }
  }


  /* ===== compact footer ===== */
  .site-footer { background: var(--navy); color: #B9C4DA; padding: 60px 0 26px; }
  .site-footer .ft-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
  .site-footer .ft-brand .wordmark, .site-footer .ft-brand .logo-img { margin-bottom: 16px; }
  .site-footer .ft-brand .logo-img { height: 24px; width: auto; display: block; }
  .site-footer .ft-tagline { font-size: 14px; line-height: 1.55; color: #8FA1C4; max-width: 300px; margin: 0; }
  .site-footer .ft-col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
  .site-footer .ft-h { font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #6E80A6; margin: 0 0 4px; }
  .site-footer .ft-col a { font-size: 14.5px; color: #C9D4E8; transition: color .15s; }
  .site-footer .ft-col a:hover { color: #fff; }
  .site-footer .ft-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; font-size: 13.5px; color: #8FA1C4; }
  .site-footer .ft-legal-links { display: flex; gap: 22px; margin-left: auto; }
  .site-footer .ft-legal-links a { color: #8FA1C4; transition: color .15s; }
  .site-footer .ft-legal-links a:hover { color: #fff; }
  @media (max-width: 860px) { .site-footer .ft-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; } .site-footer .ft-brand { grid-column: 1 / -1; } }
  @media (max-width: 520px) { .site-footer .ft-bottom { flex-direction: column; align-items: flex-start; gap: 10px; } .site-footer .ft-legal-links { margin-left: 0; } }

/* compact footer — image wordmark sizing (privacy/terms) */
.site-footer .ft-brand .wordmark-img { height: 26px; width: auto; display: block; margin-bottom: 16px; }
.site-footer .ft-brand .wordmark { display: inline-block; margin-bottom: 16px; }

  .site-footer .ft-brand > :first-child { display: block; margin-bottom: 18px; }
