:root {
    --ink: #16242f;
    --muted: #607281;
    --bg: #f2f7fa;
    --paper: rgba(255, 255, 255, 0.88);
    --paper-strong: #ffffff;
    --line: rgba(22, 36, 47, 0.10);
    --line-strong: rgba(22, 36, 47, 0.18);
    --gold: #cfdce8;
    --wine: #3f6177;
    --forest: #1d4f61;
    --danger: #c0564d;
    --success: #1f7a63;
    --shadow: 0 28px 74px rgba(18, 42, 58, 0.10);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* { box-sizing: border-box; }

.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;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at 10% 12%, rgba(130, 182, 206, 0.18), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(29, 79, 97, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f8 52%, #f6f9fb 100%);
}

a { color: inherit; text-decoration: none; }

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 253, 0.86);
    border-bottom: 1px solid rgba(29, 79, 97, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 94px;
}

.topbar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(20, 53, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 1.05rem;
}

.topbar-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.topbar-menu {
    display: none;
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(20, 53, 47, 0.08);
    box-shadow: 0 12px 28px rgba(12, 24, 21, 0.08);
    gap: 12px;
    z-index: 39;
    width: 100%;
}

.topbar.menu-open .topbar-menu { display: grid; }
.topbar-menu .button { width: 100%; }

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand-mark {
    width: 88px;
    height: 60px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(29, 79, 97, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241, 247, 251, 0.98));
    box-shadow: 0 12px 24px rgba(18, 42, 58, 0.08);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.brand-kicker {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 6px;
}

.brand-name {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.72rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
    min-width: 0;
    overflow-wrap: anywhere;
}

.topbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.topbar-actions.hero-actions,
.topbar-actions.plan-actions,
.topbar-actions.form-actions {
    justify-content: flex-start;
}

.topbar-actions.hero-actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    min-height: 50px;
    padding: 14px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    box-shadow: 0 18px 34px rgba(29, 79, 97, 0.22);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255,255,255,0.82);
    border-color: var(--line);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    padding: 12px;
    border-radius: 22px;
    background: rgba(248, 251, 253, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(18, 42, 58, 0.18);
    backdrop-filter: blur(18px);
}

.mobile-sticky-cta .button {
    width: 100%;
    padding: 15px 18px;
}

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 102px;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(29, 79, 97, 0.22);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.scroll-top.visible {
    display: inline-flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover { transform: translateY(-2px); }

.hero {
    padding: 54px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 28px;
}

.hero-panel,
.stat-card,
.showcase-card,
.benefit-card,
.offer-card,
.offer-support-card,
.plan-card,
.trust-card,
.faq-card,
.lead-form-card,
.lead-promise-card,
.cta-band {
    border: 1px solid rgba(20, 53, 47, 0.10);
    background: rgba(255, 253, 250, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 54px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(188, 217, 232, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,251,0.95));
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 53, 47, 0.12), transparent 70%);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--brand);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1, h2, h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.15rem, 4vw, 4.1rem);
    max-width: 11.5ch;
}

h2 { font-size: clamp(1.95rem, 3vw, 3rem); }
h3 {
    font-size: clamp(1.28rem, 1.8vw, 1.68rem);
    line-height: 1.22;
}

.hero-text,
.section-copy,
.benefit-card p,
.offer-support-card p,
.trust-card p,
.faq-card p,
.lead-form-card p,
.lead-promise-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.hero-text {
    margin-top: 20px;
    max-width: 58ch;
    font-size: 1.06rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(29, 79, 97, 0.06);
    border: 1px solid rgba(29, 79, 97, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-proof i,
.showcase-item i,
.offer-feature i {
    color: var(--brand);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    flex-shrink: 0;
    font-size: 0.78rem;
    box-shadow: 0 10px 18px rgba(29, 79, 97, 0.18);
}

.mini-item i,
.lead-promise-item i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    flex-shrink: 0;
    font-size: 0.78rem;
    box-shadow: 0 10px 18px rgba(29, 79, 97, 0.18);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.hero-point {
    padding: 18px 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(29, 79, 97, 0.08);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-stack {
    display: grid;
    gap: 26px;
}

.stat-card,
.showcase-card {
    padding: 34px;
}

.stat-card-primary {
    color: #f6f3ee;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
}

.stat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(235, 246, 252, 0.84);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-value {
    font-size: clamp(1.95rem, 3vw, 3rem);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.stat-card-primary p {
    color: rgba(246,243,238,0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.showcase-head strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.showcase-list,
.offer-features,
.plan-limits,
.plan-features,
.lead-promise-list,
.mini-list {
    display: grid;
    gap: 16px;
}

.showcase-item,
.offer-feature,
.plan-limit,
.plan-feature,
.lead-promise-item,
.mini-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.65;
    font-size: 0.98rem;
    color: var(--muted);
}

.section {
    padding: 56px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.section-head-centered {
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.benefits-grid,
.plans-grid,
.trust-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

.pain-list-wrap {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 32px 34px;
    border: 1px solid rgba(20, 53, 47, 0.10);
    background: rgba(255, 253, 250, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.pain-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.pain-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
}

.pain-list i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(185, 71, 63, 0.10);
    color: var(--danger);
    flex-shrink: 0;
    font-size: 0.86rem;
}

.impact-band {
    margin-top: 22px;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    color: #f7fbfd;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 18px 34px rgba(29, 79, 97, 0.24);
}

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

.benefit-card,
.offer-support-card,
.lead-form-card,
.lead-promise-card,
.trust-card {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,251,0.93));
}

.offer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 26px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    color: #f6f3ee;
    background:
        radial-gradient(circle at top right, rgba(190, 220, 235, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(84, 162, 195, 0.98), rgba(29, 79, 97, 0.98));
    border-color: rgba(190, 220, 235, 0.20);
}

.offer-card::before,
.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 30%);
    pointer-events: none;
}

.offer-badge,
.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #eef8fc;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offer-price,
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
}

.offer-price strong,
.plan-price strong {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.offer-subtitle {
    max-width: 42ch;
    color: rgba(246,243,238,0.82);
    line-height: 1.7;
    font-size: 1rem;
}

.offer-card .offer-feature {
    color: rgba(246,243,238,0.86);
}

.offer-support {
    display: grid;
    gap: 22px;
}

.urgency-card {
    background:
        radial-gradient(circle at top right, rgba(188, 217, 232, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,251,0.93));
}

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,251,0.95));
    min-height: 100%;
}

