/* ============================================================
   index.css — landing page only. Loads after base.css.
   ============================================================ */

/* section heading block: h2 + sub, one rhythm everywhere */
.injury-section h2 {
    text-align: center;
    font-size: clamp(1.65rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-sub {
    text-align: center;
    color: var(--body);
    font-size: 1rem;
    margin: 12px 0 var(--s5);
}

/* ============ Hero ============ */
.hero {
    background: linear-gradient(115deg, #ffffff 0%, #f7fafe 45%, #ecf3fc 100%);
    overflow: hidden;
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: end;
}

.hero-copy {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: var(--s6) 0 var(--s7);
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.65rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-copy p {
    color: var(--body);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 44ch;
}

.hero-cta {
    margin-top: var(--s1);
    font-size: 1.05rem;
    padding: 17px 30px;
}

.hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s2) 20px;
    margin-top: var(--s2);
}

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

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--disc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.benefit strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    white-space: nowrap;
}

.hero-media {
    position: relative;
    align-self: end;
}

.hero-dots {
    position: absolute;
    top: 0;
    right: -8px;
    width: clamp(150px, 17vw, 250px);
    height: clamp(150px, 17vw, 250px);
    background-image: radial-gradient(circle, #b7cdee 2px, transparent 2.5px);
    background-size: 19px 19px;
    mask-image: radial-gradient(circle at 65% 35%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 65% 35%, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-media img {
    position: relative;
    width: calc(100% + var(--pad));
    max-width: 760px;
    margin: 0 calc(-1 * var(--pad)) 0 auto;
}

/* mobile-only sticky CTA bar; JS toggles .show when the hero button scrolls away */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform 0.25s ease;
}

.sticky-cta.show {
    transform: none;
}

.sticky-cta .cta-button {
    width: 100%;
    font-size: 0.95rem;
    padding: 15px 16px;
}

/* ============ Injury types ============ */
.injury-section {
    padding-top: var(--s8);
    scroll-margin-top: var(--s2);
}

.injury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.injury-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s1);
    padding: var(--s4) 20px;
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: var(--r-md);
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease, background 0.18s ease;
}

.injury-card:hover,
.injury-card:focus-visible {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-card);
    outline: none;
}

.injury-card:active {
    transform: translateY(-1px) scale(0.985);
}

.injury-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--disc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s1);
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.18s ease;
}

.injury-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.injury-card:hover .injury-icon,
.injury-card:focus-visible .injury-icon {
    transform: scale(1.07);
}

.injury-card strong {
    font-size: var(--fs-lg);
    font-weight: 700;
}

.card-sub {
    font-size: var(--fs-sm);
    color: var(--body);
    line-height: 1.55;
    max-width: 22ch;
}

/* ============ CTA banner ============ */
.cta-banner {
    padding-top: var(--s6);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    padding: var(--s4);
    background: var(--soft);
    border-radius: var(--r-lg);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: var(--s2);
}

