/*
 * Styles des pages marketing longues (accueil archivé PDF, etc.).
 * Importe marketing-base.css puis surcharge (scroll, header fixe, sections longues).
 */
@import url('/assets/css/marketing-base.css');

/* V2: réactive le scroll vertical et enlève le lock plein écran */
html:has(body.landing-page--v2) {
    height: auto;
    overflow-y: auto;
    scroll-behavior: smooth;
    /* Offset équivalent au header fixe lors des ancres (#landing-problems) */
    scroll-padding-top: calc(clamp(3.25rem, 10vw, 3.85rem) + env(safe-area-inset-top, 0px));
}

@media (prefers-reduced-motion: reduce) {
    html:has(body.landing-page--v2) {
        scroll-behavior: auto;
    }
}

body.landing-page--v2 {
    height: auto;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    /* Colonne de lecture unique (desktop) — alignée sur la section « Problèmes » */
    --landing-v2-content-max: 58rem;
    /* Hauteur réservée pour entrevoir la section suivante (scroll teaser) */
    --landing-v2-below-fold: clamp(5.25rem, 15vmin, 11rem);
    --landing-v2-header-h: clamp(3.25rem, 10vw, 3.85rem);
    /* Fond de zone .landing-final-cta — base sous le halo */
    --landing-v2-cta-gradient-floor: #fef9e8;
    /*
     * Ton pied de page aligné sur le halo .landing-final-cta__glow :
     * même rendu que le bas du linéaire (rgba(253,230,138,.45)) posé sur #fef9e8 → crème doré continu.
     */
    --landing-v2-footer-from-glow: #fef0be;
}

/* ——— Header marque V2 ——— */
.landing-v2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgb(255 255 255 / 0.86);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgb(226 232 240 / 0.65);
}

.landing-v2-header__inner {
    box-sizing: border-box;
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
    padding: max(0.65rem, env(safe-area-inset-top)) 1.25rem 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.landing-v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #0f172a;
    flex-shrink: 0;
    min-width: 0;
}

.landing-v2-brand__logo {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.landing-v2-brand__name {
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
    .landing-v2-brand:hover {
        color: #0c1222;
    }

    .landing-v2-brand:hover .landing-v2-brand__name {
        color: inherit;
    }
}

/* CTA header : même .landing-cta-premium que la page, sans span .landing-cta-premium__shine = pas de lueur animée */
.landing-v2-header-cta-form.landing-cta-premium-wrap {
    margin: 0;
    flex-shrink: 0;
}

.landing-v2-header .landing-cta-premium {
    -webkit-tap-highlight-color: transparent;
    padding: 0.56rem 1.14rem 0.5rem;
    font-size: clamp(0.8rem, 2.5vw, 0.935rem);
    box-shadow: none;
    filter: none;
}

.landing-v2-header .landing-cta-premium__title--solo {
    font-size: 1em;
}

@media (hover: hover) and (pointer: fine) {
    .landing-v2-header .landing-cta-premium:hover {
        box-shadow: none;
        filter: none;
    }
}

.landing-v2-header .landing-cta-premium:active {
    transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
    .landing-v2-header .landing-cta-premium:active {
        transform: none;
    }
}

/* Hero : colonne centrée pour empiler titre → CTA → lien (inline-flex évite sinon CTA et lien sur une même ligne) */
.landing-page--v2 .landing-splash-inner {
    max-width: var(--landing-v2-content-max);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-page--v2 .landing-splash-inner > .landing-splash-title {
    width: 100%;
}

.landing-page--v2 .landing-splash-inner .landing-cta-premium-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Sous le CTA : chevron à gauche de « En savoir plus » (ligne), ton discret */
.landing-page--v2 .landing-splash-scroll-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: clamp(1.75rem, 5vw, 2.35rem);
    margin-bottom: 0;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    -webkit-tap-highlight-color: transparent;
}

.landing-page--v2 .landing-splash-scroll-hint__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    color: #cbd5e1;
}

@media (hover: hover) and (pointer: fine) {
    .landing-page--v2 .landing-splash-scroll-hint:hover {
        color: #64748b;
    }

    .landing-page--v2 .landing-splash-scroll-hint:hover .landing-splash-scroll-hint__icon {
        color: #94a3b8;
    }
}

.landing-page--v2 .landing-splash-scroll-hint:focus-visible {
    outline: 2px solid #c9a227;
    outline-offset: 4px;
    border-radius: 6px;
}

.landing-page--v2 .landing-main--v2 {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-top: calc(var(--landing-v2-header-h) + env(safe-area-inset-top, 0px));
}

