/**
 * Landing /decouvrir/ — cockpit, épuré, identité LR
 * Source Serif 4 + Manrope · navy / blanc / laiton
 */

:root {
    --lp-bg: #ffffff;
    --lp-white: #ffffff;
    --lp-navy: #1e2a4a;
    --lp-navy-deep: #152038;
    --lp-text: #4b5675;
    --lp-muted: #78829d;
    --lp-line: #e2e5ec;
    --lp-brass: #c9a35b;
    --lp-sand: #e8dcc8;
    --lp-primary: #009ef7;
    --lp-primary-hover: #0087d1;
    --lp-font: "Inter", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
    --lp-display: "Inter", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
    --lp-nav-h: 72px;
    --lp-radius: 10px;
    --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lp-wrap-wide: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body.lp {
    margin: 0;
    font-family: var(--lp-font);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

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

.lp-wrap {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-wrap--wide {
    max-width: var(--lp-wrap-wide);
}

.lp-wrap--narrow {
    max-width: 640px;
}

section[id],
header[id],
.lp-surface[id],
.lp-proof,
.lp-legal__section[id],
.lp-decision__col[id] {
    scroll-margin-top: calc(var(--lp-nav-h) + 0.75rem);
}

/* Nav — barre blanche type SuperHote */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--lp-nav-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--lp-line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lp-nav.is-on {
    box-shadow: 0 1px 0 rgba(30, 42, 74, 0.04);
}

.lp-nav__row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lp-navy);
    letter-spacing: -0.02em;
    justify-self: start;
}

.lp-brand img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.lp-nav__links {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lp-nav__links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lp-navy);
    opacity: 0.72;
    transition: opacity 0.15s ease;
}

.lp-nav__links a:hover {
    opacity: 1;
}

.lp-nav__cta {
    justify-self: end;
}

.lp-nav__cta .lp-btn--sm {
    display: inline-flex;
    border-radius: 999px;
    padding-inline: 1.15rem;
    font-size: 0.82rem;
    min-height: 36px;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1.35rem;
    border-radius: var(--lp-radius);
    font-family: var(--lp-font);
    font-size: 0.94rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-btn--primary {
    background: var(--lp-primary);
    color: #fff;
}

.lp-btn--primary:hover {
    background: var(--lp-primary-hover);
    color: #fff;
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-navy);
    border-color: var(--lp-line);
}

.lp-btn--ghost:hover {
    border-color: var(--lp-navy);
}

.lp-btn--sm {
    min-height: 40px;
    padding: 0.45rem 1rem;
    font-size: 0.88rem;
}

.lp-btn--block {
    width: 100%;
}

/* Typography */
.lp-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--lp-navy);
}

.lp-h2 {
    margin: 0 0 1rem;
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lp-navy);
}

.lp-h3 {
    margin: 0 0 0.65rem;
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--lp-navy);
}

.lp-lead,
.lp-prose {
    margin: 0;
    font-size: 1.1rem;
    color: var(--lp-text);
}

/* Hero */
.lp-hero {
    padding: 4.5rem 0 4rem;
}

.lp-hero__inner {
    max-width: 52rem;
}

.lp-hero h1 {
    margin: 0 0 1.15rem;
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: clamp(2.15rem, 4.5vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--lp-navy);
}

.lp-hero .lp-lead {
    margin-bottom: 0.75rem;
    max-width: 28rem;
}

.lp-hero__aside {
    margin: 0 0 1.75rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.lp-hero__meta {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lp-muted);
}

/* Sections */
.lp-section {
    padding: 4rem 0;
}

.lp-section--soft {
    background: var(--lp-white);
    border-block: 1px solid var(--lp-line);
}

.lp-section--future {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-line);
}

/* Modules */
.lp-modules__head {
    max-width: 37rem;
    margin-bottom: 2rem;
}

.lp-modules__head .lp-h2 {
    margin-bottom: 0.65rem;
}

.lp-modules__head > p:last-child {
    margin: 0;
}

.lp-module-switcher {
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-module-tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-bg);
    scrollbar-width: thin;
}

.lp-module-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.55rem 0.8rem;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--lp-muted);
    font-family: var(--lp-font);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
}

.lp-module-tabs button:hover {
    color: var(--lp-navy);
}

