/* ===========================================================
   ONZO Landing v3 — bright, photo-driven, trust-first.
   ONZO purple + neutrals only. Solid confident bands vs. airy
   white — no lavender-gradient-on-white. Everything scoped under
   body.landing-v3 so it can't collide with landing.css / v2 / admin.
   Display: Cabinet Grotesk · Body: General Sans.
   =========================================================== */

/* ---------- Design tokens ---------- */
.landing-v3 {
    --v3-purple-50:  #f5f3ff;
    --v3-purple-100: #ede9fe;
    --v3-purple-200: #ddd6fe;
    --v3-purple-300: #c4b5fd;
    --v3-purple-400: #a78bfa;
    --v3-purple-500: #8b5cf6;
    --v3-purple-600: #7b42f6;   /* brand primary */
    --v3-purple-700: #6d28d9;
    --v3-purple-800: #5a2fcf;
    --v3-deep:       #2a0e45;   /* solid deep-purple bands / footer */
    --v3-deep-2:     #1b0930;

    --v3-ink:    #0f172a;       /* headings */
    --v3-text:   #475569;       /* body */
    --v3-muted:  #7b8398;
    --v3-line:   #e9e4f7;       /* purple-tinted hairline */

    --v3-canvas: #ffffff;
    --v3-bg:     #f7f5ff;       /* lavender off-white */
    --v3-card:   #ffffff;
    --v3-tint:   #efeaff;

    --v3-display: "Cabinet Grotesk", "General Sans", system-ui, sans-serif;
    --v3-body:    "General Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

    --v3-r-sm: 12px;
    --v3-r-md: 18px;
    --v3-r-lg: 26px;
    --v3-r-xl: 34px;
    --v3-pill: 999px;

    --v3-sh-sm: 0 2px 8px rgba(76, 29, 149, .06);
    --v3-sh-md: 0 14px 34px rgba(76, 29, 149, .12);
    --v3-sh-lg: 0 34px 70px rgba(46, 16, 101, .22);

    --v3-nav-h: 78px;
    --v3-section-y: 112px;
}