/* Hero : pas en plein viewport pour laisser entrevoir la section « Problèmes » au scroll */
.landing-page--v2 .landing-splash {
    min-height: calc(100dvh - var(--landing-v2-below-fold));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: clamp(2.25rem, 5vmin, 3rem);
    box-sizing: border-box;
}

@supports (height: 100svh) {
    .landing-page--v2 .landing-splash {
        min-height: calc(100svh - var(--landing-v2-below-fold));
    }
}

@media (max-width: 540px) {
    body.landing-page--v2 {
        /* Un peu moins de réserve sous le hero sur téléphone très court */
        --landing-v2-below-fold: clamp(4.25rem, 20vmin, 8.5rem);
    }
}

/* Section 2: problèmes/agitations */
.landing-frictions {
    position: relative;
    padding: 4.5rem 1.25rem 5rem;
    background:
        radial-gradient(60% 90% at 50% -10%, rgba(201, 162, 39, 0.12), transparent 65%),
        #ffffff;
}

.landing-frictions__inner {
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
}

.landing-frictions__eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.landing-frictions__title {
    margin: 0;
    font-size: clamp(1.4rem, 4.1vw, 2.2rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #0c1222;
    text-wrap: balance;
    max-width: 40rem;
}

.landing-frictions__list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
    max-width: 46rem;
}

.landing-frictions__icon {
    flex: 0 0 auto;
    font-size: 1.62rem;
    font-weight: 700;
    line-height: 1;
    color: #dc2626;
    margin-top: 0.08rem;
}

.landing-frictions__line {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: clamp(1rem, 2.2vw, 1.08rem);
    line-height: 1.48;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.landing-frictions__cta-wrap {
    margin: 2rem 0 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .landing-frictions {
        padding-top: 3.6rem;
        padding-bottom: 4rem;
    }
}

/* Section: contenu du produit — liste + alternance image gauche/droite */
.landing-deliverables {
    padding: clamp(3.75rem, 9vw, 6rem) 1.25rem clamp(4.5rem, 10vw, 7rem);
    background: #ffffff;
}

.landing-deliverables__inner {
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
}

.landing-deliverables__head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.landing-deliverables__eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.landing-deliverables__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.4rem, 3.9vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0c1222;
}

.landing-deliverables__lede {
    margin: 0;
    font-size: clamp(0.95rem, 2.15vw, 1.05rem);
    line-height: 1.62;
    color: #475569;
}

.landing-deliverables__lede strong {
    color: #0f172a;
    font-weight: 600;
}

.landing-deliverables__list {
    margin: clamp(2.25rem, 5vw, 3rem) 0 0;
    padding: 0;
    list-style: none;
}

/* Ligne : mock-up + texte côte à côte (alternance gauche/droite) */
.landing-deliverables__row {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: minmax(10.5rem, 13rem) minmax(0, 1fr);
    align-items: center;
    gap: 1.35rem clamp(1.1rem, 3.5vw, 2rem);
    padding: 1.85rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.landing-deliverables__row:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(10.5rem, 13rem);
}

.landing-deliverables__row:nth-child(even) .landing-deliverables__cover-wrap {
    grid-column: 2;
    justify-self: end;
}

.landing-deliverables__row:nth-child(odd) .landing-deliverables__cover-wrap {
    justify-self: start;
}

.landing-deliverables__row:nth-child(even) .landing-deliverables__body {
    grid-column: 1;
    text-align: right;
}

.landing-deliverables__row:nth-child(odd) .landing-deliverables__body {
    text-align: left;
}

.landing-deliverables__row:first-child {
    padding-top: 0;
}

.landing-deliverables__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Mockup cover : halo doré unifié, plus marqué, pas de cadre */
.landing-deliverables__cover-wrap {
    position: relative;
    display: block;
    line-height: 0;
    width: 100%;
    max-width: 13rem;
}

.landing-deliverables__cover-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 0%;
    width: 118%;
    height: 48%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(26px);
    opacity: 0.95;
    border-radius: 50%;
}

