﻿:root {
    --pink: #FC3A74;
    --pink-600: #e62c66;
    --pink-700: #c81f56;
    --red: #dc0032;
    --magenta: #e91e63;

    --ink: #0c0d10;
    --ink-2: #212529;
    --muted: #6c757d;
    --line: #e9ebee;

    --radius: 1rem;
    --radius-sm: 0.625rem;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
    height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.55;
    color: var(--ink);
    background: radial-gradient(110% 85% at 100% 0%, rgba(252, 58, 116, .08) 0%, transparent 60%), radial-gradient(60% 50% at 85% 15%, rgba(252, 58, 116, .05) 0%, transparent 50%), radial-gradient(55% 55% at 0% 100%, #dde0e8 0%, transparent 70%), linear-gradient(145deg, #f5f6f9 0%, #f0f1f6 35%, #eaecf2 70%, #e4e6ed 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-size: 220% 220%;
    background-position: 0% 0%;
    animation: gradientDrift 14s ease-in-out infinite alternate;

}

/* subtle grain & glow on top */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(1200px 600px at 90% -10%, rgba(252, 58, 116, .06), transparent 60%), radial-gradient(800px 500px at -10% 110%, rgba(252, 58, 116, .04), transparent 60%);
    z-index: 0;
}

@keyframes gradientDrift {
    0% {
        background-position: 0% 0%;
    }
    33% {
        background-position: 100% 30%;
    }
    66% {
        background-position: 60% 100%;
    }
    100% {
        background-position: 0% 70%;
    }
}

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

