@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap");

:root {
    --bg: #f6f3ed;
    --panel: #ffffff;
    --panel-2: #f0ede5;
    --line: #e3ded3;
    --ink: #171719;
    --muted: #6b6b72;
    --faint: #9b968c;
    --tick: #22c55e;
    --o1: #f97316;
    --o2: #ec4899;
    --grad: linear-gradient(90deg, #f97316 0%, #ec4899 100%);
    --maxw: 1080px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family:
        "DM Sans",
        system-ui,
        -apple-system,
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
}

h1,
h2,
h3 {
    font-family:
        "Barlow Condensed",
        Arial Narrow,
        sans-serif;
    line-height: 0.98;
    text-transform: uppercase;
}

.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--o2);
}

.lede {
    color: var(--muted);
    font-size: 17px;
    max-width: 60ch;
}

/* top bar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #0d0d10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: relative;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-left img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.topbar-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar img {
    height: 26px;
    width: auto;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cta {
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    padding: 14px 28px;
    border-radius: 9px;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}

@keyframes bobble {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mini-cta {
        animation: none;
    }
}

@media (max-width: 640px) {
    .topbar-ctas {
        display: none;
    }
}

/* hero */
.hero {
    position: relative;
    padding: 72px 0 40px;
    text-align: center;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        680px 320px at 50% -8%,
        rgba(236, 72, 153, 0.12),
        transparent 70%
    );
    pointer-events: none;
}

.hero .wrap {
    position: relative;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(48px, 8.6vw, 98px);
    letter-spacing: 0.004em;
    margin: 16px auto 20px;
    max-width: 24ch;
    white-space: nowrap;
}

.hero .lede {
    margin: 0 auto;
    font-size: clamp(16px, 2.3vw, 20px);
}

/* section rhythm */
section {
    padding: 56px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 34px;
}

.section-head h2 {
    font-weight: 900;
    font-size: clamp(30px, 5vw, 52px);
}

/* video box */
.videohero {
    padding-top: 14px;
}

.video-shell {
    max-width: 820px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 24px 60px rgba(30, 20, 10, 0.14);
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(
        120deg,
        rgba(249, 115, 22, 0.5),
        rgba(236, 72, 153, 0.5)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
}

.video-ph .play {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
}

.video-ph .play svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
}

.video-ph .hint {
    font-family: "Oswald";
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 34ch;
}

.video-cap {
    text-align: center;
    margin-top: 14px;
    font-family: "Oswald";
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
}

/* discover */
.discover {
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ticks {
    list-style: none;
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.ticks li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: clamp(16px, 2.4vw, 20px);
}

.ticks svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

/* report showcase */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.showcase .copy h2 {
    font-weight: 900;
    font-size: clamp(28px, 4.4vw, 44px);
    margin-bottom: 16px;
}

.mock-stage {
    perspective: 1400px;
    display: flex;
    justify-content: center;
}

.mock {
    position: relative;
    width: 300px;
}

.mock .sheet-back {
    position: absolute;
    top: 14px;
    left: 18px;
    width: 100%;
    height: 100%;
    background: #101015;
    border: 1px solid var(--line);
    border-radius: 10px;
    transform: rotate(4deg);
}

.mock .cover {
    position: relative;
    background: #0a0a0c;
    color: #f4f4f6;
    border: 1px solid #26262f;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 210/297;
    box-shadow: 0 34px 70px rgba(30, 20, 10, 0.22);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.mock:hover .cover {
    transform: rotate(-1deg) translateY(-6px);
}

.mock .cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad);
}

.mock .cv-pad {
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mock .cv-eye {
    font-family: "Oswald";
    font-weight: 600;
    letter-spacing: 0.24em;
    font-size: 8px;
    text-transform: uppercase;
    color: var(--o2);
}

.mock .cv-title {
    font-family: "Barlow Condensed";
    font-weight: 900;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 0.9;
    margin-top: 10px;
}

.mock .cv-sub {
    font-family: "Barlow Condensed";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    color: #e7e7ec;
    margin-top: auto;
    line-height: 1.1;
}

.mock .cv-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 14px;
}

.mock .cv-foot .ed {
    font-family: "Oswald";
    font-size: 7px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9a9aa6;
}

.mock .cv-foot .yr {
    font-family: "Barlow Condensed";
    font-weight: 900;
    font-size: 26px;
    color: #1f1f27;
    line-height: 0.7;
}

