.ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .ic svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
        vertical-align: -.125em
    }

:root {
    --ink: #09090d;
    --card: #141920;
    --field: #1a2230;
    --field2: #1f2a3c;
    --border: rgba(255,255,255,.09);
    --border2: rgba(255,255,255,.15);
    --amber: #d4853a;
    --amber-l: #f0a54e;
    --amber-xl: #ffc26a;
    --glow: rgba(212,133,58,.2);
    --text: #dde3ed;
    --muted: #5a6478;
    --muted2: #8494a8;
    --ok: #4caf7d;
    --err: #e05a5a;
    --grad: linear-gradient(135deg,#d4853a,#ffc26a);
    --f: 'Poppins',sans-serif;
    --tr: .25s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--f);
    background: var(--ink);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--ink)
}

::-webkit-scrollbar-thumb {
    background: var(--amber);
    border-radius: 3px
}

.site-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden
}

.page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: absolute;
    inset: 0
}

#page-landing {
    z-index: 2;
    transition: opacity .5s ease,transform .5s cubic-bezier(.4,0,.2,1)
}

#page-form {
    z-index: 1;
    opacity: 0;
    transform: translateX(55px);
    pointer-events: none;
    transition: opacity .5s ease,transform .5s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
    height: 0;
    overflow: hidden
}

#page-landing.slide-out {
    opacity: 0;
    transform: translateX(-55px);
    pointer-events: none;
    z-index: 1
}

#page-form.slide-in {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 2;
    visibility: visible;
    height: auto;
    overflow: visible
}

@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

.left {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden
}

.left-bg {
    position: absolute;
    inset: 0;
    background: url('/images/personal-trainer-gym-workout.png') center/cover no-repeat;
    filter: brightness(.65) saturate(1.1);
    transform: scale(1.03);
    transition: transform 9s ease
}

.left:hover .left-bg {
    transform: scale(1)
}

/* Slider stilleri */
.left-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--ink);
}

.slide {
    position: absolute;
    inset: 0;
    filter: brightness(.85) saturate(1.1);
    transition: opacity 1.5s ease;
    opacity: 0;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide.active {
    opacity: 1;
}

.left:hover .slide {
    transform: scale(1);
}

.left-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,transparent 55%,var(--ink) 100%),linear-gradient(to top,rgba(9,9,13,.6) 0%,transparent 50%)
}

.left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,transparent,var(--amber),transparent);
    opacity: .6
}

.logo {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    z-index: 2;
    animation: fd .6s ease both
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain
}

.logo-fb {
    width: 38px;
    height: 38px;
    background: var(--grad);
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0
}

.left-text {
    position: absolute;
    bottom: 3rem;
    left: 2.5rem;
    right: 3rem;
    z-index: 2;
    animation: fu .7s .1s ease both
}

.left-display-text {
    font-size: clamp(2.4rem,4vw,3.8rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin: 0
}

    .left-display-text em {
        font-style: normal;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block
    }

.right-landing {
    background: var(--card);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.8rem 3.5rem;
    position: relative;
    overflow: hidden
}

#fw-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10
}

.landing-inner {
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    flex: 1
}

.lnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fd .5s ease both
}

.l-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber-l);
    background: rgba(212,133,58,.07);
    border: 1px solid rgba(212,133,58,.2);
    padding: .3rem .8rem;
    border-radius: 999px;
    width: fit-content;
    animation: fu .5s .05s ease both
}

.l-headline {
    font-size: clamp(1.55rem,2.3vw,2.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: .55rem;
    animation: fu .55s .1s ease both
}

    .l-headline em {
        font-style: normal;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

.l-sub {
    font-size: .82rem;
    color: var(--muted2);
    line-height: 1.65;
    max-width: 370px;
    margin-bottom: 1.6rem;
    animation: fu .55s .15s ease both
}

.l-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.6rem
}

.l-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    animation: fu .55s ease both
}

    .l-item:nth-child(1) {
        animation-delay: .2s
    }

    .l-item:nth-child(2) {
        animation-delay: .3s
    }

    .l-item:nth-child(3) {
        animation-delay: .4s
    }

    .l-item:nth-child(4) {
        animation-delay: .5s
    }

.l-ic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(212,133,58,.08);
    border: 1px solid rgba(212,133,58,.18);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-l);
    font-size: .88rem
}

.l-text strong {
    display: block;
    font-size: .83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .06rem
}

.l-text span {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.5
}

.l-div {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.07);
    margin-bottom: 1.4rem;
    animation: fu .5s .6s ease both
}