.lp-module-tabs button.is-active {
    background: var(--lp-white);
    color: var(--lp-primary);
    box-shadow: 0 1px 3px rgba(30, 42, 74, 0.12);
}

.lp-module-panel {
    padding: 1.75rem 1.5rem;
}

.lp-module-panel__eyebrow {
    margin: 0 0 0.6rem;
    color: var(--lp-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-module-panel h3 {
    max-width: 34rem;
    margin: 0 0 0.75rem;
    color: var(--lp-navy);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.lp-module-panel__lead {
    max-width: 42rem;
    margin: 0 0 1.25rem;
}

.lp-module-panel ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-module-panel li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.95rem;
}

.lp-module-panel li::before {
    content: "";
    position: absolute;
    top: 0.63rem;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lp-brass);
}

/* What comes next */
.lp-future__head {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.lp-future__head .lp-h2 {
    margin-bottom: 0;
}

.lp-future__head > p {
    max-width: 29rem;
    margin: 0;
}

.lp-future__grid {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--lp-line);
}

.lp-future__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-future__item .lp-h3 {
    margin-bottom: 0.45rem;
}

.lp-future__item > p:last-child {
    max-width: 29rem;
    margin: 0;
    font-size: 0.96rem;
}

.lp-future__tag {
    margin: 0 0 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

/* Pricing */
.lp-pricing {
    display: grid;
    gap: 2rem;
    align-items: end;
}

.lp-pricing__copy .lp-h2 {
    font-size: clamp(2.75rem, 8vw, 4.25rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.lp-pricing__copy .lp-h2 span {
    font-size: 0.35em;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-pricing__copy p {
    margin: 0;
    max-width: 22rem;
}

.lp-pricing__card {
    padding: 1.5rem;
    border-radius: var(--lp-radius);
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-pricing__plan {
    margin: 0 0 0.85rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.lp-pricing__card ul {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.lp-pricing__card li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--lp-line);
    font-size: 0.95rem;
}

.lp-pricing__card li:last-child {
    border-bottom: 0;
}

/* Demo (legacy — override plus bas pour la landing actuelle) */
.lp-demo {
    display: block;
}

.lp-demo__copy p {
    margin: 0.75rem 0 0;
    max-width: 26rem;
}

.lp-form {
    padding: 1.5rem;
    border-radius: var(--lp-radius);
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
}

.lp-field {
    margin-bottom: 0.95rem;
}

.lp-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.lp-field label.req::after {
    content: " *";
    color: var(--lp-brass);
}

.lp-field input,
.lp-field select {
    width: 100%;
    min-height: 44px;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: var(--lp-white);
    font-family: var(--lp-font);
    font-size: 1rem;
    color: var(--lp-navy);
}

.lp-field input:focus,
.lp-field select:focus {
    outline: none;
    border-color: var(--lp-navy);
    box-shadow: 0 0 0 3px rgba(30, 42, 74, 0.1);
}

.lp-form-msg {
    margin-top: 0.9rem;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-form-msg--ok {
    background: #e8f6ec;
    color: #1f6b3a;
}

.lp-form-msg--err {
    background: #fdecea;
    color: #a11b14;
}

.lp-legal {
    margin: 0.9rem 0 0;
    font-size: 0.8rem;
    color: var(--lp-muted);
    text-align: center;
}

/* Footer */
.lp-foot {
    padding: 1.5rem 0;
    background: var(--lp-navy);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
}

.lp-foot__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-foot strong {
    color: #fff;
}

.lp-foot__faq {
    display: grid;
    margin-top: 1.25rem;
}

.lp-foot__faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-foot__faq summary {
    list-style: none;
    cursor: pointer;
    padding: 0.9rem 0;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-foot__faq summary::-webkit-details-marker {
    display: none;
}

.lp-foot__faq p {
    max-width: 42rem;
    margin: 0 0 0.9rem;
}

/* Mobile CTA */
.lp-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--lp-line);
    transform: translateY(110%);
    transition: transform 0.3s var(--lp-ease);
}

.lp-mobile-cta.is-visible {
    transform: translateY(0);
}

body.lp.mobile-cta-visible {
    padding-bottom: 5.5rem;
}

/* Reveal */
.lp-reveal {
    opacity: 1;
    transform: none;
}

/* Breakpoints */
@media (min-width: 768px) {
    .lp-nav__row {
        grid-template-columns: 1fr auto 1fr;
    }

    .lp-nav__links {
        display: flex;
    }

    .lp-nav__cta .lp-btn--sm {
        font-size: 0.88rem;
        min-height: 40px;
    }

    .lp-hero {
        padding: 5.5rem 0 5rem;
    }

    .lp-module-panel {
        padding: 2.5rem;
    }

    .lp-future__head {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: end;
    }

    .lp-future__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2.5rem;
    }

    .lp-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .lp-mobile-cta {
        display: none;
    }

    body.lp.mobile-cta-visible {
        padding-bottom: 0;
    }

    body.lp.mobile-cta-visible .lp-foot {
        padding-bottom: 1.35rem;
    }

    .lp-foot__faq {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2.5rem;
    }
}

/* Landing composition — flux d'exploitation */
.lp-hero {
    padding: 5rem 0;
}

.lp-hero__layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.lp-hero__copy {
    max-width: 34rem;
}

.lp-hero .lp-lead {
    max-width: 32rem;
    margin-bottom: 1.75rem;
}

.lp-flow-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.5rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-white);
}

.lp-flow-visual__sources,
.lp-flow-visual__outputs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lp-flow-visual__sources span,
.lp-flow-visual__outputs span {
    flex: 1 1 5rem;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 7px;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.lp-flow-visual__hub {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--lp-navy);
    color: var(--lp-white);
}

.lp-flow-visual__hub strong {
    font-size: 1rem;
}

.lp-flow-visual__hub small {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.65);
}

.lp-flow-visual__outputs span {
    background: rgba(0, 158, 247, 0.1);
    color: #0077bb;
}

.lp-section--modules {
    background: var(--lp-white);
    border-block: 1px solid var(--lp-line);
}

.lp-section-head {
    max-width: 35rem;
    margin-bottom: 2rem;
}

.lp-section-head .lp-h2 {
    margin-bottom: 0.6rem;
}

.lp-section-head > p {
    margin: 0;
}

.lp-section--future {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 158, 247, 0.06) 0%, transparent 60%),
        #f7f9fc;
    border: 0;
    border-top: 1px solid var(--lp-line);
    color: var(--lp-text);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.lp-section-head--center {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem;
    text-align: center;
}

.lp-section-head--center .lp-badge {
    margin-left: auto;
    margin-right: auto;
}

.lp-section-head--center .lp-h2 {
    margin-bottom: 0.75rem;
}

.lp-section-head--center > p {
    margin: 0 auto;
    max-width: 28rem;
    color: var(--lp-text);
}

.lp-roadmap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--lp-line);
}