/* ---------- Reset / base ---------- */
body.landing-v3 {
    margin: 0;
    font-family: var(--v3-body);
    color: var(--v3-text);
    background: var(--v3-canvas);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.landing-v3 h1,
body.landing-v3 h2,
body.landing-v3 h3,
body.landing-v3 h4 {
    margin: 0;
    color: var(--v3-ink);
    font-family: var(--v3-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

body.landing-v3 p { margin: 0; }

/* :where() keeps this at near-zero specificity so any component class
   (.v3-btn--primary, .v3-store, .v3-service__link…) sets its own color.
   Avoids the `body.landing a` specificity trap from landing.css. */
:where(body.landing-v3) a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

body.landing-v3 ul { margin: 0; padding: 0; list-style: none; }
body.landing-v3 img { max-width: 100%; height: auto; display: block; }

body.landing-v3 .container { max-width: 1180px; }

/* ===========================================================
   Shared utilities
   =========================================================== */

/* Eyebrow pill */
.v3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-family: var(--v3-body);
    font-weight: 600;
    font-size: .82rem;
    color: var(--v3-purple-700);
    background: var(--v3-purple-50);
    border: 1px solid var(--v3-purple-200);
    padding: .42rem .9rem;
    border-radius: var(--v3-pill);
}
.v3-eyebrow .bi-star-fill { color: var(--v3-purple-600); font-size: .8em; }

/* Highlighted headline word */
.v3-hl { color: var(--v3-purple-600); }

/* Buttons */
.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--v3-body);
    font-weight: 600;
    font-size: .98rem;
    line-height: 1;
    padding: .85rem 1.5rem;
    border-radius: var(--v3-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .22s ease, background .2s ease;
}
.v3-btn--primary {
    background: var(--v3-purple-600);
    color: #fff;
    box-shadow: 0 10px 22px rgba(123, 66, 246, .32);
}
.v3-btn--primary:hover {
    background: var(--v3-purple-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(123, 66, 246, .4);
}
.v3-btn .bi-arrow-right { transition: transform .2s ease; }
.v3-btn--primary:hover .bi-arrow-right { transform: translateX(3px); }

/* App-store style button (ink) */
.v3-store {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: var(--v3-ink);
    color: #fff;
    padding: .62rem 1.25rem;
    border-radius: var(--v3-r-md);
    border: 1px solid var(--v3-ink);
    transition: transform .18s ease, box-shadow .22s ease, background .2s ease;
}
.v3-store:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--v3-sh-md); background: #1c2740; }
.v3-store .bi { font-size: 1.5rem; }
.v3-store span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.v3-store small { font-size: .62rem; opacity: .82; letter-spacing: .03em; }
.v3-store strong { font-family: var(--v3-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.v3-store--ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.v3-store--ghost:hover { background: rgba(255,255,255,.12); }

/* Overlapping avatar stack */
.v3-avatars { display: inline-flex; }
.v3-avatars span {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -12px;
    box-shadow: var(--v3-sh-sm);
}
.v3-avatars span:first-child { margin-left: 0; }
.v3-avatars span:nth-child(1) { background: linear-gradient(135deg, #a78bfa, #7b42f6); }
.v3-avatars span:nth-child(2) { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }
.v3-avatars span:nth-child(3) { background: linear-gradient(135deg, #8b5cf6, #5a2fcf); }
.v3-avatars span:nth-child(4) { background: linear-gradient(135deg, #ddd6fe, #a78bfa); }

/* Load-in fade (gated by prefers-reduced-motion below) */
.v3-fade { opacity: 0; transform: translateY(16px); animation: v3-fade-up .7s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0ms); }
@keyframes v3-fade-up { to { opacity: 1; transform: none; } }

/* ===========================================================
   Nav — two-tier: utility strip + sticky main bar
   =========================================================== */
.v3-nav { position: relative; z-index: 100; }

/* Utility strip */
.v3-util {
    background: var(--v3-deep);
    color: rgba(255, 255, 255, .66);
    font-size: .8rem;
}
.v3-util__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 40px;
}
.v3-util__group { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.v3-util__group li { display: inline-flex; align-items: center; gap: .45rem; }
.v3-util__group .bi { color: var(--v3-purple-400); font-size: .92em; }
.v3-util a { color: rgba(255, 255, 255, .82); }
.v3-util a:hover { color: #fff; }
.v3-util__social { gap: .8rem !important; }
.v3-util__social a { font-size: .95rem; opacity: .85; }
.v3-util__social a:hover { opacity: 1; }

/* Main bar (sticky) */
.v3-bar {
    position: sticky; top: 0; z-index: 101;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--v3-line);
    transition: box-shadow .25s ease, background .25s ease;
}
.v3-bar.is-scrolled { background: rgba(255, 255, 255, .97); box-shadow: 0 12px 32px rgba(46, 16, 101, .10); }
.v3-bar__inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: var(--v3-nav-h);
}
.v3-bar__brand { display: inline-flex; align-items: center; gap: .6rem; }
.v3-bar__brand img { width: 38px; height: 38px; }
.v3-bar__brand span { font-family: var(--v3-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; color: var(--v3-ink); }
.v3-bar__toggle {
    display: none;
    background: var(--v3-purple-50);
    border: 1px solid var(--v3-purple-200);
    color: var(--v3-purple-700);
    width: 46px; height: 46px;
    border-radius: var(--v3-r-sm);
    font-size: 1.45rem; cursor: pointer;
}
.v3-bar__menu { display: flex; align-items: center; gap: 2rem; }
.v3-bar__links { display: flex; align-items: center; gap: .35rem; }
.v3-bar__links a {
    position: relative; display: inline-block;
    padding: .5rem .55rem;
    font-weight: 500; font-size: .98rem; color: var(--v3-text);
}
.v3-bar__links a::after {
    content: ""; position: absolute; left: .55rem; right: .55rem; bottom: .05rem;
    height: 2px; border-radius: 2px; background: var(--v3-purple-600);
    transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.v3-bar__links a:hover { color: var(--v3-ink); }
.v3-bar__links a:hover::after { transform: scaleX(1); }
.v3-bar__links a.is-active { color: var(--v3-purple-700); font-weight: 600; }
.v3-bar__links a.is-active::after { transform: scaleX(1); }
.v3-bar__cta { padding: .68rem 1.3rem; font-size: .92rem; }

/* Desktop layout: brand left · links centered · CTA right */
@media (min-width: 992px) {
    .v3-bar__inner { display: grid; grid-template-columns: 1fr auto 1fr; flex-wrap: nowrap; }
    .v3-bar__brand { grid-column: 1; justify-self: start; }
    .v3-bar__menu { display: contents !important; }
    .v3-bar__links { grid-column: 2; justify-self: center; }
    .v3-bar__cta { grid-column: 3; justify-self: end; }
}

/* ===========================================================
   Hero
   =========================================================== */
.v3-hero {
    position: relative;
    background: linear-gradient(180deg, var(--v3-bg) 0%, var(--v3-canvas) 92%);
    padding: clamp(54px, 7vw, 92px) 0 clamp(72px, 8vw, 118px);
    overflow: hidden;
}
.v3-hero__glow {
    position: absolute;
    top: -24%; right: -10%;
    width: 60vw; max-width: 760px; aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(123, 66, 246, .22), rgba(123, 66, 246, 0) 62%);
    pointer-events: none;
}
.v3-hero__grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(123, 66, 246, .10) 1.2px, transparent 1.3px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
    pointer-events: none;
}
.v3-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.v3-hero__copy { min-width: 0; }
.v3-hero__title {
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    font-weight: 900;
    margin: 1.3rem 0 1.1rem;
}
.v3-hero__lead {
    font-size: clamp(1.04rem, 1.4vw, 1.2rem);
    color: var(--v3-text);
    max-width: 33rem;
}
.v3-hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.9rem 0 1.7rem; }
.v3-hero__proof { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.v3-hero__proof-text { font-size: .95rem; color: var(--v3-muted); }
.v3-hero__proof-text strong { color: var(--v3-ink); font-weight: 700; }

/* Hero media */
.v3-hero__media { position: relative; min-width: 0; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.v3-hero__panel {
    position: absolute;
    width: 86%; height: 84%;
    right: 2%; top: 8%;
    background: linear-gradient(155deg, var(--v3-purple-600), var(--v3-purple-800));
    border-radius: var(--v3-r-xl);
    transform: rotate(4deg);
    box-shadow: var(--v3-sh-lg);
}
.v3-hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.4px);
    background-size: 22px 22px;
    opacity: .5;
}

/* Phone */
.v3-phone {
    position: relative;
    z-index: 2;
    width: clamp(240px, 26vw, 300px);
    padding: 11px;
    background: #0b1020;
    border-radius: 46px;
    box-shadow: var(--v3-sh-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.v3-phone__notch {
    position: absolute;
    top: 20px; left: 50%; transform: translateX(-50%);
    width: 42%; height: 22px;
    background: #0b1020;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.v3-phone__screen { width: 100%; border-radius: 36px; display: block; }

/* Floating cards */
.v3-track-card {
    position: absolute;
    z-index: 4;
    left: -6%; bottom: 12%;
    display: flex; align-items: center; gap: .75rem;
    background: #fff;
    padding: .8rem 1.1rem;
    border-radius: var(--v3-r-md);
    box-shadow: var(--v3-sh-md);
    border: 1px solid var(--v3-line);
    animation: v3-float 5.5s ease-in-out infinite;
}
.v3-track-card__pulse {
    position: relative;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--v3-purple-600);
    flex: none;
}
.v3-track-card__pulse::after {
    content: "";
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--v3-purple-400);
    animation: v3-ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
.v3-track-card__label { font-size: .72rem; color: var(--v3-muted); font-weight: 600; }
.v3-track-card__eta { font-size: .92rem; color: var(--v3-ink); font-weight: 600; }
.v3-track-card__eta strong { color: var(--v3-purple-700); }

.v3-rate-card {
    position: absolute;
    z-index: 4;
    right: -4%; top: 10%;
    display: flex; align-items: center; gap: .65rem;
    background: #fff;
    padding: .7rem 1rem;
    border-radius: var(--v3-r-md);
    box-shadow: var(--v3-sh-md);
    border: 1px solid var(--v3-line);
    animation: v3-float 6.5s ease-in-out infinite .8s;
}
.v3-rate-card .bi { font-size: 1.7rem; color: var(--v3-purple-600); }
.v3-rate-card strong { display: block; font-size: .9rem; color: var(--v3-ink); font-weight: 700; line-height: 1.1; }
.v3-rate-card small { font-size: .72rem; color: var(--v3-muted); }

@keyframes v3-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes v3-ping { 0% { transform: scale(.7); opacity: .9; } 80%,100% { transform: scale(2.1); opacity: 0; } }

/* ===========================================================
   Footer
   =========================================================== */
.v3-footer {
    background: linear-gradient(180deg, var(--v3-deep) 0%, var(--v3-deep-2) 100%);
    color: rgba(255, 255, 255, .72);
    padding: clamp(56px, 7vw, 84px) 0 2rem;
}
.v3-footer__top {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.v3-footer__brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.v3-footer__brand span { font-family: var(--v3-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; }
.v3-footer__tag { margin: 1rem 0 1.5rem; max-width: 22rem; font-size: .96rem; }
.v3-footer__stores { display: flex; flex-wrap: wrap; gap: .7rem; }
.v3-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.v3-footer__col h4 { color: #fff; font-family: var(--v3-display); font-size: 1.04rem; font-weight: 700; margin-bottom: 1rem; }
.v3-footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.v3-footer__col a { font-size: .94rem; color: rgba(255, 255, 255, .68); }
.v3-footer__col a:hover { color: #fff; }

.v3-footer__bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.8rem;
    font-size: .88rem;
}
.v3-footer__social { display: flex; gap: .6rem; }
.v3-footer__social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1rem;
    transition: background .2s ease, transform .18s ease;
}
.v3-footer__social a:hover { background: var(--v3-purple-600); transform: translateY(-2px); }
.v3-footer__flag { color: rgba(255, 255, 255, .6); }

/* ===========================================================
   Section shell (shared)
   =========================================================== */
.v3-section { padding: var(--v3-section-y) 0; }
.v3-section--tint { background: var(--v3-bg); }
.v3-section__head { max-width: 660px; margin: 0 auto clamp(2.6rem, 4vw, 3.8rem); text-align: center; }
.v3-section__head .v3-eyebrow { margin-bottom: 1rem; }
.v3-section__title { font-size: clamp(2rem, 3.6vw, 3.05rem); margin: 0 0 .9rem; }
.v3-section__sub { font-size: clamp(1.02rem, 1.3vw, 1.15rem); color: var(--v3-text); }

/* ===========================================================
   Trust strip (overlaps the hero)
   =========================================================== */
.v3-trust { background: var(--v3-canvas); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.v3-trust__bar {
    position: relative;
    z-index: 5;
    margin-top: -3.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-lg);
    box-shadow: var(--v3-sh-md);
    overflow: hidden;
}
.v3-trust__item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.35rem 1.5rem;
    border-left: 1px solid var(--v3-line);
}
.v3-trust__item:first-child { border-left: none; }
.v3-trust__icon {
    width: 46px; height: 46px; flex: none;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--v3-purple-50);
    color: var(--v3-purple-600);
    font-size: 1.3rem;
}
.v3-trust__meta { display: flex; flex-direction: column; line-height: 1.2; }
.v3-trust__meta strong { font-family: var(--v3-display); font-weight: 800; font-size: 1.32rem; color: var(--v3-ink); letter-spacing: -.02em; }
.v3-trust__meta small { font-size: .85rem; color: var(--v3-muted); }

/* ===========================================================
   Features
   =========================================================== */
.v3-features__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
.v3-feature {
    background: var(--v3-card);
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-lg);
    padding: 1.9rem 1.6rem;
    transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.v3-feature:hover { transform: translateY(-6px); box-shadow: var(--v3-sh-md); border-color: var(--v3-purple-200); }
.v3-feature__icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: linear-gradient(150deg, var(--v3-purple-100), var(--v3-purple-50));
    color: var(--v3-purple-600);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.v3-feature__title { font-size: 1.2rem; margin-bottom: .55rem; }
.v3-feature__text { font-size: .96rem; color: var(--v3-text); }

/* ===========================================================
   Services
   =========================================================== */
.v3-services__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.v3-service {
    display: flex;
    flex-direction: column;
    background: var(--v3-card);
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-lg);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}
.v3-service:hover { transform: translateY(-6px); box-shadow: var(--v3-sh-lg); }
.v3-service__media { position: relative; aspect-ratio: 4 / 3; background: var(--v3-tint); overflow: hidden; }
.v3-service__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.v3-service:hover .v3-service__media img { transform: scale(1.06); }
.v3-service__badge {
    position: absolute; top: .85rem; left: .85rem; z-index: 2;
    font-size: .72rem; font-weight: 600;
    background: var(--v3-purple-600); color: #fff;
    padding: .32rem .72rem; border-radius: var(--v3-pill);
    box-shadow: 0 6px 14px rgba(123, 66, 246, .35);
}
.v3-service__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.4rem 1.5rem; }
.v3-service__title { font-size: 1.2rem; margin-bottom: .5rem; }
.v3-service__text { font-size: .92rem; color: var(--v3-text); margin-bottom: 1.1rem; flex: 1; }
.v3-service__link {
    display: inline-flex; align-items: center; gap: .4rem;
    align-self: flex-start;
    font-weight: 600; font-size: .95rem;
    color: var(--v3-purple-700);
}
.v3-service__link .bi { transition: transform .2s ease; }
.v3-service__link:hover { color: var(--v3-purple-800); }
.v3-service__link:hover .bi { transform: translateX(4px); }

/* ===========================================================
   Page hero (sub-pages)
   =========================================================== */
.v3-pagehero {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(180deg, var(--v3-bg) 0%, var(--v3-canvas) 100%);
    padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
}
.v3-pagehero__glow {
    position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
    width: 70vw; max-width: 820px; aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(123, 66, 246, .16), rgba(123, 66, 246, 0) 60%);
    pointer-events: none;
}
.v3-pagehero__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(123, 66, 246, .10) 1.2px, transparent 1.3px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 68%);
    mask-image: radial-gradient(circle at 50% 0%, #000, transparent 68%);
    pointer-events: none;
}
.v3-pagehero__inner { position: relative; }
.v3-pagehero__inner .v3-eyebrow { margin-bottom: 1rem; }
.v3-pagehero__title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 900; }
.v3-pagehero__sub { max-width: 40rem; margin: 1.1rem auto 0; font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--v3-text); }
.v3-pagehero__crumb {
    display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem;
    font-size: .85rem; color: var(--v3-muted);
}
.v3-pagehero__crumb a { color: var(--v3-purple-700); font-weight: 600; }
.v3-pagehero__crumb .bi { font-size: .68rem; }

/* ===========================================================
   How-it-works steps
   =========================================================== */
.v3-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
.v3-step {
    position: relative;
    background: var(--v3-card);
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-lg);
    padding: 2rem 1.5rem 1.7rem;
}
.v3-step__no { display: block; font-family: var(--v3-display); font-weight: 800; font-size: 2.6rem; line-height: 1; letter-spacing: -.03em; color: var(--v3-purple-200); }
.v3-step__icon {
    position: absolute; top: 1.8rem; right: 1.5rem;
    width: 46px; height: 46px; display: grid; place-items: center;
    border-radius: 14px; background: var(--v3-purple-50); color: var(--v3-purple-600); font-size: 1.3rem;
}
.v3-step__title { font-size: 1.18rem; margin: 1rem 0 .5rem; }
.v3-step__text { font-size: .95rem; color: var(--v3-text); }

/* ===========================================================
   About — intro + stat band
   =========================================================== */
.v3-about__intro { max-width: 46rem; margin: 0 auto clamp(2.4rem, 4vw, 3.4rem); text-align: center; }
.v3-about__intro p { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 500; line-height: 1.5; color: var(--v3-ink); }
.v3-statband {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    background: linear-gradient(135deg, var(--v3-purple-700), var(--v3-deep));
    border-radius: var(--v3-r-xl); overflow: hidden; box-shadow: var(--v3-sh-lg);
}
.v3-statband__item { padding: 2.2rem 1.5rem; text-align: center; border-left: 1px solid rgba(255, 255, 255, .12); }
.v3-statband__item:first-child { border-left: none; }
.v3-statband__item strong { display: block; font-family: var(--v3-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.02em; color: #fff; }
.v3-statband__item span { font-size: .9rem; color: rgba(255, 255, 255, .7); }

/* ===========================================================
   Contact
   =========================================================== */
.v3-contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.v3-contact__heading { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: .7rem; }
.v3-contact__lead { color: var(--v3-text); margin-bottom: 2rem; }
.v3-contact__list { display: flex; flex-direction: column; gap: 1.1rem; }
.v3-contact__item { display: flex; align-items: center; gap: 1rem; }
.v3-contact__icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 14px; background: var(--v3-purple-50); color: var(--v3-purple-600); font-size: 1.25rem; }
.v3-contact__meta { display: flex; flex-direction: column; line-height: 1.3; }
.v3-contact__meta small { font-size: .8rem; color: var(--v3-muted); }
.v3-contact__meta a, .v3-contact__meta strong { font-weight: 600; font-size: 1.02rem; color: var(--v3-ink); }
.v3-contact__meta a:hover { color: var(--v3-purple-700); }
.v3-contact__form {
    background: var(--v3-card);
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-lg);
    box-shadow: var(--v3-sh-md);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    display: flex; flex-direction: column; gap: 1.1rem;
}
.v3-field { display: flex; flex-direction: column; gap: .4rem; }
.v3-field label { font-size: .88rem; font-weight: 600; color: var(--v3-ink); }
.v3-field input, .v3-field textarea {
    font-family: var(--v3-body); font-size: 1rem; color: var(--v3-ink);
    background: var(--v3-bg);
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-sm);
    padding: .8rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.v3-field input::placeholder, .v3-field textarea::placeholder { color: var(--v3-muted); }
.v3-field input:focus, .v3-field textarea:focus {
    outline: none; background: #fff; border-color: var(--v3-purple-400);
    box-shadow: 0 0 0 4px rgba(123, 66, 246, .12);
}
.v3-field textarea { resize: vertical; min-height: 120px; }
.v3-contact__submit { align-self: flex-start; margin-top: .3rem; }

/* ===========================================================
   CTA band (shared, id=download)
   =========================================================== */
.v3-cta { background: var(--v3-canvas); padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 96px); }
.v3-eyebrow--on-dark { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); color: #fff; }
.v3-cta__panel {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, var(--v3-purple-600), var(--v3-purple-800) 58%, var(--v3-deep));
    border-radius: var(--v3-r-xl);
    padding: clamp(2.6rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
    box-shadow: var(--v3-sh-lg);
}
.v3-cta__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1.4px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(circle at 82% 0%, #000, transparent 58%);
    mask-image: radial-gradient(circle at 82% 0%, #000, transparent 58%);
    pointer-events: none;
}
.v3-cta__content { position: relative; max-width: 38rem; margin: 0 auto; }
.v3-cta__title { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin: 1rem 0 .9rem; }
.v3-cta__text { color: rgba(255, 255, 255, .82); font-size: 1.08rem; margin-bottom: 1.8rem; }
.v3-cta__buttons { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.v3-store--light { background: #fff; color: var(--v3-ink); border-color: #fff; }
.v3-store--light:hover { background: #fff; color: var(--v3-ink); transform: translateY(-2px); box-shadow: var(--v3-sh-lg); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 991.98px) {
    .v3-bar__toggle { display: inline-flex; }
    .v3-bar__menu {
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: .6rem 0 1.1rem;
    }
    .v3-bar__links { flex-direction: column; align-items: stretch; gap: .2rem; }
    .v3-bar__links a { padding: .65rem .2rem; }
    .v3-bar__links a::after { display: none; }
    .v3-bar__cta { width: 100%; }
    .v3-util__group--end { display: none; }
    .v3-util__inner { justify-content: center; }

    .v3-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v3-statband { grid-template-columns: repeat(2, 1fr); }
    .v3-statband__item:nth-child(odd) { border-left: none; }
    .v3-statband__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
    .v3-contact { grid-template-columns: 1fr; }

    .v3-hero__inner { grid-template-columns: minmax(0, 1fr); text-align: center; }
    .v3-hero__lead { margin-inline: auto; }
    .v3-hero__cta, .v3-hero__proof { justify-content: center; }
    .v3-hero__media { order: -1; min-height: 460px; margin-bottom: 1rem; }

    .v3-features__grid,
    .v3-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .v3-trust__bar { grid-template-columns: repeat(2, 1fr); }
    .v3-trust__item { border-left: none; border-top: 1px solid var(--v3-line); }
    .v3-trust__item:nth-child(1), .v3-trust__item:nth-child(2) { border-top: none; }
    .v3-trust__item:nth-child(even) { border-left: 1px solid var(--v3-line); }

    .v3-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .v3-hero__title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
    .v3-hero__proof { justify-content: center; }
    .v3-hero__proof-text { font-size: .9rem; }
    .v3-hero__cta { flex-direction: column; }
    .v3-store { width: 100%; justify-content: center; }
    .v3-hero__media { min-height: 420px; }
    .v3-track-card { left: -2%; }
    .v3-rate-card { right: -2%; }
    .v3-section { padding: 72px 0; }
    .v3-features__grid,
    .v3-services__grid { grid-template-columns: 1fr; }
    .v3-trust__bar { grid-template-columns: 1fr; margin-top: -2rem; }
    .v3-trust__item { border-left: none !important; border-top: 1px solid var(--v3-line); }
    .v3-trust__item:first-child { border-top: none; }
    .v3-steps { grid-template-columns: 1fr; }
    .v3-statband { grid-template-columns: 1fr; }
    .v3-statband__item { border-left: none !important; border-top: 1px solid rgba(255, 255, 255, .12); }
    .v3-statband__item:first-child { border-top: none; }
    .v3-footer__links { grid-template-columns: 1fr 1fr; }
    .v3-footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
    body.landing-v3 * { animation: none !important; transition: none !important; }
    .v3-fade { opacity: 1; transform: none; }
}