.l-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    animation: fu .5s .65s ease both
}

.l-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--grad);
    color: #1c0e00;
    font-family: var(--f);
    font-size: .92rem;
    font-weight: 800;
    padding: .82rem 1.6rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 28px var(--glow);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1),box-shadow .4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    animation: ctaBreathe 2.2s ease-in-out infinite
}

@keyframes ctaBreathe {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 8px 28px rgba(212,133,58,.35)
    }

    50% {
        transform: scale(1.055);
        box-shadow: 0 14px 38px rgba(212,133,58,.6)
    }
}

.l-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    transform: translateX(-100%);
    transition: transform .7s ease
}

.l-cta:hover::before {
    transform: translateX(100%)
}

.l-cta:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 16px 40px rgba(212,133,58,.55);
    animation-play-state: paused
}

.l-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: auto;
    animation: fu .5s .75s ease both
}

.lt-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    color: var(--muted)
}

.right {
    background: var(--card);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.8rem 3.5rem;
    overflow-y: auto;
    position: relative
}

.tnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
    animation: fd .5s ease both
}

    .tnav img {
        height: 28px;
        width: auto;
        object-fit: contain
    }

.back {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
    background: none;
    border: none;
    font-family: var(--f);
    cursor: pointer;
    transition: color var(--tr)
}

    .back:hover {
        color: var(--amber-l)
    }

.info-banner {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    background: rgba(212,133,58,.07);
    border: 1px solid rgba(212,133,58,.18);
    border-radius: 8px;
    padding: .7rem 1rem;
    font-size: .78rem;
    color: var(--amber-l);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 1.8rem;
    animation: fu .5s .05s ease both
}

.prog {
    display: flex;
    gap: .35rem;
    margin-bottom: 2rem;
    animation: fu .5s .1s ease both
}

.pd {
    height: 2px;
    flex: 1;
    border-radius: 99px;
    background: rgba(255,255,255,.08);
    transition: background .4s
}

    .pd.done {
        background: var(--ok)
    }

    .pd.on {
        background: var(--amber)
    }

.step {
    display: none;
    animation: si .28s ease
}

    .step.active {
        display: block
    }

@keyframes si {
    from {
        opacity: 0;
        transform: translateX(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fg {
    margin-bottom: 1.2rem
}

    .fg label {
        display: flex;
        align-items: center;
        gap: .38rem;
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: .42rem
    }

.row {
    display: flex;
    gap: .8rem
}

    .row .fg {
        flex: 1
    }

.fi {
    width: 100%;
    background: var(--field);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    color: var(--text);
    font-family: var(--f);
    font-size: .9rem;
    padding: .75rem .95rem;
    outline: none;
    transition: border-color var(--tr),box-shadow var(--tr);
    -webkit-appearance: none;
    appearance: none
}

    .fi::placeholder {
        color: rgba(255,255,255,.18)
    }

    .fi:focus {
        border-color: var(--amber);
        box-shadow: 0 0 0 3px var(--glow)
    }

    .fi.err {
        border-color: var(--err);
        box-shadow: 0 0 0 3px rgba(224,90,90,.12)
    }

textarea.fi {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
    max-width: 100%
}

input[type=number].fi {
    -moz-appearance: textfield
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.num-wrap {
    display: flex;
    width: 100%
}

    .num-wrap input[type=number].fi {
        flex: 1;
        border-radius: 9px 0 0 9px;
        border-right: none
    }

        .num-wrap input[type=number].fi:focus ~ .spin-btns {
            border-color: var(--amber)
        }

        .num-wrap input[type=number].fi.err ~ .spin-btns {
            border-color: var(--err)
        }

.spin-btns {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border);
    border-left: none;
    border-radius: 0 9px 9px 0;
    overflow: hidden;
    background: var(--field2);
    transition: border-color var(--tr);
    flex-shrink: 0
}

.spin-btn {
    flex: 1;
    width: 32px;
    background: transparent;
    border: none;
    color: var(--amber-l);
    font-size: .6rem;
    cursor: pointer;
    transition: background var(--tr),color var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 50%;
    touch-action: manipulation
}

    .spin-btn:hover {
        background: var(--glow);
        color: var(--amber-xl)
    }

    .spin-btn:active {
        background: rgba(212,133,58,.3)
    }

    .spin-btn + .spin-btn {
        border-top: 1px solid var(--border)
    }

.em {
    font-size: .7rem;
    color: #e07a7a;
    margin-top: .28rem;
    display: none
}

    .em.show {
        display: block
    }

.server-err {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    background: rgba(224,90,90,.08);
    border: 1px solid rgba(224,90,90,.3);
    border-radius: 8px;
    padding: .7rem 1rem;
    font-size: .78rem;
    color: #e07a7a;
    line-height: 1.55
}

    .server-err.show {
        visibility: visible;
        height: auto;
        overflow: visible;
        margin-bottom: 1rem
    }

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

    .pills input {
        display: none
    }

    .pills label {
        padding: .44rem .88rem;
        background: var(--field);
        border: 1.5px solid var(--border);
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 500;
        color: var(--muted);
        cursor: pointer;
        transition: all var(--tr);
        display: flex;
        align-items: center;
        gap: .35rem
    }

        .pills label:hover {
            border-color: rgba(212,133,58,.4);
            color: var(--amber-l);
            background: rgba(212,133,58,.05)
        }

    .pills input[type=radio]:checked + label {
        background: var(--glow);
        border-color: var(--amber);
        color: var(--amber-l)
    }

    .pills input[type=checkbox]:checked + label {
        background: var(--glow) !important;
        border-color: var(--amber) !important;
        color: var(--amber-l) !important
    }

    .pills input:focus-visible + label {
        outline: 2px solid var(--amber);
        outline-offset: 2px
    }

.fi-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,var(--amber) 0%,var(--amber) var(--pct,28.5%),rgba(255,255,255,.1) var(--pct,28.5%),rgba(255,255,255,.1) 100%);
    margin-bottom: .4rem
}

    .fi-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--grad);
        border: 3px solid var(--card);
        box-shadow: 0 3px 10px var(--glow);
        cursor: pointer;
        transition: transform var(--tr);
        touch-action: pan-x
    }

        .fi-range::-webkit-slider-thumb:hover {
            transform: scale(1.15)
        }