.lp-roadmap__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-roadmap__item .lp-badge {
    margin-bottom: 0.75rem;
}

.lp-roadmap__item > p {
    margin: 0;
    max-width: 24rem;
    color: var(--lp-text);
    font-size: 0.94rem;
    line-height: 1.5;
}

.lp-roadmap__note {
    margin: 2rem 0 0;
    text-align: center;
    color: var(--lp-muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.lp-section--decision {
    background: var(--lp-white);
    border-top: 1px solid var(--lp-line);
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.lp-decision {
    display: grid;
    gap: 3.5rem;
}

.lp-decision__col .lp-calculator,
.lp-decision__col .lp-form--demo {
    margin-bottom: 0;
}

/* Calculateur de prix interactif (chambres → mensuel / annuel) */
.lp-calculator {
    max-width: 38rem;
    margin: 0 auto 3rem;
    padding: 1.75rem;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    background: #f7f9fc;
    text-align: center;
}

.lp-calculator__control {
    margin-bottom: 1.6rem;
}

.lp-calculator__label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--lp-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-calculator__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.lp-calculator__input {
    width: 5.5rem;
    padding: 0.2rem 0.1rem;
    border: 0;
    border-bottom: 2px solid var(--lp-primary);
    background: transparent;
    color: var(--lp-primary);
    font-family: var(--lp-font);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    -moz-appearance: textfield;
}

.lp-calculator__input:focus {
    outline: none;
    border-bottom-color: var(--lp-navy);
}

.lp-calculator__input::-webkit-outer-spin-button,
.lp-calculator__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.lp-calculator__unit {
    color: var(--lp-navy);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-calculator__range {
    width: 100%;
    height: 6px;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 999px;
    background: var(--lp-line);
    accent-color: var(--lp-primary);
    cursor: pointer;
}

.lp-calculator__range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: var(--lp-line);
}

.lp-calculator__range::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: var(--lp-line);
}

.lp-calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -8px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--lp-primary);
    box-shadow: 0 2px 8px rgba(30, 42, 74, 0.25);
    cursor: pointer;
}