img, svg {
    display: block;
    max-width: 100%;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

/* ============================================
   Page shell — full viewport
   ============================================ */
.page {
    position: relative;
    z-index: 1;
    min-height: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 1.75rem 3rem 3rem; /* 28px 48px 48px */
    overflow: visible;
    height: initial;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px */
    height: 2.75rem; /* 44px */
    padding: 0 1.125rem; /* 18px */
    border-radius: 62.4375rem; /* 999px -> emulácia pill */
    font-weight: 600;
    font-size: 0.9375rem; /* 15px */
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.btn--ghost {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
}

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

.btn--primary:hover {
    background: #000;
    color: #fff;
}

.btn--lg {
    height: 3.125rem; /* 50px */
    padding: 0 1.375rem; /* 22px */
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    width: 100%;
    border-radius: 62.4375rem; /* 999px */
    margin-top: 0.25rem; /* 4px */
}

/* ============================================
   Nav
   ============================================ */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem; /* 32px */
    position: initial;
    background: none;
    box-shadow: none;
    border: 0;
    margin: 0;
    height: initial;
}

.nav .dropdown-language .dropdown-toggle {
    padding: 0;
    width: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    height: 2.25rem; /* 36px */
    width: auto;
}

/* ============================================
   Hero — fills remaining viewport
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* 24px */
    align-items: stretch;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.hero__copy {
    min-width: 0;
    width: 100%;
}

.hero__form {
    min-width: 0;
}

.marquee {
    min-width: 0;
}

.hero__left {
    display: contents;
}

@media (min-width: 67.5rem) {
    /* 1080px */
    .hero {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 5rem;
    }

    .hero__left {
        display: flex;
        flex-direction: column;
        flex: 0 0 35rem; /* 560px */
        max-width: 35rem; /* 560px */
        gap: 1rem; /* 16px */
    }

    .hero__copy {
        max-width: 35rem; /* 560px */
    }

    .hero__form {
        flex: 0 0 26.25rem; /* 420px */
        max-width: 26.25rem; /* 420px */
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* 8px */
    padding: 0.4375rem 0.875rem 0.4375rem 0.625rem; /* 7px 14px 7px 10px */
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 62.4375rem; /* 999px */
    font-size: 0.8125rem; /* 13px */
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(8px);
}

.eyebrow__dot {
    width: 0.5rem; /* 8px */
    height: 0.5rem; /* 8px */
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(255, 255, 255, .06);
    }
}

.h1 {
    font-family: 'Mluvka';
    font-size: clamp(2.25rem, 4.4vw, 3.5rem); /* 36px , 56px */
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 1.125rem 0 1.125rem; /* 18px 0 18px */
    font-weight: 700;
    color: #fff;
    text-wrap: balance;
}

.h1__line {
    display: inline;
}

.h1__line + .h1__line {
    display: block;
}

.lede {
    font-size: 1.125rem; /* 18px */
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
    max-width: 32.5rem; /* 520px */
    margin: 0 0 1.75rem; /* 28px */
}

.benefits {
    list-style: none;
    margin: 0.25rem 0 1.75rem; /* 4px 0 28px */
    padding: 0;
    display: grid;
    gap: 0.875rem; /* 14px */
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    font-size: 1rem; /* 16px */
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.benefits__icon {
    flex: 0 0 auto;
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
    border-radius: 50%;
    background: #fff;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 4px 12px -4px rgba(255, 255, 255, .5);
}

/* ============================================
   Marquee — moving review cards
   ============================================ */
.marquee {
    position: relative;
    margin-top: 0.5rem; /* 8px */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
    display: flex;
    gap: 1rem; /* 16px */
    width: max-content;
    animation: marquee 38s linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.rcard {
    flex: 0 0 16.25rem; /* 260px */
    padding: 1rem 1.125rem; /* 16px 18px */
    border-radius: 0.875rem; /* 14px */
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .25);
    display: grid;
    gap: 0.375rem; /* 6px */
    align-content: start;
}

/* trust claim above logo marquee */
.trust-claim {
    margin: 0 0 0.75rem; /* 12px */
    font-size: 0.75rem; /* 12px */
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    font-variant-caps: all-small-caps;
}

/* logo card — rotating brand logos */
.lcard {
    flex: 0 0 10rem; /* 160px */
    height: 4rem; /* 64px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem; /* 8px 16px */
}

.lcard img {
    max-height: 2.25rem; /* 36px */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity .2s ease;
}

.lcard:hover img {
    opacity: 1;
}

.rcard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem; /* 12px */
}

.rcard__brand {
    font-family: 'Mluvka';
    font-weight: 700;
    font-size: 1.125rem; /* 18px */
    letter-spacing: -0.01em;
    color: #fff;
}

.rcard__logo {
    height: 1.375rem; /* 22px */
    width: auto;
    max-width: 5.625rem; /* 90px */
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.rcard__stars {
    font-size: 1.25rem; /* 20px */
    letter-spacing: 2px;
    color: #fff;
}

.rcard__quote {
    margin: 0.125rem 0 0; /* 2px */
    font-size: 0.875rem; /* 14px */
    line-height: 1.45;
    color: #fff;
}

/* ============================================
   Self-onboarding link below form
   ============================================ */
.self-onboard {
    margin: 0.875rem 0 0; /* 14px */
    text-align: center;
    font-size: 0.9375rem; /* 15px */
    color: #fff;
}

.self-onboard a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem; /* 4px */
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding-bottom: 1px;
    transition: border-color .15s ease, opacity .15s ease;
}

.self-onboard a:hover {
    border-color: #fff;
    opacity: .9;
}

.self-onboard a span {
    display: inline-block;
    transition: transform .2s ease;
}

.self-onboard a:hover span {
    transform: translateX(3px);
}

/* ============================================
   Form card
   ============================================ */
.hero__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* ============================================
   Greeting — avatar video + speech bubble
   ============================================ */
.greet {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.875rem; /* 14px */
    margin: 0 0 1rem; /* 16px */
}

.greet__avatar {
    flex: 0 0 auto;
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, .10);
}

.greet__avatar video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.greet__bubble {
    position: relative;
    padding: 0.75rem 1rem; /* 12px 16px */
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem 1rem 0.25rem 1rem; /* 16px 16px 4px 16px */
    color: var(--ink);
    font-size: 0.875rem; /* 14px */
    line-height: 1.45;
    max-width: 20rem; /* 320px */
    box-shadow: 0 8px 22px -8px rgba(255, 255, 255, .45);
}

.greet__bubble::before {
    content: "";
    position: absolute;
    right: -0.5rem; /* -8px */
    top: 1.125rem; /* 18px */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, .9);
}

.card {
    width: 100%;
    border: 0;
    max-width: 26.25rem; /* 420px */
    background: #ffffff;
    color: var(--ink);
    border-radius: 1.375rem; /* 22px */
    padding: 1.375rem 1.375rem; /* 22px 22px */
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06),
    0 24px 60px -12px rgba(255, 255, 255, .4);
    position: relative;
}

.form {
    display: grid;
    gap: 0.625rem; /* 10px */
}

.row--2 {
    grid-template-columns: 1fr 1fr;
}

.row--phone {
    grid-template-columns: minmax(0, 19fr) minmax(0, 31fr);
}

/* Scheduler modal */
.sched-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem; /* 16px */
}