.rl {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    color: var(--muted)
}

.rv {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-top: .35rem
}

.nav {
    display: flex;
    gap: .65rem;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border)
}

.btn {
    flex: 1;
    padding: .8rem 1rem;
    border-radius: 9px;
    font-family: var(--f);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    transition: all var(--tr)
}

.btn-back {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--muted);
    flex: 0 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem
}

    .btn-back:hover {
        border-color: var(--amber);
        color: var(--amber-l)
    }

.btn-next, .btn-go {
    background: var(--grad);
    color: #1c0e00;
    box-shadow: 0 6px 20px var(--glow)
}

    .btn-next:hover, .btn-go:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(212,133,58,.4)
    }

.btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important
}

.success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
    animation: pop .45s cubic-bezier(.34,1.56,.64,1) both
}

    .success.active {
        display: block
    }

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.s-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(76,175,125,.1);
    border: 2px solid rgba(76,175,125,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--ok);
    animation: pulse 2s ease infinite
}

@keyframes pulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(76,175,125,.25)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(76,175,125,0)
    }
}

.success h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .6rem
}

.success p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.6rem
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    padding: .9rem 1.8rem;
    border-radius: 9px;
    font-family: var(--f);
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37,211,102,.25);
    transition: all var(--tr);
    text-decoration: none
}

    .wa-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(37,211,102,.4)
    }

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: auto;
    padding-top: 2rem
}

.ti {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    color: var(--muted)
}