.landing-deliverables__cover {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

.landing-deliverables__body {
    min-width: 0;
}

.landing-deliverables__pdf-num {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.landing-deliverables__name {
    margin: 0 0 0.5rem;
    font-size: clamp(1.05rem, 2.35vw, 1.1875rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.landing-deliverables__desc {
    margin: 0;
    font-size: clamp(0.9rem, 1.95vw, 0.9625rem);
    line-height: 1.58;
    color: #64748b;
}

@media (max-width: 580px) {
    .landing-deliverables__row {
        grid-template-columns: minmax(8.75rem, 10.5rem) minmax(0, 1fr);
        gap: 0.9rem 1rem;
        padding: 1.35rem 0;
    }

    .landing-deliverables__row:nth-child(even) {
        grid-template-columns: minmax(0, 1fr) minmax(8.75rem, 10.5rem);
    }

    .landing-deliverables__cover-wrap::before {
        filter: blur(20px);
        opacity: 0.9;
    }
}

@media (max-width: 420px) {
    /* Très étroit : ligne conservée mais colonnes plus serrées */
    .landing-deliverables__row {
        grid-template-columns: minmax(7.25rem, 8.5rem) minmax(0, 1fr);
        gap: 0.65rem 0.65rem;
    }

    .landing-deliverables__row:nth-child(even) {
        grid-template-columns: minmax(0, 1fr) minmax(7.25rem, 8.5rem);
    }

    .landing-deliverables__cover-wrap {
        max-width: none;
    }

    .landing-deliverables__desc {
        font-size: 0.875rem;
    }
}

/* Section : avis clients (carrousel minimal) */
.landing-proof {
    padding: clamp(3.25rem, 7vw, 4.5rem) 1.25rem clamp(3.75rem, 8vw, 5.25rem);
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
}

.landing-proof__inner {
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
}

.landing-proof__title {
    margin: 0 0 1.75rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    color: #0f172a;
}

.landing-proof__carousel-shell {
    position: relative;
}

.landing-proof__viewport {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.landing-proof__viewport::-webkit-scrollbar {
    display: none;
}

.landing-proof__mist {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(7rem, 32%);
    z-index: 2;
    pointer-events: none;
}

.landing-proof__mist--before {
    left: 0;
    background: linear-gradient(
        to right,
        rgb(250 250 250) 0%,
        rgb(250 250 250 / 0.92) 15%,
        rgb(250 250 250 / 0.5) 45%,
        rgb(250 250 250 / 0.12) 75%,
        rgb(250 250 250 / 0) 100%
    );
}

.landing-proof__mist--after {
    right: 0;
    background: linear-gradient(
        to left,
        rgb(250 250 250) 0%,
        rgb(250 250 250 / 0.92) 15%,
        rgb(250 250 250 / 0.5) 45%,
        rgb(250 250 250 / 0.12) 75%,
        rgb(250 250 250 / 0) 100%
    );
}

.landing-proof__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: var(--proof-gap, 14px);
}

.landing-proof__slide {
    flex: 0 0 var(--proof-slide, 280px);
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.landing-proof__card {
    margin: 0 auto;
    max-width: 34rem;
    padding: clamp(1.35rem, 4vw, 1.85rem) clamp(1.25rem, 4vw, 1.85rem);
    border-radius: 14px;
    border: 1px solid #e8ecf1;
    background: linear-gradient(165deg, #ffffff 0%, #fafbfc 100%);
}

.landing-proof__quote {
    margin: 0;
    padding: 0 0 0 1rem;
    border: none;
    border-left: 2px solid #d4bc5c;
}

.landing-proof__quote p {
    margin: 0;
    font-size: clamp(0.94rem, 2.1vw, 1rem);
    line-height: 1.65;
    color: #334155;
}

.landing-proof__meta {
    margin: 1.1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    font-style: normal;
}

.landing-proof__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.landing-proof__role {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.landing-proof__pager {
    margin: 1.35rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.landing-proof__dot {
    position: relative;
    width: 0.65rem;
    height: 0.65rem;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: 0.85;
    -webkit-tap-highlight-color: transparent;
}

.landing-proof__dot-hit {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-proof__dot:focus-visible .landing-proof__dot-hit {
    outline: 2px solid #c9a227;
    outline-offset: 2px;
}

.landing-proof__dot:hover .landing-proof__dot-hit {
    background: #94a3b8;
}

.landing-proof__dot.is-active .landing-proof__dot-hit {
    background: #b8952e;
    transform: scale(1.25);
}

.landing-proof__dot.is-active {
    opacity: 1;
}

/* Section : FAQ accordéon */
.landing-faq {
    padding: clamp(3.5rem, 8vw, 5.25rem) 1.25rem clamp(4rem, 9vw, 6rem);
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.landing-faq__inner {
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
}

.landing-faq__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.landing-faq__title {
    margin: 0 0 clamp(1.75rem, 4vw, 2.35rem);
    font-size: clamp(1.25rem, 3.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.22;
    color: #0c1222;
}

.landing-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.landing-faq__item:first-child {
    border-top: 1px solid #e5e7eb;
}

.landing-faq__trigger {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    margin: 0;
    padding: 1.05rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.landing-faq__trigger:focus-visible {
    outline: 2px solid #c9a227;
    outline-offset: 2px;
}

.landing-faq__trigger:focus:not(:focus-visible) {
    outline: none;
}

.landing-faq__trigger:active {
    color: inherit;
    background: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .landing-faq__trigger:hover .landing-faq__question {
        color: #0c1222;
    }
}

.landing-faq__question {
    flex: 1;
    font-size: clamp(0.9375rem, 2vw, 1.0125rem);
    font-weight: 600;
    line-height: 1.42;
    color: #0f172a;
}

.landing-faq__icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: transform 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

.landing-faq__bar {
    position: absolute;
    background: #94a3b8;
    border-radius: 1px;
    transition: background 0.25s ease;
}

.landing-faq__bar--h {
    width: 14px;
    height: 2px;
    left: 0;
    top: 6px;
}

.landing-faq__bar--v {
    width: 2px;
    height: 14px;
    left: 6px;
    top: 0;
}

.landing-faq__item.is-open .landing-faq__icon {
    transform: rotate(45deg);
}

.landing-faq__item.is-open .landing-faq__bar {
    background: #0f172a;
}

.landing-faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

.landing-faq__item.is-open .landing-faq__panel {
    grid-template-rows: 1fr;
}

.landing-faq__panel-inner {
    overflow: hidden;
    min-height: 0;
}

.landing-faq__panel-inner p {
    margin: 0;
    padding: 0 0 1.1rem;
    font-size: 0.9275rem;
    line-height: 1.65;
    color: #64748b;
}

@media (prefers-reduced-motion: reduce) {
    .landing-faq__panel,
    .landing-faq__bar,
    .landing-faq__icon {
        transition: none;
    }
}

/* CTA final — base de page, gradient or remontant */
.landing-final-cta {
    position: relative;
    margin-top: 0;
    padding: clamp(3.75rem, 10vw, 6.5rem) 1.25rem clamp(3.25rem, 9vw, 5rem);
    overflow: clip;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fffef8 42%,
        var(--landing-v2-cta-gradient-floor) 100%
    );
}

.landing-final-cta__glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(62vh, 22rem);
    pointer-events: none;
    background:
        radial-gradient(ellipse 130% 90% at 50% 110%, rgba(201, 162, 39, 0.28), transparent 58%),
        linear-gradient(to top, rgba(253, 230, 138, 0.45) 0%, rgba(254, 252, 232, 0.35) 42%, transparent 100%);
}

.landing-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
    text-align: center;
}

.landing-final-cta__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.landing-final-cta__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.5rem, 4.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #0c1222;
}

.landing-final-cta__line {
    margin: 0 0 1.35rem;
    font-size: clamp(0.94rem, 2.15vw, 1.035rem);
    line-height: 1.5;
    color: #475569;
}

.landing-final-cta__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.85rem;
    margin-bottom: 1.85rem;
    font-variant-numeric: tabular-nums;
}

.landing-final-cta__was {
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.landing-final-cta__arrow {
    font-size: 0.85rem;
    color: #c9a227;
    font-weight: 600;
}

.landing-final-cta__now {
    font-size: clamp(1.35rem, 3.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
}

.landing-final-cta__form {
    margin: 0;
    display: flex;
    justify-content: center;
}

.landing-final-cta__btn.landing-cta-premium {
    width: 100%;
    max-width: 22rem;
}

/* ——— Footer : fond uni = ton du bas du gradient du halo (.landing-final-cta__glow) composé sur le crème CTA ——— */
.landing-v2-footer {
    margin-top: -1px;
    padding: clamp(2rem, 5.5vw, 3rem) 1.25rem;
    padding-bottom: max(clamp(1.75rem, 4vw, 2.35rem), env(safe-area-inset-bottom));
    color: #334155;
}

.landing-v2-footer__inner {
    max-width: var(--landing-v2-content-max);
    margin: 0 auto;
    text-align: center;
}

.landing-v2-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.9rem;
}

.landing-v2-footer__link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
    .landing-v2-footer__link:hover {
        color: #0f172a;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
}

.landing-v2-footer__sep {
    color: rgb(100 116 139 / 0.45);
    user-select: none;
}

.landing-v2-footer__meta {
    margin: clamp(1.1rem, 3vw, 1.5rem) 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 400px) {
    .landing-final-cta__price-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .landing-final-cta__arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    html:has(body.landing-page--v2),
    body.landing-page--v2 {
        height: auto;
        position: static;
        width: auto;
        overflow-y: auto;
    }
}