.cta-shield {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--disc-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.cta-shield svg {
    width: 40px;
    height: 40px;
}

.cta-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-copy strong {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-copy span {
    color: var(--body);
    font-size: var(--fs-md);
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* ============ How it works ============ */
.how-section {
    padding-top: var(--s8);
}

.how-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    margin-bottom: var(--s6);
}

.how-heading h2 {
    font-size: clamp(1.65rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.how-line {
    width: 64px;
    height: 2px;
    background: #dbe3ec;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--s2);
}

.how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 var(--s1);
}

.how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 75px;
    left: calc(50% + 50px);
    width: calc(100% - 100px);
    border-top: 3px dotted #c9d6e6;
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s2);
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--disc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s2);
    flex-shrink: 0;
    color: var(--blue);
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.how-step strong {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-sub {
    font-size: var(--fs-sm);
    color: var(--body);
    line-height: 1.55;
    max-width: 21ch;
}

/* ============ FAQ ============ */
/* last section before the footer, so it owns the gap above it */
.faq-section {
    padding: var(--s8) 0 var(--s7);
    scroll-margin-top: var(--s2);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: var(--r-md);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.faq-item[open] {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    padding: 18px var(--s3);
    cursor: pointer;
    list-style: none;
    font-family: var(--heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--navy);
}

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

.faq-item summary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    border-radius: var(--r-md);
}

/* plus sign that becomes a minus when the item opens */
.faq-icon {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--disc);
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    transform: translate(-50%, -50%);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
    background: var(--blue);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: #fff;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* height is animated by JS on open/close, so padding lives on the inner
   paragraph — otherwise it would keep the row from collapsing to zero */
.faq-answer {
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.faq-answer p {
    padding: 0 var(--s3) 20px;
    max-width: 68ch;
    color: var(--body);
    font-size: var(--fs-md);
    line-height: 1.75;
}

.faq-answer a {
    color: var(--blue);
    font-weight: 600;
}

.faq-answer b {
    color: var(--navy);
}

.faq-cta {
    max-width: 820px;
    margin: var(--s5) auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    padding: var(--s3) var(--s4);
    background: var(--soft);
    border-radius: var(--r-lg);
}

.faq-cta p {
    color: var(--body);
    font-size: var(--fs-md);
    max-width: 46ch;
}

/* ============ Trust footer ============ */
.trust-footer {
    padding: var(--s8) 0 calc(var(--s8) + var(--s3));
}

.trust-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    padding: 20px var(--s3);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}

.footer-safe {
    display: flex;
    align-items: center;
    gap: var(--s2);
}

.footer-safe-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--disc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.footer-safe-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-safe p {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-safe strong {
    font-size: var(--fs-md);
    font-weight: 700;
}

.footer-safe span {
    font-size: var(--fs-sm);
    color: var(--body);
}

.footer-safe span a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.footer-safe span a:hover,
.footer-safe span a:focus-visible {
    text-decoration: underline;
}

.footer-badges {
    display: flex;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-badge + .footer-badge {
    border-left: 1px solid var(--line);
    padding-left: var(--s3);
    margin-left: var(--s3);
}

.footer-badge svg {
    width: 26px;
    height: 26px;
    fill: #a5b0bf;
    flex-shrink: 0;
}

.footer-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-badge strong {
    font-size: var(--fs-sm);
    font-weight: 800;
    color: #55627a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-badge span {
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* ============ Footer extension ============ */
.footer-promises {
    border-top: 1px solid var(--line);
    padding: var(--s6) 0 var(--s4);
}

.footer-promises-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
}

.footer-promise {
    min-height: 190px;
    padding: var(--s4) var(--s3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-promise + .footer-promise {
    border-left: 1px solid var(--line);
}

.footer-promise-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 12px;
}

.footer-promise-icon svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.footer-promise strong {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.footer-promise > span:last-child {
    max-width: 30ch;
    margin-top: 6px;
    font-size: var(--fs-sm);
    color: var(--body);
}

/* ============ Site footer ============ */
.site-footer {
    padding: 0 0 var(--s5);
}

.footer-panel {
    padding: var(--s4);
    border: 1px solid #e1e9f4;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, #f7faff 0%, #edf4ff 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 1.4fr;
    gap: var(--s6);
    padding-bottom: var(--s4);
}

.footer-brand {
    padding-right: var(--s5);
    border-right: 1px solid #dce5f0;
}

.footer-brand img {
    width: 220px;
    height: auto;
}

.footer-brand p {
    max-width: 36ch;
    margin-top: var(--s2);
    color: var(--body);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: var(--s5);
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-nav strong {
    margin-bottom: 3px;
    font-family: var(--heading);
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--navy);
}

.footer-nav a {
    color: var(--body);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--blue);
    text-decoration: underline;
}

.legal-disclaimer {
    padding: var(--s3) 0;
    border-top: 1px solid #dce5f0;
    border-bottom: 1px solid #dce5f0;
    font-size: 0.72rem;
    line-height: 1.65;
    color: #76869a;
}

.legal-disclaimer strong {
    color: #65758a;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    padding-top: var(--s3);
}

.legal-copy {
    font-size: var(--fs-xs);
    color: var(--muted);
}

.footer-security {
    display: flex;
    align-items: center;
}

.footer-security > span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #77869a;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-security > span + span {
    margin-left: var(--s3);
    padding-left: var(--s3);
    border-left: 1px solid #d6e0ec;
}

.footer-security svg {
    width: 22px;
    height: 22px;
    fill: var(--blue);
    flex-shrink: 0;
}

.footer-security > span > span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-security strong {
    color: #596a80;
    font-size: 0.7rem;
    font-weight: 800;
}

/* ============ Landing motion ============ */
@keyframes hero-img {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.965);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-copy h1 {
    animation: rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy p {
    animation: rise 0.6s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta {
    animation: rise 0.6s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-benefits .benefit:nth-child(1) {
    animation: rise 0.55s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-benefits .benefit:nth-child(2) {
    animation: rise 0.55s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-benefits .benefit:nth-child(3) {
    animation: rise 0.55s 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media img {
    animation: hero-img 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-dots {
    animation: fade 0.9s 0.55s ease both;
}

/* icon pop-ins after their card/step reveals (no fill so hover transforms take over) */
.js .injury-card.in-view .injury-icon {
    animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
}

.js .how-step.in-view .step-icon {
    animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
}

.js .how-step.in-view .step-num {
    animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s backwards;
}

/* scroll reveal: JS adds .in-view; the html.js gate keeps content visible if JS is off */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].in-view {
    opacity: 1;
    transform: none;
}

/* once revealed, cards go back to snappy hover transitions */
.js .injury-card.in-view {
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease, background 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy h1,
    .hero-copy p,
    .hero-cta,
    .hero-benefits .benefit,
    .hero-media img,
    .hero-dots,
    .js .injury-card.in-view .injury-icon,
    .js .how-step.in-view .step-icon,
    .js .how-step.in-view .step-num {
        animation: none;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .faq-answer {
        transition: none;
    }

    .injury-card,
    .injury-icon,
    .faq-item,
    .faq-icon,
    .faq-icon::before,
    .faq-icon::after {
        transition: none;
    }

    .injury-card:active {
        transform: none;
    }

    .sticky-cta {
        transition: none;
    }
}

/* ============ Tablet (stacked, keeps left rail) ============ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .hero-copy {
        padding: var(--s4) 0 var(--s5);
    }

    .hero-media {
        justify-self: center;
        width: min(560px, 100%);
    }

    .hero-media img {
        width: 100%;
        margin: 0 auto;
    }

    .injury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        flex-wrap: wrap;
        row-gap: var(--s4);
    }

    .how-step {
        flex: 1 1 45%;
        max-width: none;
    }

    .how-step:not(:last-child)::after {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--s4);
    }

    .footer-brand {
        padding-right: 0;
        padding-bottom: var(--s4);
        border-right: 0;
        border-bottom: 1px solid #dce5f0;
    }
}

/* ============ Mobile (everything on one left rail) ============ */
@media (max-width: 640px) {
    .sticky-cta {
        display: block;
    }

    .hero-copy {
        padding: var(--s4) 0 var(--s5);
    }

    .hero-media {
        width: 100%;
    }

    .hero-media img {
        width: min(390px, 100%);
        margin: 0 auto;
    }

    .hero-dots {
        right: 6px;
        width: 110px;
        height: 110px;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        width: 100%;
        white-space: normal;
        font-size: 1rem;
        padding: 17px 18px;
    }

    /* full labels never fit two-across at 375px — stack them on the left rail instead */
    .hero-benefits {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: var(--s3);
    }

    .benefit {
        gap: 12px;
    }

    .benefit strong {
        font-size: var(--fs-sm);
        white-space: normal;
    }

    .benefit-icon {
        width: 34px;
        height: 34px;
    }

    .benefit-icon svg {
        width: 16px;
        height: 16px;
    }

    .injury-section {
        padding-top: var(--s5);
    }

    .injury-section h2,
    .section-sub {
        text-align: left;
    }

    .section-sub {
        margin-bottom: var(--s3);
    }

    .cta-banner {
        padding-top: var(--s4);
    }

    .how-section {
        padding-top: var(--s5);
    }

    .injury-grid {
        grid-template-columns: 1fr;
        gap: var(--s2);
    }

    /* cards become left-aligned rows */
    .injury-card {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "icon title"
            "icon desc";
        column-gap: var(--s2);
        row-gap: 2px;
        align-items: center;
        text-align: left;
        padding: var(--s2);
    }

    .injury-icon {
        grid-area: icon;
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .injury-icon svg {
        width: 26px;
        height: 26px;
    }

    .injury-card strong {
        grid-area: title;
        align-self: end;
        font-size: 1rem;
    }

    .card-sub {
        grid-area: desc;
        align-self: start;
        max-width: none;
        font-size: var(--fs-xs);
    }

    .cta-inner {
        flex-direction: column;
        align-items: stretch;
        padding: var(--s3);
    }

    .cta-left {
        gap: var(--s2);
    }

    .cta-shield {
        width: 56px;
        height: 56px;
    }

    .cta-shield svg {
        width: 30px;
        height: 30px;
    }

    .cta-copy strong {
        font-size: 1.1rem;
    }

    .cta-right {
        align-items: stretch;
    }

    .cta-banner .cta-button {
        width: 100%;
    }

    .how-heading {
        justify-content: flex-start;
    }

    .how-heading .how-line {
        display: none;
    }

    .how-steps {
        flex-direction: column;
        gap: var(--s3);
    }

    /* steps become left-aligned rows, number badges the icon */
    .how-step {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "icon title"
            "icon desc";
        column-gap: var(--s2);
        row-gap: 2px;
        align-items: center;
        text-align: left;
        padding: 0;
        width: 100%;
    }

    .step-icon {
        grid-area: icon;
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step-num {
        position: absolute;
        top: -5px;
        left: 40px;
        width: 22px;
        height: 22px;
        font-size: 0.72rem;
        margin-bottom: 0;
        box-shadow: 0 0 0 2px #fff;
        z-index: 2;
    }

    .how-step strong {
        grid-area: title;
        align-self: end;
        margin-bottom: 0;
    }

    .step-sub {
        grid-area: desc;
        align-self: start;
        max-width: none;
        font-size: var(--fs-xs);
    }

    .faq-section {
        padding: var(--s5) 0 var(--s6);
    }

    .faq-item summary {
        padding: 14px var(--s2);
        font-size: var(--fs-md);
        gap: 12px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
    }

    .faq-answer p {
        padding: 0 var(--s2) 16px;
        font-size: var(--fs-sm);
    }

    .faq-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        margin-top: var(--s4);
        padding: var(--s3);
    }

    .faq-cta .cta-button {
        width: 100%;
    }

    .trust-footer {
        padding: var(--s5) 0 var(--s6);
    }

    .trust-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s2);
    }

    .footer-badges {
        padding-top: var(--s2);
        border-top: 1px solid var(--line);
        width: 100%;
    }

    .footer-promises {
        padding-top: var(--s4);
    }

    .footer-promises-inner {
        grid-template-columns: 1fr;
    }

    .footer-promise {
        min-height: 0;
        padding: var(--s3);
    }

    .footer-promise + .footer-promise {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .footer-panel {
        padding: var(--s3);
    }

    .footer-brand img {
        width: 190px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--s4);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-security {
        width: 100%;
        padding-top: var(--s2);
        border-top: 1px solid #dce5f0;
    }

    .footer-security > span + span {
        margin-left: var(--s2);
        padding-left: var(--s2);
    }
}