.mock .cv-logo {
    height: 14px;
    width: auto;
    margin-top: 6px;
}

.mock .rep-img {
    width: 100%;
    border-radius: 10px;
    transform: rotate(-3deg);
    box-shadow: 0 34px 70px rgba(30, 20, 10, 0.22);
}

/* social proof */
.proof {
    background: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line);
}

.proof-quote {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(24px, 3.8vw, 38px);
    line-height: 1.05;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 720px;
    margin: 44px auto 44px;
}

.stat {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
}

.stat .n {
    font-family: "Barlow Condensed";
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
}

.stat .l {
    font-family: "Oswald";
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.team {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-top: 8px;
}

.team-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    flex-wrap: wrap;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.member figcaption {
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: #efebe2;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(30, 20, 10, 0.12);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
}

.team-note {
    text-align: center;
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 14px;
}

/* ---- google reviews slider ---- */
.reviews {
    max-width: 720px;
    margin: 6px auto 0;
}

.rv-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.rv-head .g {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Oswald";
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.rv-gicon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed";
    font-weight: 900;
    color: #4285f4;
    font-size: 16px;
}

.rv-agg {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-agg .num {
    font-family: "Barlow Condensed";
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
}

.rv-agg .stars {
    color: #fbbc04;
    font-size: 22px;
    letter-spacing: 2px;
}

.rv-count {
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faint);
}

.rv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.rv-grid.flipping {
    opacity: 0;
    transform: translateY(12px);
}

.rv-inner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 16px 40px rgba(30, 20, 10, 0.08);
    min-height: 150px;
}

.rv-top {
    display: flex;
    align-items: center;
    gap: 13px;
}

.rv-ava {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Barlow Condensed";
    font-weight: 800;
    font-size: 21px;
    flex: 0 0 46px;
}

.rv-meta {
    flex: 1;
    min-width: 0;
}

.rv-name {
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 1;
}

.rv-date {
    font-family: "Oswald";
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 4px;
}

.rv-g {
    color: #4285f4;
    font-family: "Barlow Condensed";
    font-weight: 900;
    font-size: 22px;
}

.rv-stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin: 15px 0 11px;
}

.rv-text {
    font-size: 15px;
    color: #3a3a40;
    line-height: 1.65;
}

.rv-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

.rv-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: border-color 0.15s;
}

.rv-arrow:hover {
    border-color: var(--o2);
}

.rv-arrow:focus-visible {
    outline: 2px solid var(--o2);
    outline-offset: 2px;
}

.rv-arrow svg {
    width: 18px;
    height: 18px;
}

.rv-dots {
    display: flex;
    gap: 8px;
}

.rv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.rv-dot.active {
    background: var(--o2);
    width: 22px;
    border-radius: 5px;
}

/* form */
.formsec {
    scroll-margin-top: 80px;
}

.formcard {
    max-width: 560px;
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: 0 24px 60px rgba(30, 20, 10, 0.12);
}

.formcard h2 {
    font-weight: 900;
    font-size: clamp(26px, 4vw, 40px);
    text-align: center;
    line-height: 1;
}

.formcard .sub {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0 24px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.field input,
.field select {
    width: 100%;
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 13px 14px;
    color: var(--ink);
    font-family: "DM Sans";
    font-size: 15px;
}

.field input:focus,
.field select:focus {
    outline: 2px solid var(--o2);
    outline-offset: 0;
    border-color: transparent;
}

.field .opt {
    color: var(--faint);
    text-transform: none;
    letter-spacing: 0;
    font-size: 10px;
}

.err {
    color: #f87171;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.btn-primary {
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 8px;
    background: var(--grad);
    color: #fff;
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 24px;
    padding: 18px;
    border-radius: 11px;
    box-shadow: 0 16px 44px rgba(236, 72, 153, 0.32);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(236, 72, 153, 0.42);
}

.priv {
    text-align: center;
    font-size: 11px;
    color: var(--faint);
    margin-top: 14px;
}

/* footer */
footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
}

footer .wrap {
    text-align: center;
}

footer img {
    height: 30px;
    width: auto;
    margin: 0 auto 14px;
}

.disc {
    max-width: 760px;
    margin: 18px auto 0;
}