.sched-overlay.open {
    display: flex;
    animation: fadeIn .2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.sched-modal {
    background: #fff;
    border-radius: 1.25rem; /* 20px */
    overflow: hidden;
    width: 100%;
    max-width: 60rem; /* 960px */
    height: 92vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}

.sched-close {
    position: absolute;
    top: 0.75rem; /* 12px */
    right: 0.75rem; /* 12px */
    z-index: 10;
    background: rgba(0, 0, 0, .08);
    border: none;
    border-radius: 50%;
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: background .15s;
}

.sched-close:hover {
    background: rgba(0, 0, 0, .15);
}

.sched-iframe {
    width: 100%;
    flex: 1;
    border: none;
    display: block;
}

.sched-footer {
    padding: 0.625rem 1rem; /* 10px 16px */
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.sched-footer .btn {
    padding: 0 1.25rem; /* 20px */
    height: 2.5rem; /* 40px */
    font-size: .875rem;
}

@media (max-width: 37.5rem) {
    /* 600px */
    .sched-modal {
        height: 95vh;
        border-radius: 1rem; /* 16px */
    }

    .sched-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Step 2 */
.form--step2 {
    animation: fadeSlideIn .25s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step2-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem; /* 6px */
    font-size: .875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    margin-bottom: 0.25rem; /* 4px */
    transition: color .15s;
}

.step2-back:hover {
    color: #111;
}

.step2-label {
    font-size: .875rem;
    color: #6b7280;
    margin-bottom: 0.25rem; /* 4px */
}

.ipt--textarea {
    height: auto;
    padding: 0.75rem 0.875rem; /* 12px 14px */
    resize: vertical;
    line-height: 1.5;
}

/* Custom dial-code overlay */
.dial-wrap {
    position: relative;
}

.dial-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem; /* 6px */
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
}

.dial-display-text {
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.dial-arrow {
    flex-shrink: 0;
}

.dial-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

/* unified input style */
.ipt {
    /* height: 3 rem; */
    padding: 0.75rem 1rem; /* 14px */
    border: 1px solid #e3e5ea !important;
    border-radius: 0.8125rem; /* 13px */
    background: #fff;
    font-size: 0.875rem; /* 14px */
    color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}

.select2-container--bootstrap-5 {
    height: 100%;
}

.ipt::placeholder {
    color: #5b6470 !important;
}

.ipt:hover {
    border-color: #c9ccd2 !important;
}

.ipt:focus {
    outline: none;
    border-color: var(--ink) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .45);
}

/* error state */
.ipt:user-invalid {
    border-color: #dc2626 !important;
    background-color: #fff5f5 !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.625rem; /* 42px */
}

select.ipt:user-invalid {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239097a1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-position: right 40px center, right 14px center;
    background-repeat: no-repeat, no-repeat;
    padding-right: 4.125rem; /* 66px */
}

.ipt:user-invalid:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}

/* error message below */
.field-error {
    display: none;
    color: #dc2626;
    font-size: 0.8125rem; /* 13px */
    margin: -0.25rem 0.25rem 0; /* -4px 4px 0 */
    font-weight: 500;
}

.row:has(.ipt:user-invalid) + .field-error,
.ipt:user-invalid + .field-error {
    display: block;
}

select.ipt {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239097a1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.375rem; /* 38px */
    color: #5b6470;
}

select.ipt:has(option:checked:not([disabled])) {
    color: var(--ink);
}

/* expanding "Povedzte nám viac" via <details> */
.more {
    display: grid;
}

.more summary {
    list-style: none;
}

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

.ipt--more {
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px */
    cursor: pointer;
    padding: 0 0.875rem; /* 14px */
    user-select: none;
}

.ipt--more .ipt__placeholder {
    flex: 1;
    color: #5b6470;
    font-size: 0.875rem; /* 14px */
}

.ipt--more .ipt__badge {
    display: inline-flex;
    align-items: center;
    height: 1.5rem; /* 24px */
    padding: 0 0.5625rem; /* 9px */
    border-radius: 62.4375rem; /* 999px */
    background: #f1f2f4;
    color: #6c757d;
    font-size: 0.6875rem; /* 11px */
    font-weight: 500;
}

.ipt--more .ipt__chev {
    color: #5b6470;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.more[open] .ipt--more .ipt__chev {
    transform: rotate(180deg);
}

.more[open] .ipt--more {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .45);
}