.plan-card.is-featured {
    background:
        radial-gradient(circle at top right, rgba(188, 217, 232, 0.20), transparent 28%),
        linear-gradient(180deg, rgba(73, 146, 178, 0.98), rgba(29,79,97,0.98));
    color: #f8fbfd;
    border-color: rgba(188, 217, 232, 0.26);
    transform: translateY(-8px);
}

.plan-card.is-featured .plan-muted,
.plan-card.is-featured .plan-feature,
.plan-card.is-featured .plan-limit {
    color: rgba(248,251,253,0.86);
}

.plan-card.is-featured .plan-limit i,
.plan-card.is-featured .plan-feature i {
    color: #f4fbff;
}

.plan-muted {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.98rem;
}

.plan-card .plan-badge {
    align-self: flex-start;
    background: rgba(29, 79, 97, 0.08);
    color: var(--brand);
}

.plan-card.is-featured .plan-badge {
    background: rgba(255,255,255,0.14);
    color: #eff9fc;
}

.plan-card .plan-actions {
    margin-top: auto;
    padding-top: 8px;
}

.plan-card .button {
    width: 100%;
}

.offer-support-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.trust-grid,
.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card blockquote {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    font-weight: 500;
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
}

.lead-alert {
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
    line-height: 1.65;
}

.lead-alert.success {
    background: rgba(15, 106, 79, 0.10);
    border: 1px solid rgba(15, 106, 79, 0.18);
    color: var(--success);
}

.lead-alert.error {
    background: rgba(185, 71, 63, 0.10);
    border: 1px solid rgba(185, 71, 63, 0.18);
    color: #8b2f28;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lead-field {
    display: grid;
    gap: 9px;
}

.lead-field label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wine);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
    width: 100%;
    border: 1px solid rgba(29, 23, 20, 0.12);
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    border-radius: 16px;
    min-height: 54px;
    padding: 15px 18px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
    border-color: rgba(13, 82, 74, 0.34);
    box-shadow: 0 0 0 4px rgba(13, 82, 74, 0.08);
}

.lead-field textarea {
    min-height: 132px;
    padding-top: 16px;
    resize: vertical;
}

.lead-form-footnote {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-card {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,251,0.93));
}

.faq-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}

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

.faq-card summary h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.faq-card summary i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(13, 82, 74, 0.08);
    color: var(--brand);
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-card[open] summary i {
    transform: rotate(45deg);
    background: rgba(13, 82, 74, 0.14);
}

.faq-answer {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(29, 23, 20, 0.08);
}

.cta-band {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        radial-gradient(circle at left center, rgba(188, 217, 232, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.97), rgba(241,247,251,0.96));
}

.footer {
    padding: 26px 0 42px;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .offer-layout,
    .benefits-grid,
    .lead-grid,
    .trust-grid,
    .faq-grid,
    .offer-support-inline {
        grid-template-columns: 1fr;
    }

    .plan-card.is-featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .topbar-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .topbar-inner {
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        align-items: center;
        gap: 12px;
    }

    .brand-mark { display: none; }

    .brand-name {
        font-size: clamp(1.05rem, 4.4vw, 1.35rem);
        line-height: 1.18;
    }

    .topbar .topbar-actions { display: none; }

    .topbar-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 16px 0;
        border-top: 1px solid rgba(20, 53, 47, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: none;
    }

    .topbar-menu .button {
        width: 100%;
        min-height: 54px;
        padding: 16px 18px;
        font-size: 1rem;
    }

    .topbar-menu .button + .button {
        margin-top: 12px;
    }

    .hero-panel,
    .stat-card,
    .showcase-card,
    .benefit-card,
    .offer-card,
    .offer-support-card,
    .plan-card,
    .trust-card,
    .lead-form-card,
    .lead-promise-card,
    .cta-band {
        padding: 22px;
    }

    h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8.2vw, 2.65rem);
        line-height: 1.06;
    }

    h2 {
        font-size: clamp(1.6rem, 6.4vw, 2.15rem);
        line-height: 1.08;
    }

    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-points,
    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .pain-list-wrap {
        padding: 22px 20px;
    }

    .pain-list li {
        align-items: flex-start;
        font-size: 1rem;
    }

    .topbar-actions.hero-actions,
    .topbar-actions.plan-actions,
    .topbar-actions.form-actions,
    .topbar-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
    }

    .topbar-actions.hero-actions {
        margin-top: 28px;
    }

    .topbar-actions .button {
        flex: 1 1 100%;
        min-width: 0;
    }

    .cta-band {
        flex-direction: column;
        gap: 22px;
    }

    .mobile-sticky-cta { display: block; }

    .scroll-top {
        right: 16px;
        bottom: 110px;
    }

    body { padding-bottom: 108px; }
}