.disc p {
    font-size: 11px;
    color: var(--faint);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* form modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(23, 23, 25, 0.62);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 18px;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: auto;
    animation: modalpop 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.modal-box .formcard {
    margin: 0;
    max-width: none;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: -14px;
    right: -6px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(30, 20, 10, 0.14);
    z-index: 2;
}

.modal-close:hover {
    border-color: var(--o2);
}

@keyframes modalpop {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal-box {
        animation: none;
    }
}

/* thank you overlay */
.thankyou {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--bg);
    overflow-y: auto;
    display: none;
}

.thankyou.show {
    display: block;
}

.ty-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 22px 72px;
    text-align: center;
}

.ty-inner .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tick);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 18px;
}

.ty-inner h2 {
    font-weight: 900;
    font-size: clamp(30px, 5.4vw, 56px);
    line-height: 1;
}

.ty-inner .lede {
    margin: 16px auto 8px;
    text-align: center;
}

.ty-offer {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    margin: 28px auto 0;
    max-width: 640px;
    text-align: left;
}

.ty-offer .t {
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 8px;
}

.ty-offer p {
    font-size: 14px;
    color: #d3d3da;
    margin-bottom: 8px;
}

.ty-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.ty-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
}

.ty-list svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.report-note {
    font-family: "Oswald";
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 14px;
}

.ctacombo {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
}

.ctacombo .formcard {
    margin: 0;
    max-width: none;
}

.ctacombo .showcase-side {
    text-align: left;
}

.ctacombo .showcase-side .copy h2 {
    font-weight: 900;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.ctacombo .showcase-side .lede {
    margin: 0;
}

.ctacombo .showcase-side .mock-stage {
    justify-content: flex-start;
    margin-top: 28px;
}

.ctacombo .showcase-side .mock {
    width: 230px;
}

@media (max-width: 860px) {
    .ctacombo {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ctacombo .showcase-side {
        text-align: center;
    }

    .ctacombo .showcase-side .mock-stage {
        justify-content: center;
    }
}

/* ---- acquisition-style layout ---- */
.announce {
    background: var(--ink);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.02em;
}

.announce .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 22px;
    text-align: center;
}

.announce .tag {
    background: var(--grad);
    color: #fff;
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 5px;
}

.announce a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--o2);
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--muted);
    box-shadow: 0 6px 18px rgba(30, 20, 10, 0.06);
}

.eyebrow-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.18);
}

.cta-big {
    width: auto;
    display: inline-block;
    margin: 34px auto 0;
    padding: 20px 46px;
    font-size: 26px;
    border-radius: 12px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
}

.hero .video-shell {
    margin: 38px auto 0;
}

.hero .video-cap {
    margin-bottom: 6px;
}

/* value stack */
.stack-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.stack-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 14px 36px rgba(30, 20, 10, 0.06);
}

.stack-num {
    font-family: "Barlow Condensed";
    font-weight: 900;
    font-size: 44px;
    line-height: 0.9;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    min-width: 58px;
}

.stack-body h3 {
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.stack-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 56ch;
}

/* faq */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: "Barlow Condensed";
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.05;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-ico {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    position: relative;
}

.faq-ico::before,
.faq-ico::after {
    content: "";
    position: absolute;
    background: var(--o2);
    border-radius: 2px;
    transition: transform 0.2s;
}

.faq-ico::before {
    top: 10px;
    left: 2px;
    width: 18px;
    height: 2.5px;
}

.faq-ico::after {
    top: 2px;
    left: 10px;
    width: 2.5px;
    height: 18px;
}

.faq-item[open] .faq-ico::after {
    transform: scaleY(0);
}

.faq-a {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 60ch;
}

/* final cta */
.finalcta {
    text-align: center;
    background: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line);
}

.finalcta h2 {
    font-weight: 900;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1;
    margin-bottom: 14px;
}

.finalcta .lede {
    margin: 0 auto;
}

.iti {
    width: 100% !important;
    display: block;
}

.iti input,
.iti input[type="tel"] {
    width: 100% !important;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .stack-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .stack-num {
        font-size: 34px;
    }

    .cta-big {
        width: 100%;
        padding: 18px;
        font-size: 22px;
    }
}

@media (max-width: 820px) {
    .showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase .copy {
        order: 2;
        text-align: center;
    }

    .showcase .copy .lede {
        margin: 0 auto;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