.ipt--textarea {
    height: auto;
    min-height: 6rem; /* 96px */
    padding: 0.75rem 0.875rem; /* 12px 14px */
    resize: vertical;
    margin-top: 0.625rem; /* 10px */
    line-height: 1.5;
    font-family: inherit;
    animation: slideDown .2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agree a {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
}

.agree a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 67.4375rem) {
    /* 1079px */
    .hero__copy {
        order: 1;
    }

    .hero__form {
        order: 2;
    }

    .trust-claim {
        order: 3;
        text-align: center;
    }

    .marquee {
        order: 4;
    }

    body {
        animation-duration: 28s;
    }

    .page {
        height: auto;
        min-height: calc(100vh - 6.25rem);
        padding: calc(1rem + env(safe-area-inset-top)) calc(1rem + env(safe-area-inset-right)) calc(1.75rem + env(safe-area-inset-bottom)) calc(1rem + env(safe-area-inset-left)); /* 16px, 16px, 28px, 16px */
        max-width: 37.5rem; /* 600px */
    }

    .nav {
        padding-bottom: 1.125rem; /* 18px */
    }

    .brand img {
        height: 2rem; /* 32px */
    }

    .hero {
        gap: 1.25rem; /* 20px */
    }

    .hero__form {
        align-self: stretch;
        width: 100%;
        max-width: none;
    }

    .card {
        max-width: none;
        padding: 1.25rem 1.125rem; /* 20px 18px */
        border-radius: 1.25rem; /* 20px */
    }

    .form {
        gap: 0.5625rem; /* 9px */
    }

    .ipt {
        height: 3.125rem; /* 50px */
        font-size: 0.875rem; /* 16px iOS zoom fix */
        border-radius: 0.8125rem; /* 13px */
        padding: 0 0.875rem; /* 14px */
    }

    select.ipt {
        font-size: 1rem;
    }

    .ipt--more {
        height: 3.125rem; /* 50px */
    }

    .btn--lg {
        height: 3.375rem; /* 54px */
        font-size: 1rem; /* 16px */
        margin-top: 0.125rem; /* 2px */
    }

    .agree {
        font-size: 0.8125rem; /* 13px */
        grid-template-columns: 1.375rem 1fr; /* 22px */
        gap: 0.75rem; /* 12px */
    }

    .agree input {
        width: 1.375rem; /* 22px */
        height: 1.375rem; /* 22px */
    }

    .agree input:checked::after {
        left: 6px;
        top: 1px;
        width: 6px;
        height: 11px;
    }

    .self-onboard {
        font-size: 0.875rem; /* 14px */
        margin-top: 0.75rem; /* 12px */
    }

    .hero {
        position: relative;
    }

    .greet {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        gap: 0.5rem; /* 8px */
        align-items: center;
        justify-content: flex-end;
        z-index: 2;
    }

    .greet__avatar {
        width: 2.75rem; /* 44px */
        height: 2.75rem; /* 44px */
    }

    .greet__bubble {
        flex: 0 1 auto;
        max-width: 11.25rem; /* 180px */
        font-size: 0.75rem; /* 12px */
        line-height: 1.35;
        padding: 0.4375rem 0.6875rem; /* 7px 11px */
        border-radius: 0.75rem 0.75rem 0.25rem 0.75rem; /* 12px 12px 4px 12px */
    }

    .greet__bubble::before {
        top: 14px;
        border-width: 5px 0 5px 8px;
    }

    .hero__copy {
        padding-top: 6rem; /* 56px */
    }

    .h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem); /* 28px, 40px */
        margin: 0.875rem 0 1.125rem; /* 14px 0 18px */
        text-wrap: balance;
    }

    .h1__line {
        white-space: normal;
        display: inline;
    }

    .eyebrow {
        font-size: 0.75rem; /* 12px */
        padding: 0.3125rem 0.75rem 0.3125rem 0.5625rem; /* 5px 12px 5px 9px */
    }

    .eyebrow__dot {
        width: 0.375rem; /* 6px */
        height: 0.375rem; /* 6px */
    }

    .eyebrow {
        align-self: flex-start;
    }

    .marquee {
        width: 100%;
        margin-top: 0;
        margin-left: -1rem; /* -16px */
        margin-right: -1rem; /* -16px */
        width: calc(100% + 2rem); /* 32px */
    }

    .rcard {
        flex: 0 0 14.375rem; /* 230px */
        padding: 0.875rem 1rem; /* 14px 16px */
        border-radius: 0.875rem; /* 14px */
    }

    .rcard__brand {
        font-size: 0.9375rem; /* 15px */
    }

    .rcard__logo {
        height: 1.125rem; /* 18px */
        max-width: 4.375rem; /* 70px */
    }

    .rcard__stars {
        font-size: 1rem; /* 16px */
    }

    .rcard__quote {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.4;
    }

    .marquee__track {
        animation-duration: 28s;
    }

    .benefits {
        gap: 0.875rem; /* 14px */
        margin: 0.25rem 0 0.5rem;
    }

    .benefits li {
        font-size: 1.0625rem; /* 17px */
        line-height: 1.4;
        font-weight: 600;
    }

    .benefits__icon {
        width: 1.75rem; /* 28px */
        height: 1.75rem; /* 28px */
    }
}