@keyframes fd {
    from {
        opacity: 0;
        transform: translateY(-12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── Responsive ── */
@media(max-width:1024px) {
    .left-display-text {
        font-size: clamp(2rem,3.5vw,3.2rem)
    }

    .l-headline {
        font-size: clamp(1.4rem,2vw,1.9rem)
    }

    .right, .right-landing {
        padding: 2.2rem 2.2rem 3rem
    }
}

@media(max-width:860px) {
    .page {
        grid-template-columns: 1fr;
        position: relative;
        min-height: auto
    }

    .site-wrap {
        overflow-y: auto;
        overflow-x: hidden
    }

    #page-form {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%
    }

    .left {
        position: relative;
        height: 52vw;
        min-height: 260px;
        max-height: 400px
    }

        .left::after {
            display: none
        }

    .left-fade {
        background: linear-gradient(to top,var(--ink) 0%,rgba(9,9,13,.35) 55%,transparent 100%)
    }

    .logo {
        top: 1.6rem;
        left: 1.6rem
    }

    .logo-img {
        height: 30px
    }

    .left-text {
        bottom: 1.8rem;
        left: 1.6rem;
        right: 1.6rem
    }

    .left-display-text {
        font-size: clamp(1.8rem,6vw,2.8rem)
    }

    .right, .right-landing {
        padding: 1.8rem 1.5rem 2.8rem
    }

    .right-landing {
        overflow: visible
    }

    .l-headline {
        font-size: clamp(1.4rem,4vw,1.9rem);
        margin-bottom: .4rem
    }

    .l-sub {
        font-size: .8rem;
        margin-bottom: 1.2rem;
        max-width: 100%
    }

    .l-list {
        gap: .45rem;
        margin-bottom: 1.2rem
    }

    .l-ic {
        width: 32px;
        height: 32px;
        font-size: .8rem
    }

    .l-div {
        margin-bottom: 1.1rem
    }

    .l-bottom {
        margin-bottom: 1.2rem
    }

    .info-banner {
        font-size: .75rem;
        padding: .6rem .85rem;
        margin-bottom: 1.4rem
    }

    .prog {
        margin-bottom: 1.5rem
    }
}

@media(max-width:640px) {
    .left {
        height: 58vw;
        min-height: 220px;
        max-height: 360px
    }

    .left-display-text {
        font-size: clamp(1.6rem,7vw,2.4rem)
    }

    .right, .right-landing {
        padding: 1.6rem 1.3rem 2.5rem
    }

    .row {
        flex-direction: column;
        gap: 0
    }

        .row .fg {
            margin-bottom: 1rem
        }

    .pills {
        gap: .3rem
    }

        .pills label {
            font-size: .74rem;
            padding: .38rem .72rem
        }

    .nav {
        margin-top: 1.4rem;
        padding-top: 1.2rem
    }

    .btn {
        font-size: .84rem;
        padding: .75rem .9rem
    }

    .l-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: .8rem
    }

    .l-cta {
        width: 100%;
        justify-content: center
    }

    .wa-btn {
        font-size: .88rem;
        padding: .8rem 1.4rem
    }

    .s-ring {
        width: 64px;
        height: 64px;
        font-size: 1.7rem
    }
}

@media(max-width:520px) {
    .left {
        height: 64vw;
        min-height: 200px
    }

    .left-display-text {
        font-size: clamp(1.4rem,7.5vw,2rem)
    }

    .logo-img {
        height: 26px
    }

    .right, .right-landing {
        padding: 1.4rem 1.1rem 2.2rem
    }

    .l-eyebrow {
        font-size: .62rem;
        padding: .25rem .65rem
    }

    .l-headline {
        font-size: clamp(1.25rem,5vw,1.6rem)
    }

    .l-sub {
        font-size: .77rem
    }

    .fg {
        margin-bottom: .95rem
    }

        .fg label {
            font-size: .64rem;
            margin-bottom: .35rem
        }

    .fi {
        font-size: .85rem;
        padding: .68rem .85rem
    }

    .spin-btn {
        width: 28px
    }

    .pills label {
        font-size: .72rem;
        padding: .35rem .65rem
    }

    .btn {
        font-size: .82rem;
        padding: .7rem .85rem
    }

    .success h2 {
        font-size: 1.25rem
    }

    .success p {
        font-size: .8rem
    }
}

@media(max-width:380px) {
    .left {
        height: 70vw
    }

    .right, .right-landing {
        padding: 1.2rem 1rem 2rem
    }

    .l-headline {
        font-size: 1.15rem
    }

    .l-ic {
        width: 28px;
        height: 28px;
        font-size: .72rem
    }

    .l-cta {
        padding: .75rem 1.2rem;
        font-size: .84rem
    }

    .pills label {
        font-size: .68rem;
        padding: .3rem .55rem
    }

    .fi {
        font-size: .82rem;
        padding: .62rem .78rem
    }

    .btn {
        font-size: .78rem;
        padding: .65rem .75rem
    }

    .l-trust, .trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem
    }

    .lt-item, .ti {
        font-size: .63rem
    }
}

@media(max-height:500px) and (orientation:landscape) {
    .left {
        height: 45vw;
        min-height: 160px;
        max-height: 260px
    }

    .right, .right-landing {
        padding: 1.2rem 1.5rem 2rem
    }

    .l-list {
        gap: .35rem;
        margin-bottom: .9rem
    }

    .l-sub {
        margin-bottom: .9rem
    }
}

/* ── Safe area (iPhone notch) ── */
@supports(padding:max(0px)) {
    .right, .right-landing {
        padding-bottom: max(3.5rem, env(safe-area-inset-bottom));
    }
}