.lp-calculator__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--lp-primary);
    box-shadow: 0 2px 8px rgba(30, 42, 74, 0.25);
    cursor: pointer;
}

.lp-calculator__bounds {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--lp-muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.lp-plans {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
}

.lp-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    height: 100%;
    padding: 1rem 0.85rem 1.15rem;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    background: var(--lp-white);
    text-align: center;
}

.lp-plan-card--highlight {
    border-color: rgba(0, 158, 247, 0.35);
    background: linear-gradient(180deg, rgba(0, 158, 247, 0.08) 0%, var(--lp-white) 70%);
    box-shadow: 0 8px 24px rgba(30, 42, 74, 0.08);
}

/* Emplacement badge identique sur les 2 cartes → hauteurs égales, prix alignés */
.lp-plan-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.55rem;
    margin-bottom: 0.55rem;
}

.lp-plan-card__tag {
    display: inline-block;
    max-width: 100%;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.3;
}

.lp-plan-card__label {
    margin: 0 0 0.45rem;
    color: var(--lp-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
}

.lp-plan-card__price {
    margin: 0 0 0.35rem;
    color: var(--lp-navy);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.lp-plan-card__price small {
    color: var(--lp-muted);
    font-size: 0.4em;
    font-weight: 600;
    letter-spacing: 0;
}

.lp-plan-card__note {
    margin-top: auto;
    color: var(--lp-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.lp-founders {
    margin: 0.9rem 0 0;
    color: var(--lp-muted);
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
}

.lp-form--demo {
    max-width: 34rem;
    margin: 0 auto;
}

.lp-offer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    max-width: 24rem;
}

.lp-offer__list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--lp-navy);
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.4;
}

.lp-offer__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-primary);
}

.lp-form {
    background: #f7f9fc;
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    padding: 1.5rem;
}

.lp-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1rem;
}

.lp-field--full {
    grid-column: 1 / -1;
}

.lp-legal {
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    color: var(--lp-muted);
    text-align: center;
    line-height: 1.45;
}

.lp-legal a {
    color: var(--lp-muted);
    text-decoration: underline;
}

/* Page annexe : mentions légales, CGU & confidentialité (chrome landing) */
.lp-section.lp-legal {
    padding-top: 4rem;
    padding-bottom: 5rem;
    text-align: initial;
}

.lp-legal__updated {
    margin: 0.5rem 0 0;
    color: var(--lp-muted);
    font-size: 0.85rem;
    text-align: center;
}

.lp-legal__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 2.5rem 0 3rem;
}