@media (max-width: 32.5rem) {
    /* 520px */
    .row--2 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.25rem 1rem; /* 20px 16px */
    }

    .greet {
        gap: 0.625rem; /* 10px */
    }

    .greet__avatar {
        width: 3.5rem; /* 56px */
        height: 3.5rem; /* 56px */
    }

    .greet__bubble {
        font-size: 0.8125rem; /* 13px */
        padding: 0.5625rem 0.8125rem; /* 9px 13px */
    }

    .rcard {
        flex: 0 0 13.125rem; /* 210px */
        padding: 0.75rem 0.875rem; /* 12px 14px */
    }

    .rcard__brand {
        font-size: 0.875rem; /* 14px */
    }

    .rcard__quote {
        font-size: 0.78125rem; /* 12.5px */
    }

    .h1 {
        font-size: clamp(1.75rem, 9vw, 2.25rem); /* 28px, 36px */
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
    }

    .eyebrow__dot {
        animation: none;
    }

    body {
        animation: none;
    }
}

/* ============================================
   iSklad demo · light theme overrides
   ============================================ */

.h1 {
    color: var(--pink);
    font-size: clamp(2rem, 4.0vw, 3.25rem); /* 32px, 52px */
}

.eyebrow {
    background: rgba(252, 58, 116, .08);
    border-color: rgba(252, 58, 116, .28);
    color: var(--pink);
}

.eyebrow__dot {
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(252, 58, 116, .22);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(252, 58, 116, .22);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(252, 58, 116, .06);
    }
}

.benefits li {
    color: var(--ink);
}

.trust-claim {
    color: var(--ink);
    opacity: 0.6;
}

.lcard img {
    filter: brightness(0);
    opacity: 0.55;
}

.lcard:hover img {
    filter: brightness(0);
    opacity: 0.85;
}

.self-onboard {
    color: var(--ink);
}

.self-onboard a {
    color: var(--pink);
    border-bottom-color: rgba(252, 58, 116, .4);
}

.self-onboard a:hover {
    border-color: var(--pink);
    opacity: 1;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem; /* 48px 24px */
    gap: 1rem; /* 16px */
    animation: fadeSlideIn .3s ease;
}

.form-success__icon {
    line-height: 0;
}

.form-success__title {
    margin: 0;
    font-family: 'Mluvka';
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c0d10;
}

.form-success__msg {
    margin: 0;
    font-size: 1rem;
}

.isklad-form .form-check .form-check-label {
    font-size: 0.813rem;
    cursor: pointer;
    padding-left: 0.625rem;
}

.isklad-form .select2-selection {
    border: 1px solid #e3e5ea !important;
    padding: .75rem 2.5rem .75rem .875rem;
}

.isklad-form .select2-selection:hover {
    border-color: #c9ccd2 !important;
}

.isklad-form .select2-selection:focus {
    outline: none;
    border-color: var(--ink) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .45);
}

.isklad-form .form-check .form-check-input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #c9ccd2;
    border-radius: 5px;
    margin: 1px 0 0;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color .15s ease, background .15s ease;
}

.isklad-form .form-check .form-check-input[type=checkbox]:hover {
    border-color: #9097a1;
}

.isklad-form .form-check .form-check-input[type=checkbox]:checked {
    background-color: var(--red);
    border-color: var(--red);
}

.isklad-form .form-check .form-check-input[type=checkbox]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 47.99875rem) {
    /* 767.98px */
    .form-input-wrap {
        padding: 0;
        background: none;
        border-radius: 0;
        border: none;
    }

    .isklad-form .form-control {
        text-align: left;
        padding: .75rem 1rem;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #ccd6ea;
        border-radius: .75rem;
    }

    .form-input-wrap .select2-container--bootstrap-5 .select2-selection {
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #e3e5ea !important;
        padding: .75rem 2.5rem .75rem 1rem;
    }

    .form-input-wrap.phone-prefix {
        padding-right: .5rem;
    }

    .select2-container--bootstrap-5 {
        width: 100%;
    }
}

.page .isklad-form-bottom {
    position: initial;
    margin: 0;
    width: auto;
    padding: 0;
}

.select2-dropdown--phone-prefix {
    width: 300px !important;
}

#select2-short_phone_prefix-results li:first-child {
    display: none;
}