.lp-legal__nav a {
    padding: 0.45rem 1rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    color: var(--lp-navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.lp-legal__nav a:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-legal__section {
    padding-top: 3rem;
    border-top: 1px solid var(--lp-line);
}

.lp-legal__section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.lp-legal__section h2 {
    margin: 0 0 1.25rem;
    color: var(--lp-navy);
    font-size: 1.5rem;
    font-weight: 700;
}

.lp-legal__section h3 {
    margin: 1.75rem 0 0.6rem;
    color: var(--lp-navy);
    font-size: 1.05rem;
    font-weight: 700;
}

.lp-legal__section p,
.lp-legal__section li {
    color: var(--lp-text);
    font-size: 0.98rem;
    line-height: 1.65;
}

.lp-legal__section ul {
    margin: 0;
    padding-left: 1.25rem;
}

.lp-legal__section a {
    color: var(--lp-primary);
    text-decoration: underline;
}

.lp-section--faq {
    background: #f7f9fc;
    border-top: 1px solid var(--lp-line);
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.lp-faq {
    max-width: 42rem;
    margin: 0 auto;
    border-top: 1px solid var(--lp-line);
}

.lp-faq__item {
    border-bottom: 1px solid var(--lp-line);
}

.lp-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.75rem 1.15rem 0;
    color: var(--lp-navy);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
}

.lp-faq__item summary::-webkit-details-marker {
    display: none;
}

.lp-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-muted);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.lp-faq__item[open] summary::after {
    content: "−";
}

.lp-faq__item p {
    margin: 0 0 1.15rem;
    max-width: 38rem;
    color: var(--lp-text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-foot {
    padding: 1.35rem 0;
    background: var(--lp-navy-deep);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
}

body.lp.mobile-cta-visible .lp-foot {
    padding-bottom: calc(1.35rem + 4.5rem);
}

.lp-foot__top {
    display: grid;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-foot__brand {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.lp-foot__brand img {
    width: auto;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.lp-foot__brand strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.lp-foot__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.35rem;
}

.lp-foot__nav a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.lp-foot__nav a:hover {
    color: #fff;
}

.lp-foot__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    padding-top: 0.85rem;
}

.lp-foot__bottom p {
    margin: 0;
}

.lp-foot__tag {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

@media (min-width: 768px) {
    .lp-hero__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
        gap: 4rem;
    }

    .lp-hero--product:not(.lp-hero--centered) .lp-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.75rem;
        align-items: center;
    }

    .lp-flow-visual {
        min-height: 280px;
        grid-template-columns: 1fr 1.1fr 1fr;
        align-items: center;
    }

    .lp-flow-visual__sources,
    .lp-flow-visual__outputs {
        flex-direction: column;
    }

    .lp-flow-visual__sources span,
    .lp-flow-visual__outputs span {
        flex: 0 0 44px;
    }

    .lp-roadmap {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        border-top: 0;
    }

    .lp-roadmap__item {
        border-top: 1px solid var(--lp-line);
    }

    .lp-decision {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
    }

    .lp-decision__col--demo {
        padding-left: 3.5rem;
        border-left: 1px solid var(--lp-line);
    }

    .lp-form {
        padding: 1.75rem;
    }

    .lp-form__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-foot__top {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 2.5rem;
    }
}

/* Hero et modules — direction visuelle premium */
/* Hero produit — clair + halo bleu type SuperHote */
.lp-hero--product {
    padding: 4.5rem 0 4rem;
    background:
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 158, 247, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 95% 10%, rgba(30, 42, 74, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 5% 30%, rgba(0, 158, 247, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #eef6fc 0%, #f7fbfe 42%, #ffffff 100%);
}

.lp-hero--product .lp-hero__copy {
    max-width: 32rem;
}

.lp-hero--product .lp-badge {
    margin-bottom: 1.25rem;
}

.lp-hero--product h1 {
    margin: 0 0 1.15rem;
    color: var(--lp-navy);
    font-size: clamp(2.4rem, 5.2vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.lp-hero--product .lp-lead {
    max-width: 30rem;
    margin: 0 0 1.75rem;
    color: var(--lp-text);
    font-size: 1.08rem;
}

.lp-hero--product .lp-hero__actions {
    margin-bottom: 1.35rem;
}

.lp-hero--centered .lp-hero__layout {
    display: block;
}

.lp-hero--centered .lp-hero__copy {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.lp-hero--centered .lp-badge {
    margin-left: auto;
    margin-right: auto;
}

.lp-hero--centered .lp-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 34rem;
}

.lp-hero--centered .lp-hero__actions {
    justify-content: center;
}

.lp-hero--centered .lp-hero__trust {
    justify-content: center;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-hero__trust li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--lp-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.lp-hero__trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-primary);
}

.lp-hero__shot {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    background: var(--lp-white);
    box-shadow:
        0 24px 60px rgba(30, 42, 74, 0.1),
        0 2px 8px rgba(30, 42, 74, 0.05);
}

.lp-hero__shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 158, 247, 0.22);
    background: rgba(0, 158, 247, 0.06);
    color: var(--lp-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    max-width: 100%;
}

.lp-badge svg,
.lp-badge .ki-duotone,
.lp-badge .fas {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
    font-size: 0.85rem;
    line-height: 1;
}

.lp-badge .ki-duotone {
    color: inherit;
}

.lp-badge svg {
    display: block;
}

.lp-center {
    text-align: center;
}

.lp-center .lp-section-head__sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 34rem;
}

/* Legacy command card (conservé si réutilisé) */
.lp-hero--command {
    padding: 5.75rem 0 6rem;
    background: var(--lp-navy);
}

.lp-hero--command .lp-hero__copy h1,
.lp-hero--command .lp-lead {
    color: var(--lp-white);
}

.lp-hero--command .lp-btn--ghost {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--lp-white);
}

.lp-hero--command .lp-btn--ghost:hover {
    border-color: var(--lp-white);
}

.lp-command {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #243253;
    color: var(--lp-white);
}

.lp-command__top,
.lp-command__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lp-command__live {
    color: #75cc68;
}

.lp-command__main {
    margin: 1.75rem 0;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(11, 20, 45, 0.38);
}

.lp-command__state p {
    margin: 0 0 0.45rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.lp-command__state strong {
    display: block;
    max-width: 15rem;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.lp-command__signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.lp-command__signals span {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
}

.lp-command__signals i {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: var(--lp-primary);
}

.lp-command__signals span:nth-child(2) i {
    background: var(--lp-brass);
}

.lp-command__signals span:nth-child(3) i {
    background: #75cc68;
}

.lp-command__foot {
    justify-content: flex-start;
}

.lp-command__foot b {
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.lp-section-head--modules {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.lp-section-head--modules > p:first-child {
    color: var(--lp-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lp-section-head__sub {
    margin: 0.75rem 0 0;
    color: var(--lp-text);
    font-size: 1rem;
    line-height: 1.5;
}

.lp-module-stage {
    display: grid;
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--lp-white);
    box-shadow: 0 10px 40px rgba(30, 42, 74, 0.06);
}

.lp-module-stage .lp-module-tabs {
    display: flex;
    gap: 0.35rem;
    padding: 0.75rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-bg);
    scrollbar-width: thin;
}

.lp-module-stage .lp-module-tabs button {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 11.5rem;
    min-height: 3.5rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--lp-navy);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s var(--lp-ease), border-color 0.15s var(--lp-ease), box-shadow 0.15s var(--lp-ease);
}

.lp-module-stage .lp-module-tabs button:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--lp-line);
}

.lp-module-tab__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    color: var(--lp-navy);
}

.lp-module-tab__icon .ki-duotone,
.lp-module-tab__icon .fas {
    font-size: 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    line-height: 1;
}

.lp-module-tab__text {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.lp-module-tab__label {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--lp-navy);
}

.lp-module-tab__hint {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--lp-muted);
    line-height: 1.2;
}

.lp-module-stage .lp-module-tabs button.is-active {
    background: var(--lp-white);
    border-color: rgba(0, 158, 247, 0.35);
    box-shadow: 0 2px 10px rgba(30, 42, 74, 0.08);
}

.lp-module-stage .lp-module-tabs button.is-active .lp-module-tab__icon {
    background: rgba(0, 158, 247, 0.12);
    border-color: transparent;
    color: var(--lp-primary);
}

.lp-module-stage .lp-module-tabs button.is-active .lp-module-tab__label {
    color: var(--lp-primary);
}

/* Hauteur fixe : plus de saut au changement d’onglet */
.lp-module-panels {
    position: relative;
    height: 28rem;
    background: var(--lp-navy-deep);
}

.lp-module-stage .lp-module-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1.15rem 1.15rem 1.25rem;
    color: rgba(255, 255, 255, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s var(--lp-ease);
}

.lp-module-stage .lp-module-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lp-module-panels > .lp-module-panel[hidden] {
    display: grid;
}

.lp-module-panel__copy {
    min-width: 0;
}

.lp-module-panel__for {
    margin: 0 0 0.4rem;
    color: var(--lp-brass);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-module-stage .lp-module-panel h3 {
    max-width: 36rem;
    margin: 0 0 0.35rem;
    color: var(--lp-white);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.lp-module-stage .lp-module-panel__lead {
    max-width: 36rem;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
}

.lp-module-panel__shot {
    position: relative;
    margin: 0;
    min-height: 14rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0f1628;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.lp-module-panel__shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 768px) {
    .lp-hero--command {
        padding: 7rem 0;
    }

    .lp-command {
        padding: 1.5rem;
    }

    .lp-module-stage {
        grid-template-columns: minmax(15.5rem, 0.72fr) minmax(0, 1.28fr);
        min-height: 30rem;
    }

    .lp-module-stage .lp-module-tabs {
        display: grid;
        align-content: stretch;
        gap: 0.35rem;
        padding: 1rem;
        border-right: 1px solid var(--lp-line);
        border-bottom: 0;
        overflow: visible;
    }

    .lp-module-stage .lp-module-tabs button {
        width: 100%;
        min-width: 0;
    }

    .lp-module-panels {
        height: auto;
        min-height: 30rem;
    }

    .lp-module-stage .lp-module-panel {
        padding: 1.35rem 1.4rem 1.5rem;
        gap: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .lp-module-stage {
        min-height: 32rem;
    }

    .lp-module-panels {
        min-height: 32rem;
    }
}

/* ——— SuperHote-like : preuve visuelle verticale ——— */
.lp-surface {
    background: var(--lp-bg);
}

.lp-proof--first {
    padding-top: 4.5rem;
}

.lp-proof__label {
    margin: 0 0 0.85rem;
    color: var(--lp-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.lp-proof--direction .lp-proof__lead {
    max-width: 22rem;
}

.lp-bridge {
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.lp-bridge__text {
    margin: 0 auto;
    max-width: 28rem;
    color: var(--lp-navy);
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.lp-br-mobile {
    display: none;
}

@media (max-width: 575px) {
    .lp-br-mobile {
        display: block;
    }
}

.lp-proof {
    position: relative;
    padding: 3rem 0 3.5rem;
    background: transparent;
    overflow: visible;
}

.lp-proof__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: center;
}

.lp-proof__copy {
    max-width: 26rem;
}

.lp-proof__copy .lp-badge {
    margin-bottom: 0.95rem;
}

.lp-proof__title {
    margin: 0 0 0.75rem;
    color: var(--lp-navy);
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.lp-proof__lead {
    margin: 0 0 1.15rem;
    color: var(--lp-text);
    font-size: 1rem;
    line-height: 1.55;
}

.lp-proof__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.lp-proof__bullets li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--lp-navy);
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.4;
}

.lp-proof__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-primary);
}

.lp-proof__frame {
    margin: 0;
    width: min(100%, 30rem);
    max-width: 30rem;
    justify-self: start;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    background: #eef1f6;
    box-shadow:
        0 18px 44px rgba(30, 42, 74, 0.1),
        0 2px 6px rgba(30, 42, 74, 0.04);
}

.lp-proof__frame img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    /* Image complète (toolbar + contenu) — aucun crop type cover */
    object-fit: contain;
    object-position: center top;
    background: #eef1f6;
}

.lp-cta-band {
    padding: 2.75rem 0;
    margin: 0.5rem 0 1rem;
    background: var(--lp-navy);
    color: rgba(255, 255, 255, 0.72);
}

.lp-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.lp-cta-band__title {
    margin: 0 0 0.35rem;
    color: var(--lp-white);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.lp-cta-band p {
    margin: 0;
    max-width: 28rem;
}

.lp-cta-band .lp-btn--primary {
    flex-shrink: 0;
}

@media (min-width: 960px) {
    .lp-hero--product {
        padding: 5.75rem 0 5.25rem;
    }

    .lp-hero--product:not(.lp-hero--centered) .lp-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3.5rem;
        align-items: center;
    }

    .lp-hero--centered {
        padding: 6rem 0 5.5rem;
    }

    .lp-hero--centered h1 {
        font-size: clamp(2.6rem, 4.5vw, 3.75rem);
    }

    .lp-proof {
        padding: 4.25rem 0 4.75rem;
    }

    .lp-proof--first {
        padding-top: 5rem;
    }

    .lp-proof__inner {
        grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
        gap: 3rem 3.5rem;
        align-items: center;
    }

    .lp-proof__copy {
        max-width: 22rem;
        justify-self: start;
    }

    .lp-proof__frame {
        width: min(100%, 30rem);
        max-width: 30rem;
        justify-self: end;
        border-radius: 14px;
    }

    .lp-proof__inner--flip {
        grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
    }

    .lp-proof__inner--flip .lp-proof__copy {
        order: 2;
        justify-self: end;
    }

    .lp-proof__inner--flip .lp-proof__frame {
        order: 1;
        justify-self: start;
    }

    .lp-cta-band {
        padding: 3.25rem 0;
        margin: 0.75rem 0 1.25rem;
    }
}
