:root {
    --bg: #080a0f;
    --bg-deep: #05070b;
    --surface: #0f121a;
    --surface-2: #151925;
    --surface-3: #1a1f2d;
    --text: #f4f6fb;
    --text-soft: #c8ccda;
    --muted: #969db4;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --blue: #6269ff;
    --blue-bright: #858aff;
    --blue-soft: rgba(98, 105, 255, 0.14);
    --lime: #d8ff55;
    --lime-hover: #e6ff89;
    --lime-soft: rgba(216, 255, 85, 0.12);
    --danger: #ff8c91;
    --danger-soft: rgba(255, 115, 122, 0.11);
    --success: #caff61;
    --shadow-lg: 0 34px 90px -42px rgba(0, 0, 0, 0.82);
    --shadow-float: 0 24px 70px -30px rgba(0, 0, 0, 0.92);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
    --press: 140ms;
    --fast: 180ms;
    --medium: 280ms;
    --slow: 560ms;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --header-height: 70px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
body.chat-open-mobile {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand,
.level-tag,
.care-label,
.ownership-type {
    font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--lime);
    color: #0a0c05;
}

.wrap {
    width: min(1180px, calc(100% - 56px));
    margin-inline: auto;
}

.sr-only,
.sr-only:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 500;
    padding: 11px 15px;
    border-radius: 8px;
    background: var(--lime);
    color: #090b05;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform var(--fast) var(--ease-out);
}

.skip-link:focus {
    transform: translateY(0);
}

.page-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 300;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
}

@supports (animation-timeline: scroll()) {
    .page-progress {
        animation: pageProgress linear both;
        animation-timeline: scroll(root block);
    }

    @keyframes pageProgress {
        to {
            transform: scaleX(1);
        }
    }
}

.pressable {
    transition: transform var(--press) var(--ease-out);
}

.pressable:active {
    transform: scale(0.97);
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 15, 0.76);
    backdrop-filter: blur(18px) saturate(150%);
}

.nav {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.brand img,
.footer-brand img {
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.nav-links a {
    position: relative;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 650;
    text-decoration: none;
    transition: color var(--fast) var(--ease-out);
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--fast) var(--ease-out);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    color: var(--text-soft);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta,
.btn-primary,
.summary-action,
.wizard-next,
.cookie-button,
.chat-submit,
.ownership-select,
.care-select,
.mini-cta {
    border: 0;
    background: var(--lime);
    color: #0a0c05;
    font-weight: 800;
    cursor: pointer;
}

.nav-cta {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 4px auto;
    background: var(--text);
    transform-origin: center;
    transition: transform var(--fast) var(--ease-out), opacity var(--fast) var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    border-top: 1px solid transparent;
    background: rgba(8, 10, 15, 0.96);
    transition: grid-template-rows var(--medium) var(--ease-drawer), border-color var(--medium) var(--ease-out);
}

.mobile-menu.open {
    grid-template-rows: 1fr;
    border-top-color: var(--line);
}

.mobile-menu nav {
    width: min(100% - 40px, 720px);
    margin-inline: auto;
    overflow: hidden;
    display: grid;
}

.mobile-menu a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

/* Shared */
.section-head {
    max-width: 710px;
    margin-bottom: 42px;
}

.section-label,
.summary-label,
.wizard-step-label {
    display: block;
    margin: 0 0 11px;
    color: var(--lime);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.section-head h2,
.process-intro h2,
.faq-intro h2,
.contact-copy h2,
.insight-sticky h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.section-head>p:last-child,
.process-intro>p,
.faq-intro>p,
.contact-copy>p,
.insight-sticky>p {
    max-width: 65ch;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.btn-primary,
.btn-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary {
    box-shadow: 0 15px 42px -22px rgba(216, 255, 85, 0.8);
    transition: transform var(--press) var(--ease-out), background-color var(--fast) var(--ease-out), box-shadow var(--fast) var(--ease-out);
}

.btn-primary svg,
.summary-action svg {
    flex: none;
}

.btn-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-weight: 750;
    transition: transform var(--press) var(--ease-out), border-color var(--fast) var(--ease-out), background-color var(--fast) var(--ease-out);
}

.mini-cta {
    flex: none;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(760px, calc(100dvh - var(--header-height)));
    display: flex;
    align-items: center;
    overflow: clip;
    padding: clamp(60px, 7.5vh, 86px) 0 clamp(62px, 8vh, 92px);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% 30%;
    z-index: -3;
    height: 75%;
    background: radial-gradient(ellipse, rgba(98, 105, 255, 0.17), transparent 67%);
    transform: rotate(-8deg);
}

#heroGlow {
    position: absolute;
    z-index: -2;
    width: 580px;
    height: 580px;
    top: -290px;
    left: -290px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(98, 105, 255, 0.21), rgba(216, 255, 85, 0.05) 44%, transparent 72%);
    filter: blur(8px);
    pointer-events: none;
    will-change: transform;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.ambient-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 255, 85, 0.22), transparent);
    transform-origin: left;
}

.ambient-line-a {
    top: 20%;
    left: 55%;
    width: 34%;
    transform: rotate(-18deg);
}

.ambient-line-b {
    bottom: 18%;
    left: 7%;
    width: 28%;
    transform: rotate(12deg);
}

.ambient-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px rgba(216, 255, 85, 0.7);
}

.ambient-dot-a {
    top: 20%;
    left: 75%;
}

.ambient-dot-b {
    bottom: 18%;
    left: 25%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: clamp(45px, 7vw, 92px);
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.045em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px var(--lime-soft);
}

.hero-title {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(40px, 5.25vw, 67px);
    line-height: 0.99;
    letter-spacing: -0.052em;
}

.accent {
    position: relative;
    color: var(--lime);
}

.accent-sweep::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 6px;
    border-radius: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 255, 85, .72), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: accentSweep 700ms var(--ease-out) 900ms forwards;
}

@keyframes accentSweep {
    to {
        transform: scaleX(1);
    }
}

.lead {
    max-width: 590px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(16px, 1.65vw, 19px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-enter {
    opacity: 0;
    transform: translateY(18px);
    animation: heroEnter 700ms var(--ease-out) var(--enter-delay, 0ms) forwards;
}

@keyframes heroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    min-height: 480px;
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.signal-stage {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1.14 / 1;
    transform-style: preserve-3d;
    will-change: transform;
}

.signal-stage::before {
    content: "";
    position: absolute;
    inset: 9% 7%;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 46% 54% 50% 50% / 55% 44% 56% 45%;
    transform: rotate(8deg);
}

.signal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(98, 105, 255, .23);
    transform: translate(-50%, -50%);
}

.signal-ring-outer {
    width: 71%;
    aspect-ratio: 1;
    border-style: dashed;
    animation: ringTurn 22s linear infinite;
}

.signal-ring-inner {
    width: 52%;
    aspect-ratio: 1;
    border-color: rgba(216, 255, 85, .2);
    animation: ringTurnReverse 17s linear infinite;
}

@keyframes ringTurn {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ringTurnReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.signal-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.signal-path-base,
.signal-path-flow {
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.signal-path-base {
    stroke: rgba(255, 255, 255, .11);
}

.signal-path-flow {
    stroke: url(#unused);
    stroke: var(--lime);
    stroke-dasharray: 6 16;
    filter: drop-shadow(0 0 5px rgba(216, 255, 85, .45));
    animation: signalFlow 2.8s linear infinite;
}

@keyframes signalFlow {
    to {
        stroke-dashoffset: -44;
    }
}

.logo-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(22, 26, 39, .92), rgba(9, 11, 17, .94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 35px 80px -30px rgba(0, 0, 0, .9);
    transform: translate(-50%, -50%) translateZ(48px) rotate(-2deg);
}

.logo-stage img {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.logo-halo {
    position: absolute;
    inset: 7%;
    border-radius: 34px;
    background: radial-gradient(circle at 35% 30%, rgba(98, 105, 255, .3), transparent 56%), radial-gradient(circle at 72% 75%, rgba(216, 255, 85, .16), transparent 54%);
    filter: blur(10px);
}

.signal-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 185px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(14, 17, 25, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 22px 50px -30px rgba(0, 0, 0, .95);
    backdrop-filter: blur(16px);
}

.signal-node::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px var(--lime-soft);
}

.signal-node-expert {
    left: 0;
    bottom: 18%;
    transform: translateZ(34px);
}

.signal-node-expert::before {
    right: -4px;
    top: 50%;
}

.signal-node-trust {
    top: 4%;
    left: 17%;
    transform: translateZ(12px);
}

.signal-node-trust::before {
    right: 16%;
    bottom: -4px;
}

.signal-node-contact {
    right: 0;
    top: 25%;
    transform: translateZ(58px);
}

.signal-node-contact::before {
    left: -4px;
    bottom: 28%;
}

.node-icon {
    flex: none;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-bright);
}

.node-icon svg {
    width: 19px;
    height: 19px;
}

.signal-node span:last-child {
    display: grid;
}

.signal-node strong {
    font-size: 13px;
    line-height: 1.25;
}

.signal-node small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10.5px;
}

/* =========================================================
   NIESKOŃCZONY PASEK KORZYŚCI
   ========================================================= */

.proof-strip {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #0a0c12;
}

.proof-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg,
            transparent 0,
            #000 5%,
            #000 95%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0,
            #000 5%,
            #000 95%,
            transparent 100%);
}

.proof-track {
    width: max-content;
    display: flex;
    align-items: stretch;
    animation: proofMarquee 28s linear infinite;
    will-change: transform;
}

.proof-group {
    flex: none;
    display: flex;
    align-items: stretch;
}

.proof-item {
    width: clamp(270px, 25vw, 340px);
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
    background: #0a0c12;
}

.proof-mark {
    flex: none;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--lime-soft);
    color: var(--lime);
    font-size: 14px;
    font-weight: 900;
}

.proof-item>span:last-child {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.proof-item strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
}

.proof-item small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

@keyframes proofMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 680px) {
    .proof-marquee {
        mask-image: linear-gradient(90deg,
                transparent 0,
                #000 4%,
                #000 96%,
                transparent 100%);
        -webkit-mask-image: linear-gradient(90deg,
                transparent 0,
                #000 4%,
                #000 96%,
                transparent 100%);
    }

    .proof-track {
        animation-duration: 24s;
    }

    .proof-item {
        width: 270px;
        min-height: 88px;
        padding: 17px 21px;
    }

    .proof-item strong {
        font-size: 14px;
    }

    .proof-item small {
        font-size: 12.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .proof-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
        scrollbar-width: none;
    }

    .proof-marquee::-webkit-scrollbar {
        display: none;
    }

    .proof-track {
        animation: none;
    }

    .proof-group[aria-hidden="true"] {
        display: none;
    }
}

/* Marquee */
.audience-marquee {
    overflow: hidden;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-deep);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    color: var(--text-soft);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.marquee-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .7;
}

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

/* General sections */
.expert-section,
.foundation,
.pricing,
.first-year,
.value-compare,
.insight-story,
.care,
.process,
.faq,
.contact {
    padding: clamp(86px, 10vw, 138px) 0;
}

.expert-section,
.pricing,
.value-compare,
.care,
.faq {
    background: var(--bg);
}

.foundation,
.first-year,
.insight-story,
.process,
.contact {
    border-block: 1px solid var(--line);
    background: var(--bg-deep);
}

/* Spotlight cards */
.spotlight-card {
    --spot-x: 50%;
    --spot-y: 50%;
    position: relative;
    isolation: isolate;
}

.spotlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(300px circle at var(--spot-x) var(--spot-y), rgba(98, 105, 255, .12), transparent 70%);
    opacity: 0;
    transition: opacity var(--medium) var(--ease-out);
    pointer-events: none;
}

/* Expert bento */
.expert-bento {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
}

.expert-card {
    min-height: 255px;
    padding: clamp(24px, 3.2vw, 38px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

.expert-card-main {
    grid-row: span 2;
    min-height: 528px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(98, 105, 255, .10), transparent 44%),
        var(--surface);
}

.expert-card-accent {
    background: linear-gradient(145deg, rgba(216, 255, 85, .08), transparent 72%), var(--surface);
}

.card-icon,
.foundation-icon,
.insight-icon,
.process-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue-bright);
}

.card-icon svg,
.foundation-icon svg,
.insight-icon svg,
.process-icon svg {
    width: 23px;
    height: 23px;
}

.expert-card-accent .card-icon,
.foundation-card-contrast .foundation-icon,
.insight-card-accent .insight-icon {
    background: var(--lime-soft);
    color: var(--lime);
}

.expert-card h3,
.foundation-card h3,
.insight-card h3,
.ownership-card h3 {
    margin: 20px 0 10px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.expert-card p,
.foundation-card p,
.insight-card p,
.ownership-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.authority-flow {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    align-items: center;
    gap: 8px;
    margin-top: 46px;
}

.flow-step {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
}

.flow-step b,
.flow-step small {
    display: block;
}

.flow-step b {
    font-size: 12px;
}

.flow-step small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.flow-connector {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: var(--line-strong);
}

.flow-connector::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    transform: translateX(-100%);
    animation: connectorFlow 2.2s var(--ease-in-out) infinite;
}

@keyframes connectorFlow {

    55%,
    100% {
        transform: translateX(100%);
    }
}

/* Foundation */
.foundation-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.foundation-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

.foundation-card-wide {
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    column-gap: 22px;
}

.foundation-card-wide .foundation-icon {
    grid-row: span 2;
}

.foundation-card-wide h3 {
    margin-top: 2px;
}

.foundation-pills {
    grid-column: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.foundation-pills span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
}

.foundation-card-contrast {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: linear-gradient(120deg, rgba(216, 255, 85, .1), rgba(98, 105, 255, .08)), var(--surface);
}

/* Pricing */
.model-switch {
    position: relative;
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 30px;
    padding: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: var(--surface);
}

.model-tab {
    position: relative;
    z-index: 2;
    min-height: 76px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 13px 18px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    transition: color var(--fast) var(--ease-out), transform var(--press) var(--ease-out);
}

.model-tab:active {
    transform: scale(.985);
}

.model-tab.active {
    color: var(--text);
}

.model-tab span {
    font-weight: 800;
}

.model-tab small {
    font-size: 11px;
    line-height: 1.4;
}

.model-indicator {
    position: absolute;
    z-index: 1;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(50% - 7px);
    border: 1px solid rgba(216, 255, 85, .22);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lime-soft), rgba(98, 105, 255, .08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    transform: translateX(0);
    transition: transform var(--medium) var(--ease-in-out);
}

.model-switch[data-active="ownership"] .model-indicator {
    transform: translateX(calc(100% + 4px));
}

.pricing-panel {
    opacity: 0;
    transform: translateY(12px);
}

.pricing-panel.active {
    opacity: 1;
    transform: translateY(0);
    animation: panelMaterialize 420ms var(--ease-out) both;
}

@keyframes panelMaterialize {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.992);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.pricing-summary,
.ownership-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.pricing-summary>div,
.ownership-intro>div {
    display: grid;
    gap: 2px;
}

.pricing-summary .summary-label,
.ownership-intro .summary-label {
    margin: 0;
    font-size: 10px;
}

.pricing-summary strong,
.ownership-intro strong {
    font-size: 14px;
}

.summary-action {
    flex: none;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
}

.table-scroll,
.math-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--blue) transparent;
}

.price-table,
.math-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.price-table th,
.price-table td,
.math-table th,
.math-table td {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.price-table tr>*:last-child,
.math-table tr>*:last-child {
    border-right: 0;
}

.price-table tbody tr:last-child>*,
.math-table tbody tr:last-child>* {
    border-bottom: 0;
}

.price-table thead th {
    padding: 20px 18px;
    background: var(--surface-2);
    color: var(--text);
    text-align: left;
    vertical-align: bottom;
}

.price-table thead th:first-child {
    width: 215px;
    color: var(--muted);
    font-size: 12px;
}

.col-head small,
.row-head span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 10.5px;
    font-weight: 500;
}

.level-tag {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.level-basic .level-tag {
    background: rgba(255, 255, 255, .07);
    color: var(--text-soft);
}

.level-standard .level-tag {
    background: var(--blue-soft);
    color: var(--blue-bright);
}

.level-premium .level-tag {
    background: var(--lime-soft);
    color: var(--lime);
}

.row-head {
    padding: 25px 20px;
    background: #0b0e14;
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
}

.price-cell {
    position: relative;
    min-width: 190px;
    padding: 25px 18px;
    background: var(--surface);
    cursor: pointer;
    transition: background-color var(--fast) var(--ease-out);
}

.price {
    display: grid;
    gap: 2px;
}

.price b {
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.price small {
    color: var(--muted);
    font-size: 10.5px;
}

.selection-ring {
    position: absolute;
    inset: 6px;
    border: 2px solid var(--lime);
    border-radius: 11px;
    opacity: 0;
    transform: scale(.95);
    pointer-events: none;
}

.price-cell.highlight {
    background: rgba(216, 255, 85, .065);
}

.price-cell.highlight .selection-ring {
    opacity: 1;
    transform: scale(1);
    transition: opacity var(--medium) var(--ease-out), transform var(--medium) var(--ease-out);
}

.choice-badge {
    display: inline-flex;
    margin-top: 10px;
    color: var(--lime);
    font-size: 9.5px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity var(--medium) var(--ease-out), transform var(--medium) var(--ease-out);
}

.price-cell.highlight .choice-badge {
    opacity: 1;
    transform: translateY(0);
}

.price-note,
.comparison-disclaimer {
    margin: 15px 2px 0;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
}

.ownership-intro>p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.ownership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.ownership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

.ownership-card-featured {
    border-color: rgba(216, 255, 85, .35);
    background: linear-gradient(145deg, rgba(216, 255, 85, .075), transparent 62%), var(--surface);
}

.ownership-badge,
.recommended-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 12px;
    border-radius: 0 0 0 12px;
    background: var(--lime);
    color: #090b05;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.ownership-type {
    color: var(--lime);
    font-size: 12px;
    font-weight: 750;
}

.ownership-card h3 {
    margin-top: 16px;
    font-size: 32px;
}

.ownership-card h3 small {
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.ownership-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.ownership-card li {
    position: relative;
    padding-left: 23px;
    color: var(--text-soft);
    font-size: 12.5px;
}

.ownership-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: 900;
}

.ownership-select {
    width: 100%;
    min-height: 45px;
    margin-top: auto;
    border-radius: 10px;
    font-size: 12px;
}

.ownership-warning {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 18px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 140, 145, .24);
    border-radius: var(--radius);
    background: var(--danger-soft);
}

.warning-icon {
    flex: none;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 140, 145, .16);
    color: var(--danger);
    font-size: 12px;
    font-weight: 900;
}

.ownership-warning p {
    margin: 0;
    color: var(--text-soft);
    font-size: 12px;
}

/* First year comparison */
.comparison-switch {
    display: inline-flex;
    gap: 5px;
    margin-bottom: 22px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
}

.comparison-tab {
    min-height: 40px;
    padding: 9px 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    transition: background-color var(--fast) var(--ease-out), color var(--fast) var(--ease-out), transform var(--press) var(--ease-out);
}

.comparison-tab:active {
    transform: scale(.97);
}

.comparison-tab.active {
    background: var(--lime);
    color: #090b05;
}

.comparison-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.comparison-stage::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto 45%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(216, 255, 85, .12), transparent 65%);
    pointer-events: none;
}

.comparison-column {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .022);
}

.subscription-column {
    border-color: rgba(216, 255, 85, .28);
    background: linear-gradient(145deg, rgba(216, 255, 85, .08), transparent 65%), rgba(255, 255, 255, .022);
}

.comparison-caption {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.comparison-recommended {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--lime-soft);
    color: var(--lime);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.comparison-total {
    display: block;
    margin-bottom: 24px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}

.cost-breakdown {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.cost-breakdown span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 12px;
}

.cost-breakdown b {
    font-weight: 650;
}

.cost-breakdown em {
    color: var(--text);
    font-style: normal;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.comparison-column p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.comparison-vs {
    display: grid;
    place-items: center;
}

.comparison-vs span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: var(--bg-deep);
    color: var(--muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.savings-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 7px 24px;
    padding: 21px 24px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(98, 105, 255, .12), rgba(216, 255, 85, .1));
}

.savings-card>span {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 650;
}

.savings-card>strong {
    color: var(--lime);
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    letter-spacing: -.04em;
}

.savings-card>small {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 10px;
}

.savings-track {
    grid-column: 1 / -1;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.savings-track span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(var(--saving-scale, .85));
    transform-origin: left;
    transition: transform 480ms var(--ease-out);
}

.math-table-wrap {
    margin-top: 20px;
    box-shadow: none;
}

.math-table th,
.math-table td {
    padding: 19px;
    text-align: left;
    vertical-align: middle;
}

.math-table thead th {
    background: var(--surface-2);
    color: var(--text-soft);
    font-size: 11px;
}

.math-table tbody th {
    min-width: 175px;
    background: #0b0e14;
    font-size: 12px;
}

.math-table td {
    color: var(--text-soft);
    font-size: 11.5px;
}

.math-table td b {
    color: var(--text);
}

.math-table td span {
    color: var(--muted);
    font-size: 10px;
}

.saving-cell {
    color: var(--lime) !important;
    font-size: 15px !important;
    font-weight: 850;
}

/* Value table */
.value-table {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.value-row {
    display: grid;
    grid-template-columns: .72fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.value-row:last-child {
    border-bottom: 0;
}

.value-row>div {
    padding: 20px;
    border-right: 1px solid var(--line);
}

.value-row>div:last-child {
    border-right: 0;
}

.value-row>div:first-child {
    background: #0b0e14;
}

.value-head {
    background: var(--surface-2);
    color: var(--text-soft);
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.value-head>div:first-child {
    background: var(--surface-2);
}

.value-row strong,
.value-row small {
    display: block;
}

.value-row strong {
    font-size: 13px;
}

.value-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9.5px;
}

.value-no,
.value-yes {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 11.5px;
    line-height: 1.55;
}

.value-no span,
.value-yes span {
    flex: none;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
}

.value-no span {
    background: var(--danger-soft);
    color: var(--danger);
}

.value-yes {
    background: rgba(216, 255, 85, .025);
}

.value-yes span {
    background: var(--lime-soft);
    color: var(--lime);
}

/* Insight */
.insight-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(42px, 7vw, 88px);
    align-items: start;
}

.insight-sticky {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.insight-sticky .btn-primary {
    margin-top: 28px;
}

.insight-cards {
    display: grid;
    gap: 18px;
}

.insight-card {
    min-height: 300px;
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.insight-card-accent {
    background: linear-gradient(145deg, rgba(216, 255, 85, .09), transparent 65%), var(--surface);
}

/* Care */
.care-slider-wrap {
    position: relative;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.care-card {
    position: relative;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--medium) var(--ease-out), border-color var(--medium) var(--ease-out), box-shadow var(--medium) var(--ease-out);
}

.care-card-featured {
    background: linear-gradient(145deg, rgba(98, 105, 255, .1), transparent 62%), var(--surface);
}

.care-card.match {
    border-color: var(--lime);
    box-shadow: 0 0 0 1px var(--lime), 0 30px 65px -38px rgba(216, 255, 85, .42);
    transform: translateY(-5px);
}

.care-match {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 6px 12px;
    border-radius: 0 0 10px 10px;
    background: var(--lime);
    color: #090b05;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(-50%, -8px);
    transition: opacity var(--medium) var(--ease-out), transform var(--medium) var(--ease-out);
}

.care-card.match .care-match {
    opacity: 1;
    transform: translate(-50%, 0);
}

.care-label {
    align-self: flex-start;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
}

.care-card[data-level="standard"] .care-label {
    background: var(--blue-soft);
    color: var(--blue-bright);
}

.care-card[data-level="premium"] .care-label {
    background: var(--lime-soft);
    color: var(--lime);
}

.care-card h3 {
    margin: 0 0 9px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.care-intro {
    min-height: 68px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12.5px;
}

.care-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

.care-price b {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    letter-spacing: -.035em;
}

.care-price small {
    font-size: 9.5px;
}

.care-list {
    display: grid;
    gap: 11px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.care-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text-soft);
    font-size: 11.5px;
    line-height: 1.45;
}

.care-list li span {
    flex: none;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
}

.care-list .included span {
    background: var(--lime-soft);
    color: var(--lime);
}

.care-list .excluded {
    color: #72798e;
}

.care-list .excluded span {
    background: var(--danger-soft);
    color: var(--danger);
}

.care-select {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: var(--text);
    font-size: 12px;
    transition: transform var(--press) var(--ease-out), background-color var(--fast) var(--ease-out), color var(--fast) var(--ease-out);
}

.care-card.match .care-select {
    background: var(--lime);
    color: #090b05;
}

.care-arrow,
.care-dots {
    display: none;
}

/* Process */
.process-grid,
.faq-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(44px, 7vw, 90px);
    align-items: start;
}

.process-button {
    margin-top: 26px;
}

.process-list {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0 0 0 29px;
    list-style: none;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 1px;
    background: linear-gradient(var(--blue), var(--lime));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 900ms var(--ease-out);
}

.process-list.in-view::before {
    transform: scaleY(1);
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.process-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -35px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--bg-deep);
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px var(--lime-soft);
    transform: translateY(-50%);
}

.process-icon {
    width: 42px;
    height: 42px;
}

.process-item h3 {
    margin: 1px 0 7px;
    font-size: 17px;
}

.process-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
}

/* FAQ */
.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 4px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
}

.faq-question i {
    position: relative;
    flex: none;
    width: 27px;
    height: 27px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transition: transform var(--medium) var(--ease-out), border-color var(--medium) var(--ease-out);
}

.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: var(--muted);
    transform: translate(-50%, -50%);
}

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

.faq-item.open .faq-question i {
    border-color: var(--lime);
    transform: rotate(135deg);
}

.faq-item.open .faq-question i::before,
.faq-item.open .faq-question i::after {
    background: var(--lime);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--medium) var(--ease-out);
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    max-width: 650px;
    margin: 0 42px 22px 4px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

/* Contact */
.contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.contact-direct a {
    display: grid;
    gap: 2px;
    padding: 16px 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    text-decoration: none;
    transition: border-color var(--fast) var(--ease-out), transform var(--press) var(--ease-out);
}

.contact-direct a:active {
    transform: scale(.985);
}

.contact-direct span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-direct strong {
    font-size: 13px;
    overflow-wrap: anywhere;
}

.contact-form {
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.form-split,
.wizard-form-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.form-row,
.wizard-form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.form-row label,
.wizard-form-row label {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #0b0e15;
    color: var(--text);
    outline: 0;
    transition: border-color var(--fast) var(--ease-out), background-color var(--fast) var(--ease-out), box-shadow var(--fast) var(--ease-out);
}

input {
    min-height: 47px;
    padding: 11px 13px;
}

textarea {
    min-height: 128px;
    padding: 13px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #6f768a;
}

input:focus,
textarea:focus {
    border-color: var(--blue);
    background: #0d1018;
    box-shadow: 0 0 0 3px var(--blue-soft);
}

input.invalid,
textarea.invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px var(--danger-soft);
}

.field-error {
    min-height: 15px;
    color: var(--danger);
    font-size: 9.5px;
}

.consent-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.55;
}

.consent-row input {
    width: 17px;
    min-height: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--lime);
}

.consent-row a {
    color: var(--text-soft);
}

.consent-error {
    display: block;
    margin: 4px 0 10px 27px;
}

.form-submit {
    width: 100%;
    margin-top: 11px;
}

.form-status,
.wizard-form-status,
#chatFormStatus {
    min-height: 21px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 10.5px;
    text-align: center;
}

.form-status.success,
.wizard-form-status.success,
#chatFormStatus.success {
    color: var(--lime);
}

.form-status.error,
.wizard-form-status.error,
#chatFormStatus.error {
    color: var(--danger);
}

.honey {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Final CTA */
.final-cta {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: clamp(70px, 9vw, 120px);
    margin-bottom: clamp(70px, 9vw, 120px);
    padding: clamp(34px, 5vw, 60px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, rgba(98, 105, 255, .16), rgba(216, 255, 85, .08)), var(--surface);
    overflow: hidden;
}

.final-cta h2 {
    max-width: 650px;
    margin-bottom: 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.final-cta p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.final-cta>* {
    position: relative;
    z-index: 2;
}

.final-cta-orbit {
    position: absolute;
    right: -80px;
    top: -170px;
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(216, 255, 85, .22);
    border-radius: 50%;
    animation: ringTurn 28s linear infinite;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.footer-grid {
    min-height: 145px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 35px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
    color: var(--muted);
    font-size: 10.5px;
    text-decoration: none;
}

.footer-meta {
    display: grid;
    justify-items: end;
    gap: 3px;
}

/* Wizard */
.scrim {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 4, 7, .66);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0) saturate(120%);
    transition: opacity 380ms var(--ease-out), backdrop-filter 380ms var(--ease-out);
}

.scrim.show {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(9px) saturate(145%);
}

.scrim.closing {
    transition-duration: 220ms;
    transition-timing-function: var(--ease-in-out);
}

.wizard {
    width: min(590px, 100%);
    max-height: min(830px, calc(100dvh - 40px));
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: rgba(15, 18, 26, .96);
    box-shadow: 0 38px 100px -34px rgba(0, 0, 0, .95), 0 0 80px -50px rgba(98, 105, 255, .8);
    opacity: 0;
    transform: translateY(24px) scale(.97);
    transform-origin: center;
    overflow: hidden;
    transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}

.scrim.show .wizard {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scrim.closing .wizard {
    opacity: 0;
    transform: translateY(10px) scale(.985);
    transition-duration: 220ms;
    transition-timing-function: var(--ease-in-out);
}

.wizard-top {
    flex: none;
    padding: 22px 27px 0;
}

.wizard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.wizard-tag {
    color: var(--lime);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wizard-close,
.chat-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    color: var(--muted);
    cursor: pointer;
    transition: transform var(--press) var(--ease-out), background-color var(--fast) var(--ease-out), color var(--fast) var(--ease-out);
}

.wizard-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.wizard-progress i {
    position: relative;
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: var(--line-strong);
    overflow: hidden;
}

.wizard-progress i::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms var(--ease-out);
}

.wizard-progress i.active::after,
.wizard-progress i.done::after {
    transform: scaleX(1);
}

.wizard-content {
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    padding: 2px 27px 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) transparent;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.panel-in {
    animation: panelIn 320ms var(--ease-out) both;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step-label {
    margin-bottom: 7px;
    font-size: 9px;
}

.wizard-step h2 {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.032em;
}

.wizard-step .panel-in>p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12.5px;
}

.wizard-option {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 13px;
    margin-bottom: 9px;
    padding: 15px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    animation: optionEnter 300ms var(--ease-out) both;
    transition: border-color var(--fast) var(--ease-out), background-color var(--fast) var(--ease-out), transform var(--press) var(--ease-out);
}

@keyframes optionEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-option:active {
    transform: scale(.99);
}

.wizard-option.selected {
    border-color: var(--lime);
    background: rgba(216, 255, 85, .065);
}

.option-radio {
    position: relative;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border: 1.5px solid var(--line-strong);
    border-radius: 50%;
}

.wizard-option.selected .option-radio {
    border-color: var(--lime);
}

.wizard-option.selected .option-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--lime);
    animation: radioIn 200ms var(--ease-out) both;
}

@keyframes radioIn {
    from {
        opacity: 0;
        transform: scale(.4);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wizard-option>span:last-child {
    display: grid;
    gap: 2px;
}

.wizard-option strong {
    font-size: 13px;
}

.wizard-option small {
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.5;
}

.wizard-form {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .022);
}

.wizard-form-row {
    margin-bottom: 10px;
}

.wizard-form-row input {
    min-height: 43px;
}

.wizard-consent {
    margin-top: 3px;
}

.wizard-result-view[hidden],
.wizard-contact-view[hidden] {
    display: none;
}

.result-heading {
    text-align: center;
}

.result-card {
    position: relative;
    padding: 24px 22px;
    border: 1px solid rgba(216, 255, 85, .25);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(216, 255, 85, .09), rgba(98, 105, 255, .07)), var(--surface-2);
    text-align: center;
    overflow: hidden;
}

.result-card::before {
    content: "";
    position: absolute;
    inset: -60% -20% auto;
    height: 100%;
    background: radial-gradient(ellipse, rgba(216, 255, 85, .15), transparent 66%);
}

.arrow-mark {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 0 auto 8px;
}

.arrow-mark svg {
    width: 100%;
    height: 100%;
}

.arrow-path {
    fill: none;
    stroke: var(--lime);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
}

.arrow-mark.draw .arrow-path {
    animation: drawArrow 620ms var(--ease-out) both;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

.result-label {
    position: relative;
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-name {
    position: relative;
    display: block;
    margin: 6px 0 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
}

.result-price {
    position: relative;
    display: block;
    color: var(--lime);
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.result-price small {
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
}

.result-note {
    position: relative;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 9.5px;
}

.wizard-nav {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 27px 22px;
    border-top: 1px solid var(--line);
    background: rgba(15, 18, 26, .98);
}

.wizard-back {
    min-height: 42px;
    padding: 9px 5px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.wizard-next {
    min-width: 130px;
    min-height: 43px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
}

.wizard-next:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.wizard-next.loading,
.form-submit.loading,
.chat-submit.loading {
    color: transparent;
    pointer-events: none;
    position: relative;
}

.wizard-next.loading::after,
.form-submit.loading::after,
.chat-submit.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 17px;
    margin: -8.5px;
    border: 2px solid rgba(0, 0, 0, .24);
    border-top-color: #080a04;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cookie */
.cookie-banner {
    position: fixed;
    z-index: 320;
    left: 50%;
    bottom: 22px;
    width: min(760px, calc(100% - 44px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 15px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(17, 20, 29, .95);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(18px) saturate(145%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 24px) scale(.98);
    transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.cookie-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lime-soft);
}

.cookie-icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 56%, 74% 54%, 65% 70%, 46% 60%, 33% 79%, 0 64%);
}

.cookie-icon span,
.cookie-icon i,
.cookie-icon b {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--lime);
}

.cookie-icon span {
    top: 15px;
    left: 16px;
}

.cookie-icon i {
    top: 22px;
    left: 22px;
}

.cookie-icon b {
    top: 27px;
    left: 15px;
}

.cookie-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 9.5px;
    line-height: 1.5;
}

.cookie-copy a {
    color: var(--text-soft);
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-button {
    min-height: 39px;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 10px;
    white-space: nowrap;
}

.cookie-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, .035);
    color: var(--text-soft);
}

/* Chat */
.chat-fab {
    position: fixed;
    z-index: 310;
    right: 22px;
    bottom: 22px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px 0 15px;
    border: 1px solid rgba(216, 255, 85, .38);
    border-radius: 999px;
    background: var(--lime);
    color: #090b05;
    box-shadow: 0 20px 55px -24px rgba(216, 255, 85, .62);
    cursor: pointer;
    transform-origin: bottom right;
    transition: transform var(--press) var(--ease-out), background-color var(--fast) var(--ease-out), bottom var(--medium) var(--ease-out);
    animation: fabArrival 650ms var(--ease-out) 1800ms both;
}

@keyframes fabArrival {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.93);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-fab svg {
    width: 22px;
    height: 22px;
}

.chat-fab-label {
    font-size: 11px;
    font-weight: 850;
}

.chat-fab-ripple {
    position: absolute;
    inset: -1px;
    border: 1px solid var(--lime);
    border-radius: inherit;
    opacity: 0;
    animation: fabPulse 900ms var(--ease-out) 3.5s 2;
}

@keyframes fabPulse {
    0% {
        opacity: .55;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

body.cookie-visible .chat-fab {
    bottom: 104px;
}

.chat-panel {
    position: fixed;
    z-index: 330;
    right: 22px;
    bottom: 88px;
    width: min(390px, calc(100% - 32px));
    max-height: min(650px, calc(100dvh - 120px));
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: rgba(15, 18, 26, .98);
    box-shadow: 0 34px 90px -28px rgba(0, 0, 0, .96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(.96);
    transform-origin: bottom right;
    overflow: hidden;
    transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.chat-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-head {
    flex: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}

.chat-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--surface);
}

.chat-avatar img {
    width: 30px;
    height: 30px;
}

.chat-avatar span {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--surface-2);
    border-radius: 50%;
    background: var(--lime);
}

.chat-head>div:nth-child(2) {
    display: grid;
}

.chat-head strong {
    font-size: 12px;
}

.chat-head small {
    color: var(--muted);
    font-size: 8.5px;
}

.chat-close {
    width: 30px;
    height: 30px;
}

.chat-close svg {
    width: 16px;
    height: 16px;
}

.chat-body {
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) transparent;
}

.chat-message {
    max-width: 88%;
    margin-bottom: 10px;
    padding: 11px 12px;
    border-radius: 13px;
    animation: chatMessageIn 260ms var(--ease-out) both;
}

@keyframes chatMessageIn {
    from {
        opacity: 0;
        transform: translateY(7px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-message p {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.55;
}

.bot-message {
    border: 1px solid var(--line);
    border-bottom-left-radius: 4px;
    background: var(--surface-2);
    color: var(--text-soft);
}

.user-message {
    margin-left: auto;
    border-bottom-right-radius: 4px;
    background: var(--lime);
    color: #090b05;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.chat-quick button {
    padding: 7px 9px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--fast) var(--ease-out), color var(--fast) var(--ease-out), transform var(--press) var(--ease-out);
}

.chat-quick button:active {
    transform: scale(.97);
}

.chat-lead-form {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .025);
    animation: panelIn var(--medium) var(--ease-out) both;
}

.chat-lead-form label {
    display: grid;
    gap: 4px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
}

.chat-lead-form input {
    min-height: 39px;
    padding: 9px 10px;
    font-size: 11px;
}

.chat-lead-form .chat-consent {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.chat-lead-form .chat-consent input {
    width: 16px;
    min-height: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--lime);
}

.chat-submit {
    min-height: 40px;
    border-radius: 9px;
    font-size: 10px;
}

.chat-footer {
    flex: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.chat-footer a {
    padding: 11px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
}

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

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.reveal[data-reveal="left"] {
    transform: translateX(-24px);
}

.reveal[data-reveal="right"] {
    transform: translateX(24px);
}

.reveal.in {
    opacity: 1;
    transform: translate(0, 0);
}

.expert-bento .reveal:nth-child(2),
.foundation-layout .reveal:nth-child(2),
.ownership-grid .reveal:nth-child(2),
.care-grid .reveal:nth-child(2) {
    transition-delay: 70ms;
}

.expert-bento .reveal:nth-child(3),
.foundation-layout .reveal:nth-child(3),
.ownership-grid .reveal:nth-child(3),
.care-grid .reveal:nth-child(3) {
    transition-delay: 140ms;
}

.foundation-layout .reveal:nth-child(4) {
    transition-delay: 210ms;
}

/* Hover */
@media (hover: hover) and (pointer: fine) {
    .nav-links a:hover {
        color: var(--text);
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-phone:hover {
        color: var(--lime);
    }

    .nav-cta:hover,
    .btn-primary:hover,
    .summary-action:hover,
    .wizard-next:not(:disabled):hover,
    .cookie-button:not(.cookie-secondary):hover,
    .chat-submit:hover,
    .ownership-select:hover,
    .mini-cta:hover {
        background: var(--lime-hover);
    }

    .btn-primary:hover {
        box-shadow: 0 18px 48px -20px rgba(216, 255, 85, .58);
    }

    .btn-secondary:hover {
        border-color: rgba(98, 105, 255, .55);
        background: var(--blue-soft);
    }

    .spotlight-card:hover::after {
        opacity: 1;
    }

    .expert-card:hover,
    .foundation-card:hover,
    .insight-card:hover,
    .ownership-card:hover {
        border-color: rgba(255, 255, 255, .23);
    }

    .price-cell:hover {
        background: rgba(255, 255, 255, .035);
    }

    .care-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, .25);
    }

    .care-card.match:hover {
        transform: translateY(-7px);
    }

    .care-card:hover .care-select {
        background: var(--lime);
        color: #090b05;
    }

    .contact-direct a:hover {
        border-color: rgba(98, 105, 255, .5);
    }

    .faq-question:hover i {
        border-color: var(--blue);
    }

    .wizard-close:hover,
    .chat-close:hover {
        background: rgba(255, 255, 255, .08);
        color: var(--text);
    }

    .wizard-option:hover {
        border-color: rgba(98, 105, 255, .48);
    }

    .cookie-secondary:hover {
        border-color: rgba(255, 255, 255, .28);
        color: var(--text);
    }

    .chat-fab:hover {
        background: var(--lime-hover);
    }

    .chat-quick button:hover {
        border-color: var(--blue);
        color: var(--text);
    }

    .chat-footer a:hover {
        color: var(--lime);
        background: rgba(255, 255, 255, .025);
    }

    .footer-links a:hover,
    .footer-meta a:hover {
        color: var(--text);
    }
}

/* Responsive */
@media (max-width: 1080px) {
    .nav-phone {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(40px, 5.5vw, 59px);
    }

    .signal-node {
        min-width: 165px;
        padding: 10px 12px;
    }

    .signal-node-contact {
        right: -2%;
    }

    .proof-item {
        padding-inline: 16px;
    }

    .authority-flow {
        grid-template-columns: 1fr 30px 1fr 30px 1fr;
    }

    .care-card {
        padding: 24px;
    }
}

@media (max-width: 920px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .signal-stage {
        max-width: 540px;
    }

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

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .expert-bento {
        grid-template-columns: 1fr 1fr;
    }

    .expert-card-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 440px;
    }

    .foundation-layout {
        grid-template-columns: 1fr;
    }

    .foundation-card {
        min-height: 250px;
    }

    .ownership-grid {
        grid-template-columns: 1fr;
    }

    .ownership-card {
        min-height: auto;
    }

    .comparison-stage {
        grid-template-columns: 1fr;
    }

    .comparison-vs {
        min-height: 34px;
    }

    .comparison-vs span {
        width: 38px;
        height: 38px;
    }

    .savings-card {
        grid-column: auto;
    }

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

    .insight-grid,
    .process-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .insight-sticky,
    .faq-intro {
        position: static;
    }

    .care-slider-wrap {
        padding-bottom: 52px;
    }

    .care-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 4px 1px 18px;
    }

    .care-grid::-webkit-scrollbar {
        display: none;
    }

    .care-card {
        flex: 0 0 min(82vw, 390px);
        min-height: 625px;
        scroll-snap-align: start;
    }

    .care-arrow {
        position: absolute;
        z-index: 4;
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid var(--line-strong);
        border-radius: 50%;
        background: rgba(15, 18, 26, .94);
        color: var(--text);
        box-shadow: var(--shadow-float);
        cursor: pointer;
        transform: none;
    }

    .care-arrow svg {
        width: 20px;
        height: 20px;
    }

    .care-prev {
        left: calc(50% - 78px);
    }

    .care-next {
        right: calc(50% - 78px);
    }

    .care-dots {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: -34px;
        pointer-events: none;
    }

    .care-dots button {
        pointer-events: auto;
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: var(--line-strong);
        cursor: pointer;
        transition: width var(--medium) var(--ease-out), background-color var(--medium) var(--ease-out);
    }

    .care-dots button.active {
        width: 24px;
        background: var(--lime);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 35px 0;
        text-align: center;
    }

    .footer-meta {
        justify-items: center;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 64px;
    }

    .wrap {
        width: min(100% - 36px, 1180px);
    }

    .brand span {
        font-size: 13px;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 55px;
    }

    .hero::before {
        background-size: 56px 56px;
    }

    .eyebrow {
        font-size: 10.5px;
        line-height: 1.4;
    }

    .hero-title {
        font-size: clamp(37px, 11vw, 52px);
    }

    .lead {
        font-size: 15.5px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
        margin-top: -5px;
    }

    .signal-stage {
        width: 108%;
        margin-left: -4%;
    }

    .logo-stage {
        width: 145px;
        border-radius: 29px;
    }

    .logo-stage img {
        width: 100px;
        height: 100px;
    }

    .signal-node {
        min-width: 142px;
        gap: 8px;
        padding: 8px 9px;
        border-radius: 11px;
    }

    .signal-node-expert {
        left: 0;
        bottom: 12%;
    }

    .signal-node-trust {
        top: 3%;
        left: 8%;
    }

    .signal-node-contact {
        right: -1%;
        top: 24%;
    }

    .node-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

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

    .signal-node strong {
        font-size: 10px;
    }

    .signal-node small {
        font-size: 8px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-item {
        min-height: 76px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .audience-marquee {
        padding: 18px 0;
    }

    .expert-section,
    .foundation,
    .pricing,
    .first-year,
    .value-compare,
    .insight-story,
    .care,
    .process,
    .faq,
    .contact {
        padding: 78px 0;
    }

    .section-head {
        margin-bottom: 31px;
    }

    .section-head h2,
    .process-intro h2,
    .faq-intro h2,
    .contact-copy h2,
    .insight-sticky h2 {
        font-size: 32px;
    }

    .section-head>p:last-child,
    .process-intro>p,
    .faq-intro>p,
    .contact-copy>p,
    .insight-sticky>p {
        font-size: 14px;
    }

    .expert-bento {
        grid-template-columns: 1fr;
    }

    .expert-card-main {
        grid-column: auto;
        min-height: 480px;
    }

    .authority-flow {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 30px;
    }

    .flow-connector {
        width: 1px;
        height: 22px;
        margin-left: 20px;
    }

    .flow-connector::after {
        background: linear-gradient(transparent, var(--lime), transparent);
        transform: translateY(-100%);
        animation-name: connectorFlowMobile;
    }

    @keyframes connectorFlowMobile {

        55%,
        100% {
            transform: translateY(100%);
        }
    }

    .foundation-card,
    .foundation-card-wide,
    .foundation-card-contrast {
        min-height: auto;
        display: block;
        padding: 25px;
    }

    .foundation-card-wide .foundation-icon {
        margin-bottom: 20px;
    }

    .foundation-pills {
        margin-top: 19px;
    }

    .foundation-card-contrast .mini-cta {
        width: 100%;
        margin-top: 21px;
    }

    .model-switch {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .model-tab {
        min-height: 65px;
    }

    .model-indicator {
        top: 5px;
        right: 5px;
        bottom: auto;
        width: auto;
        height: calc(50% - 7px);
    }

    .model-switch[data-active="ownership"] .model-indicator {
        transform: translateY(calc(100% + 4px));
    }

    .pricing-summary,
    .ownership-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary-action {
        width: 100%;
    }

    .ownership-intro>p {
        max-width: none;
    }

    .ownership-card {
        padding: 25px;
    }

    .comparison-switch {
        width: 100%;
        overflow-x: auto;
        border-radius: 14px;
        scrollbar-width: none;
    }

    .comparison-switch::-webkit-scrollbar {
        display: none;
    }

    .comparison-tab {
        flex: none;
    }

    .comparison-stage {
        padding: 15px;
        border-radius: 21px;
    }

    .comparison-column {
        min-height: auto;
        padding: 22px;
    }

    .comparison-recommended {
        position: static;
        display: inline-flex;
        margin-bottom: 10px;
    }

    .comparison-total {
        font-size: 37px;
    }

    .savings-card {
        grid-template-columns: 1fr;
    }

    .savings-card>strong {
        justify-self: start;
    }

    .value-table {
        display: grid;
        gap: 13px;
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .value-head {
        display: none;
    }

    .value-row {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid var(--line-strong);
        border-radius: 15px;
        background: var(--surface);
        overflow: hidden;
    }

    .value-row>div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-row>div:last-child {
        border-bottom: 0;
    }

    .value-row>div:first-child {
        padding: 16px 18px;
    }

    .value-no::before,
    .value-yes::before {
        display: block;
        width: 100%;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 8px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .value-no::before {
        content: "Zakup jednorazowy";
    }

    .value-yes::before {
        content: "Abonament Basic";
    }

    .value-no,
    .value-yes {
        flex-wrap: wrap;
    }

    .insight-card {
        min-height: auto;
        padding: 27px;
    }

    .care-card {
        flex-basis: calc(100vw - 55px);
        min-height: 635px;
        padding: 25px;
    }

    .care-prev {
        left: -7px;
    }

    .care-next {
        right: -7px;
    }

    .process-list {
        padding-left: 23px;
    }

    .process-item {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .process-item::before {
        left: -29px;
    }

    .form-split,
    .wizard-form-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 22px;
    }

    .final-cta {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta .btn-primary {
        width: 100%;
    }

    .footer-links {
        max-width: 330px;
    }

    .scrim {
        align-items: end;
        padding: 0;
    }

    .wizard {
        width: 100%;
        max-height: calc(100dvh - 14px);
        border-radius: 22px 22px 0 0;
        transform: translateY(100%);
    }

    .scrim.show .wizard {
        transform: translateY(0);
    }

    .scrim.closing .wizard {
        transform: translateY(100%);
    }

    .wizard-top {
        padding: 18px 19px 0;
    }

    .wizard-content {
        padding: 2px 19px 18px;
    }

    .wizard-nav {
        padding: 13px 19px 18px;
    }

    .wizard-step h2 {
        font-size: 22px;
    }

    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 24px);
        grid-template-columns: auto 1fr;
        gap: 11px;
        padding: 13px;
        border-radius: 15px;
    }

    .cookie-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-actions {
        grid-column: 1 / -1;
    }

    .cookie-button {
        flex: 1;
    }

    body.cookie-visible .chat-fab {
        bottom: 185px;
    }

    .chat-fab {
        right: 13px;
        bottom: 13px;
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }

    .chat-fab-label {
        display: none;
    }

    .chat-panel {
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: min(720px, 88dvh);
        border-radius: 22px 22px 0 0;
        transform: translateY(100%);
        transform-origin: bottom center;
    }

    .chat-panel.open {
        transform: translateY(0);
    }
}

@media (max-width: 390px) {
    .wrap {
        width: min(100% - 28px, 1180px);
    }

    .brand span {
        font-size: 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .signal-stage {
        transform: scale(.94);
    }

    .signal-node-expert {
        left: -2%;
    }

    .signal-node-contact {
        right: -4%;
    }

    .care-card {
        flex-basis: calc(100vw - 43px);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .hero-enter,
    .reveal,
    .wizard-option {
        opacity: 1 !important;
        transform: none !important;
    }

    .page-progress {
        display: none;
    }

    .marquee-track {
        transform: none;
    }

    .signal-path-flow {
        stroke-dashoffset: 0;
    }

    .arrow-path {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-transparency: reduce) {

    .site-header,
    .signal-node,
    .scrim,
    .wizard,
    .cookie-banner,
    .chat-panel,
    .care-arrow {
        backdrop-filter: none;
    }

    .site-header {
        background: var(--bg);
    }

    .signal-node,
    .wizard,
    .cookie-banner,
    .chat-panel {
        background: var(--surface);
    }
}

@media print {

    .site-header,
    .hero-visual,
    .audience-marquee,
    .scrim,
    .cookie-banner,
    .chat-fab,
    .chat-panel,
    .final-cta {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .proof-strip,
    .expert-section,
    .foundation,
    .pricing,
    .first-year,
    .value-compare,
    .insight-story,
    .care,
    .process,
    .faq,
    .contact {
        background: #fff;
        color: #111;
    }
}

/* Legal pages */
.legal-page {
    background: var(--bg-deep);
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 15, 0.92);
    backdrop-filter: blur(16px);
}

.legal-header .wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-back {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.legal-main {
    padding: 70px 0 110px;
}

.legal-document {
    max-width: 860px;
}

.legal-document h1 {
    margin-bottom: 10px;
    font-size: clamp(38px, 6vw, 60px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.legal-updated {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 12px;
}

.legal-warning {
    margin-bottom: 38px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 140, 145, 0.25);
    border-radius: 14px;
    background: var(--danger-soft);
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.65;
}

.legal-document section {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin-bottom: 13px;
    font-size: 22px;
    letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.legal-document a {
    color: var(--lime);
}

.legal-document ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

@media (max-width: 680px) {
    .legal-header .wrap {
        min-height: 64px;
    }

    .legal-back {
        font-size: 10px;
    }

    .legal-main {
        padding: 48px 0 80px;
    }

    .legal-document h1 {
        font-size: 39px;
    }
}

/* ============================================================
   FINAL READABILITY + LAYOUT PASS
   Ostatnia warstwa celowo nadpisuje wcześniejsze wartości bez
   przebudowywania pozostałych, działających komponentów.
   ============================================================ */

/* Większa czytelność w całym serwisie */
body {
    font-size: 17px;
}

.brand,
.footer-brand {
    font-size: 16px;
}

.nav-links a {
    font-size: 15px;
}

.nav-phone,
.nav-cta {
    font-size: 14px;
}

.section-label,
.summary-label,
.wizard-step-label {
    font-size: 13px;
}

.section-head>p:last-child,
.process-intro>p,
.faq-intro>p,
.contact-copy>p,
.insight-sticky>p {
    font-size: 17px;
}

.btn-primary,
.btn-secondary {
    font-size: 15px;
}

.eyebrow {
    font-size: 13px;
}

.lead {
    font-size: clamp(18px, 1.7vw, 20px);
}

.proof-item strong {
    font-size: 15px;
}

.proof-item small {
    font-size: 13px;
}

/* Wcześniejsza kompozycja hero: centralne logo, orbity i dwa komunikaty */
.hero-visual {
    min-height: 465px;
}

.classic-hero-stage {
    position: relative;
    width: min(100%, 510px);
    height: 465px;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.classic-hero-stage .logo-stage {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: clamp(230px, 25vw, 310px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 42%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
        rgba(15, 18, 27, 0.86);
    box-shadow: 0 42px 100px -45px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateZ(42px) rotate(-4deg);
    backdrop-filter: blur(22px) saturate(140%);
}

.classic-hero-stage .logo-stage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(98, 105, 255, 0.28);
    border-radius: 38%;
}

.classic-hero-stage .logo-stage img {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 58%;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.42));
    transform: rotate(4deg);
}

.logo-glow {
    position: absolute;
    width: 64%;
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 255, 85, 0.13), rgba(98, 105, 255, 0.18) 48%, transparent 72%);
    filter: blur(12px);
}

.orbit {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(98, 105, 255, 0.25);
    pointer-events: none;
}

.orbit::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12%;
    left: 16%;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px rgba(216, 255, 85, 0.72);
}

.orbit-one {
    width: 395px;
    height: 395px;
    animation: classicOrbitOne 24s linear infinite;
}

.orbit-two {
    width: 485px;
    height: 485px;
    border-color: rgba(255, 255, 255, 0.08);
    animation: classicOrbitTwo 31s linear infinite;
}

.orbit-two::before {
    width: 7px;
    height: 7px;
    top: auto;
    left: auto;
    right: 14%;
    bottom: 16%;
    background: var(--blue);
    box-shadow: 0 0 14px rgba(98, 105, 255, 0.74);
}

@keyframes classicOrbitOne {
    from {
        transform: rotate(18deg);
    }

    to {
        transform: rotate(378deg);
    }
}

@keyframes classicOrbitTwo {
    from {
        transform: rotate(-24deg);
    }

    to {
        transform: rotate(-384deg);
    }
}

.visual-chip {
    position: absolute;
    z-index: 4;
    min-width: 235px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: rgba(15, 18, 27, 0.9);
    box-shadow: 0 20px 52px -30px rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(18px) saturate(145%);
}

.visual-chip strong,
.visual-chip small {
    display: block;
}

.visual-chip strong {
    font-size: 15px;
}

.visual-chip small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12.5px;
}

.chip-icon {
    width: 38px;
    height: 38px;
    display: grid;
    flex: none;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-soft);
    color: #c0c3ff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.chip-top {
    top: 42px;
    right: -8px;
}

.chip-bottom {
    left: -22px;
    bottom: 38px;
}

/* Marquee bez przerwy pomiędzy końcem i początkiem */
.marquee-track {
    --marquee-gap: 26px;
    width: max-content;
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    animation: seamlessMarquee 30s linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: var(--marquee-gap);
}

.marquee-track span {
    font-size: 16px;
}

@keyframes seamlessMarquee {
    to {
        transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
    }
}

/* Karty eksperta zajmują tyle miejsca, ile realnie potrzebuje treść */
.expert-bento {
    grid-template-columns: 1.18fr 0.82fr;
}

.expert-card {
    min-height: 208px;
    padding: clamp(25px, 2.8vw, 34px);
}

.expert-card-main {
    min-height: 434px;
}

.expert-card h3,
.insight-card h3,
.ownership-card h3 {
    font-size: 24px;
}

.expert-card p,
.insight-card p,
.ownership-card p {
    font-size: 16px;
}

.authority-flow {
    margin-top: 28px;
}

.flow-step b {
    font-size: 14px;
}

.flow-step small {
    font-size: 12px;
}

/* Cennik i porównania */
.model-tab span {
    font-size: 16px;
}

.model-tab small {
    font-size: 13px;
}

.pricing-summary .summary-label,
.ownership-intro .summary-label {
    font-size: 12px;
}

.pricing-summary strong,
.ownership-intro strong {
    font-size: 16px;
}

.summary-action {
    font-size: 14px;
}

.price-table thead th:first-child {
    font-size: 14px;
}

.col-head small,
.row-head span {
    font-size: 13px;
}

.level-tag {
    font-size: 13px;
}

.row-head {
    font-size: 16px;
}

.price small {
    font-size: 13px;
}

.choice-badge {
    font-size: 11.5px;
}

.price-note,
.comparison-disclaimer {
    font-size: 14px;
}

.billing-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(216, 255, 85, 0.24);
    border-radius: var(--radius);
    background: linear-gradient(120deg, rgba(216, 255, 85, 0.08), rgba(98, 105, 255, 0.05)), var(--surface);
}

.billing-note-mark {
    width: 48px;
    height: 48px;
    display: grid;
    flex: none;
    place-items: center;
    border: 1px solid rgba(216, 255, 85, 0.28);
    border-radius: 14px;
    background: var(--lime-soft);
    color: var(--lime);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.billing-note strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
}

.billing-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.ownership-intro>p {
    font-size: 15px;
}

.ownership-card {
    cursor: pointer;
    transition: transform var(--press) var(--ease-out), border-color var(--fast) var(--ease-out), background-color var(--fast) var(--ease-out);
}

.ownership-card:active {
    transform: scale(0.985);
}

.ownership-type {
    font-size: 14px;
}

.ownership-card h3 small {
    font-size: 13px;
}

.ownership-card li {
    font-size: 14.5px;
}

.ownership-select {
    display: grid;
    place-items: center;
    font-size: 14px;
    user-select: none;
}

.ownership-warning p {
    font-size: 14px;
}

.comparison-tab {
    font-size: 14px;
}

.comparison-caption {
    font-size: 13px;
}

.comparison-column p {
    font-size: 14px;
}

.savings-card>span,
.savings-card>small {
    font-size: 13px;
}

.math-table thead th,
.math-table tbody th,
.math-table td {
    font-size: 13.5px;
}

.math-table td span {
    font-size: 12px;
}

.value-row strong {
    font-size: 15px;
}

.value-row small {
    font-size: 12px;
}

.value-yes,
.value-no {
    font-size: 14px;
}

/* Poziomy opieki */
.care-label {
    font-size: 13px;
}

.care-card h3 {
    font-size: 26px;
}

.care-intro {
    font-size: 15.5px;
}

.care-price small {
    font-size: 12px;
}

.care-list li {
    font-size: 14.5px;
}

.care-select {
    font-size: 14px;
}

.recommended-tag,
.ownership-badge,
.care-match {
    font-size: 11px;
}

/* Proces, FAQ, formularze i stopka */
.process-item h3 {
    font-size: 19px;
}

.process-item p {
    font-size: 15px;
}

.faq-question {
    font-size: 17px;
}

.faq-answer p {
    font-size: 15.5px;
}

.contact-direct span {
    font-size: 11.5px;
}

.contact-direct strong {
    font-size: 15px;
}

.form-row label,
.wizard-form-row label {
    font-size: 14px;
}

.form-row input,
.form-row textarea,
.wizard-form-row input {
    font-size: 16px;
}

.field-error,
.form-status,
.wizard-form-status {
    font-size: 13px;
}

.consent-row {
    font-size: 13.5px;
}

.final-cta p {
    font-size: 16px;
}

.footer-links a,
.footer-meta {
    font-size: 13px;
}

/* Ankieta */
.wizard-tag {
    font-size: 13px;
}

.wizard-step-label {
    font-size: 12px;
}

.wizard-step h2 {
    font-size: 27px;
}

.wizard-step .panel-in>p {
    font-size: 14.5px;
}

.wizard-option strong {
    font-size: 15px;
}

.wizard-option small {
    font-size: 13px;
}

.wizard-back,
.wizard-next {
    font-size: 14px;
}

.result-label {
    font-size: 11px;
}

.result-name {
    font-size: 24px;
}

.result-price small,
.result-note {
    font-size: 12px;
}

/* Cookies: zawsze na środku desktopu i wyraźnie czytelne */
.cookie-copy strong {
    font-size: 14px;
}

.cookie-copy p {
    font-size: 12.5px;
}

.cookie-button {
    font-size: 12.5px;
}

/* Chat pozostaje kompaktowy, ale nie mikroskopijny */
.chat-fab-label {
    font-size: 12.5px;
}

.chat-head strong {
    font-size: 14px;
}

.chat-head small {
    font-size: 11px;
}

.chat-message p {
    font-size: 13px;
}

.chat-quick button {
    font-size: 11.5px;
}

.chat-lead-form label {
    font-size: 11.5px;
}

.chat-lead-form input {
    font-size: 14px;
}

.chat-submit,
.chat-footer a,
#chatFormStatus {
    font-size: 11.5px;
}

@media (hover: hover) and (pointer: fine) {
    .ownership-card:hover {
        transform: translateY(-4px);
        border-color: rgba(216, 255, 85, 0.42);
    }

    .ownership-card:hover .ownership-select {
        background: var(--lime-hover);
    }
}

@media (max-width: 1080px) {
    .classic-hero-stage {
        width: min(100%, 460px);
    }

    .orbit-one {
        width: 365px;
        height: 365px;
    }

    .orbit-two {
        width: 445px;
        height: 445px;
    }

    .visual-chip {
        min-width: 215px;
    }
}

@media (max-width: 920px) {
    .expert-card-main {
        min-height: 365px;
    }

    .classic-hero-stage {
        width: min(100%, 500px);
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .brand span {
        font-size: 13.5px;
    }

    .mobile-menu a {
        font-size: 16px;
    }

    .hero {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .eyebrow {
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(33px, 9.4vw, 41px);
        line-height: 1.02;
    }

    .lead {
        font-size: 16.5px;
        line-height: 1.62;
    }

    .hero-visual {
        min-height: 325px;
        margin-top: 8px;
    }

    .classic-hero-stage {
        width: min(100%, 350px);
        height: 320px;
    }

    .classic-hero-stage .logo-stage {
        width: 176px;
        border-radius: 36%;
    }

    .classic-hero-stage .logo-stage::before {
        inset: 13px;
    }

    .orbit-one {
        width: 260px;
        height: 260px;
    }

    .orbit-two {
        width: 315px;
        height: 315px;
    }

    .visual-chip {
        min-width: 178px;
        gap: 9px;
        padding: 10px 11px;
        border-radius: 12px;
    }

    .visual-chip strong {
        font-size: 12.5px;
    }

    .visual-chip small {
        font-size: 10.5px;
    }

    .chip-icon {
        width: 31px;
        height: 31px;
        border-radius: 9px;
        font-size: 10.5px;
    }

    .chip-top {
        top: 18px;
        right: -2px;
    }

    .chip-bottom {
        left: -2px;
        bottom: 18px;
    }

    .proof-item strong {
        font-size: 15px;
    }

    .proof-item small {
        font-size: 13px;
    }

    .marquee-track span {
        font-size: 15px;
    }

    .section-head>p:last-child,
    .process-intro>p,
    .faq-intro>p,
    .contact-copy>p,
    .insight-sticky>p {
        font-size: 16px;
    }

    .section-label,
    .summary-label,
    .wizard-step-label {
        font-size: 12px;
    }

    .expert-card,
    .expert-card-main {
        min-height: 0;
    }

    .expert-card h3,
    .insight-card h3,
    .ownership-card h3 {
        font-size: 22px;
    }

    .expert-card p,
    .insight-card p,
    .ownership-card p {
        font-size: 15.5px;
    }

    .flow-step b {
        font-size: 14px;
    }

    .flow-step small {
        font-size: 12px;
    }

    .billing-note {
        align-items: flex-start;
        padding: 16px;
    }

    .billing-note-mark {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .billing-note strong {
        font-size: 15px;
    }

    .billing-note p {
        font-size: 13.5px;
    }

    .model-tab span {
        font-size: 15px;
    }

    .model-tab small {
        font-size: 12.5px;
    }

    .ownership-intro>p,
    .ownership-card li,
    .ownership-warning p {
        font-size: 14px;
    }

    .price-note,
    .comparison-disclaimer {
        font-size: 13.5px;
    }

    .care-card {
        min-height: 0;
    }

    .care-card h3 {
        font-size: 24px;
    }

    .care-intro,
    .care-list li {
        font-size: 14.5px;
    }

    .process-item p,
    .faq-answer p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 16.5px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-row label,
    .wizard-form-row label {
        font-size: 13.5px;
    }

    .form-row input,
    .form-row textarea,
    .wizard-form-row input {
        font-size: 16px;
    }

    .wizard-step h2 {
        font-size: 24px;
    }

    .wizard-step .panel-in>p {
        font-size: 14px;
    }

    .wizard-option strong {
        font-size: 14.5px;
    }

    .wizard-option small {
        font-size: 12.5px;
    }

    .cookie-banner {
        left: 50%;
        right: auto;
        bottom: 12px;
        width: calc(100% - 24px);
        transform: translate(-50%, 24px) scale(.98);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0) scale(1);
    }

    .cookie-copy strong {
        font-size: 13.5px;
    }

    .cookie-copy p {
        font-size: 12px;
    }

    .cookie-button {
        font-size: 12px;
    }

    .chat-head strong {
        font-size: 13.5px;
    }

    .chat-head small {
        font-size: 10.5px;
    }

    .chat-message p {
        font-size: 12.5px;
    }

    .chat-quick button {
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .classic-hero-stage {
        width: 330px;
        max-width: 104%;
        height: 295px;
    }

    .classic-hero-stage .logo-stage {
        width: 162px;
    }

    .orbit-one {
        width: 238px;
        height: 238px;
    }

    .orbit-two {
        width: 290px;
        height: 290px;
    }

    .visual-chip {
        min-width: 164px;
    }

    .visual-chip strong {
        font-size: 11.8px;
    }

    .visual-chip small {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .orbit-one,
    .orbit-two,
    .marquee-track {
        animation: none !important;
    }

    .marquee-track {
        transform: none !important;
    }
}

.ownership-card.selected {
    border-color: var(--lime);
    background: linear-gradient(145deg, rgba(216, 255, 85, 0.09), transparent 62%), var(--surface);
    box-shadow: 0 0 0 1px rgba(216, 255, 85, 0.16), 0 24px 58px -38px rgba(216, 255, 85, 0.55);
}

.ownership-card.selected .ownership-select {
    background: var(--lime-hover);
}

/* Drobne etykiety, które w poprzedniej wersji były zbyt małe */
.comparison-recommended,
.comparison-caption,
.value-head,
.comparison-vs span {
    font-size: 12.5px;
}

.cost-breakdown span {
    font-size: 14px;
}

.savings-card>small {
    font-size: 12.5px;
}

.care-price {
    font-size: 13.5px;
}

.warning-icon {
    font-size: 14px;
}

@media (max-width: 680px) {

    .comparison-recommended,
    .comparison-caption,
    .value-head,
    .comparison-vs span {
        font-size: 12px;
    }

    .cost-breakdown span {
        font-size: 13.5px;
    }

    .value-no::before,
    .value-yes::before {
        font-size: 10.5px;
    }
}

/* ============================================================
   HERO VISUAL — FINALNA KOREKTA POZYCJONOWANIA
   Wklej na samym końcu style.css
   ============================================================ */

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
    gap: clamp(48px, 6vw, 82px);
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    overflow: visible;
    perspective: 1100px;
}

.classic-hero-stage {
    position: relative;
    width: min(100%, 540px);
    height: 500px;
    margin-inline: auto;
    display: block;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Orbity zawsze dokładnie na środku */

.classic-hero-stage .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.classic-hero-stage .orbit-one {
    width: 390px;
    height: 390px;
    border: 1px solid rgba(98, 105, 255, 0.28);
    animation: correctedOrbitOne 24s linear infinite;
}

.classic-hero-stage .orbit-two {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: correctedOrbitTwo 31s linear infinite;
}

@keyframes correctedOrbitOne {
    from {
        transform: translate(-50%, -50%) rotate(18deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(378deg);
    }
}

@keyframes correctedOrbitTwo {
    from {
        transform: translate(-50%, -50%) rotate(-24deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-384deg);
    }
}

/* Centralny kafel */

.classic-hero-stage .logo-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 245px;
    height: 245px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 43%;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.01)),
        rgba(15, 18, 27, 0.92);
    box-shadow:
        0 42px 100px -45px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translate(-50%, -50%) translateZ(42px) rotate(-3deg);
    backdrop-filter: blur(22px) saturate(140%);
}

.classic-hero-stage .logo-stage::before {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px solid rgba(98, 105, 255, 0.28);
    border-radius: 38%;
    pointer-events: none;
}

.classic-hero-stage .logo-stage img {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 58%;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.42));
    transform: rotate(3deg);
}

.classic-hero-stage .logo-glow {
    position: absolute;
    width: 64%;
    height: 64%;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(216, 255, 85, 0.13),
            rgba(98, 105, 255, 0.18) 48%,
            transparent 72%);
    filter: blur(12px);
}

/* Kafelki są nad i pod logo, a nie obok jego środka */

.classic-hero-stage .visual-chip {
    position: absolute;
    z-index: 5;
    width: 244px;
    min-width: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: rgba(15, 18, 27, 0.94);
    box-shadow:
        0 20px 52px -30px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px) saturate(145%);
    transform: none;
    animation: none;
}

.classic-hero-stage .chip-top {
    top: 24px;
    right: 0;
    bottom: auto;
    left: auto;
}

.classic-hero-stage .chip-bottom {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 0;
}

.classic-hero-stage .chip-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-soft);
    color: #c0c3ff;
    font-size: 12px;
    font-weight: 800;
}

.classic-hero-stage .visual-chip>span:last-child {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.classic-hero-stage .visual-chip strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.classic-hero-stage .visual-chip small {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

/* Mniejszy desktop */

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
        gap: 40px;
    }

    .classic-hero-stage {
        width: min(100%, 500px);
        height: 480px;
    }

    .classic-hero-stage .orbit-one {
        width: 360px;
        height: 360px;
    }

    .classic-hero-stage .orbit-two {
        width: 440px;
        height: 440px;
    }

    .classic-hero-stage .logo-stage {
        width: 220px;
        height: 220px;
    }

    .classic-hero-stage .visual-chip {
        width: 220px;
    }

    .classic-hero-stage .chip-top {
        top: 25px;
    }

    .classic-hero-stage .chip-bottom {
        bottom: 25px;
    }
}

/* Tablet — hero przechodzi do jednej kolumny */

@media (max-width: 920px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: 100%;
        min-height: 490px;
    }

    .classic-hero-stage {
        width: min(100%, 510px);
        height: 470px;
    }
}

/* Mobile */

@media (max-width: 680px) {
    .hero-visual {
        min-height: 390px;
        margin-top: 8px;
        overflow: visible;
    }

    .classic-hero-stage {
        width: min(100%, 360px);
        height: 380px;
        margin-inline: auto;
    }

    .classic-hero-stage .orbit,
    .classic-hero-stage .logo-stage {
        top: 48%;
    }

    .classic-hero-stage .orbit-one {
        width: 260px;
        height: 260px;
    }

    .classic-hero-stage .orbit-two {
        width: 320px;
        height: 320px;
    }

    .classic-hero-stage .logo-stage {
        width: 168px;
        height: 168px;
        border-radius: 36%;
    }

    .classic-hero-stage .logo-stage::before {
        inset: 13px;
    }

    .classic-hero-stage .visual-chip {
        width: min(205px, calc(100% - 12px));
        min-height: 57px;
        gap: 9px;
        padding: 9px 11px;
        border-radius: 12px;
    }

    .classic-hero-stage .chip-top {
        top: 0;
        right: 0;
    }

    .classic-hero-stage .chip-bottom {
        bottom: 0;
        left: 0;
    }

    .classic-hero-stage .chip-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: 10px;
    }

    .classic-hero-stage .visual-chip strong {
        font-size: 12px;
    }

    .classic-hero-stage .visual-chip small {
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .hero-visual {
        min-height: 365px;
    }

    .classic-hero-stage {
        width: 330px;
        max-width: 100%;
        height: 355px;
    }

    .classic-hero-stage .orbit-one {
        width: 238px;
        height: 238px;
    }

    .classic-hero-stage .orbit-two {
        width: 292px;
        height: 292px;
    }

    .classic-hero-stage .logo-stage {
        width: 154px;
        height: 154px;
    }

    .classic-hero-stage .visual-chip {
        width: min(190px, calc(100% - 10px));
    }

    .classic-hero-stage .visual-chip strong {
        font-size: 11.5px;
    }

    .classic-hero-stage .visual-chip small {
        font-size: 9.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .classic-hero-stage .orbit {
        animation: none !important;
    }
}


/* =========================================================
   SEKCJA EKSPERTA — BARDZIEJ ZWARTA
   Wklej na samym końcu style.css
   ========================================================= */

.expert-section {
    padding: clamp(58px, 6vw, 82px) 0;
}

.expert-section .section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.expert-section .section-head h2 {
    margin-bottom: 12px;
}

.expert-section .section-head>p:last-child {
    max-width: 68ch;
    line-height: 1.6;
}

.expert-bento {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 14px;
    align-items: stretch;
}

.expert-card {
    min-height: 0;
    padding: 25px 27px;
    border-radius: 20px;
}

.expert-card-main {
    grid-row: 1 / 3;
    min-height: 350px;
}

.expert-card:not(.expert-card-main) {
    min-height: 168px;
}

.expert-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.expert-card .card-icon svg {
    width: 21px;
    height: 21px;
}

.expert-card h3 {
    margin: 16px 0 8px;
    font-size: 21px;
    line-height: 1.16;
}

.expert-card p {
    font-size: 15px;
    line-height: 1.58;
}

.expert-card-main {
    justify-content: space-between;
}

.expert-card-main>div:nth-child(2) {
    margin-top: 16px;
}

.authority-flow {
    grid-template-columns: 1fr 38px 1fr 38px 1fr;
    gap: 7px;
    margin-top: 24px;
}

.flow-step {
    padding: 12px;
    border-radius: 11px;
}

.flow-step b {
    font-size: 13px;
}

.flow-step small {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.35;
}

.flow-connector {
    width: 100%;
}

/* Mniejszy desktop */
@media (max-width: 1080px) {
    .expert-section {
        padding: 58px 0 70px;
    }

    .expert-bento {
        grid-template-columns: 1.08fr 0.92fr;
    }

    .expert-card-main {
        min-height: 330px;
    }

    .expert-card:not(.expert-card-main) {
        min-height: 158px;
    }

    .expert-card {
        padding: 23px;
    }
}

/* Tablet */
@media (max-width: 920px) {
    .expert-section {
        padding: 58px 0;
    }

    .expert-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .expert-card-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 310px;
    }

    .expert-card:not(.expert-card-main) {
        min-height: 190px;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .expert-section {
        padding: 52px 0;
    }

    .expert-section .section-head {
        margin-bottom: 24px;
    }

    .expert-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expert-card,
    .expert-card-main,
    .expert-card:not(.expert-card-main) {
        min-height: 0;
        padding: 22px;
    }

    .expert-card-main {
        grid-column: auto;
    }

    .expert-card h3 {
        margin-top: 15px;
        font-size: 20px;
    }

    .expert-card p {
        font-size: 14.5px;
    }

    .authority-flow {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .flow-connector {
        width: 1px;
        height: 18px;
        margin-left: 19px;
    }

    .flow-step {
        padding: 12px 13px;
    }
}

/* Mniejsze odstępy przed i po sekcji poziomów opieki */

.pricing {
    padding-bottom: clamp(48px, 5vw, 70px);
}

.care {
    padding-top: clamp(48px, 5vw, 70px);
    padding-bottom: clamp(56px, 6vw, 82px);
}

.first-year {
    padding-top: clamp(56px, 6vw, 82px);
}

/* Mniejszy odstęp pomiędzy nagłówkiem a kartami */
.care .section-head {
    margin-bottom: 30px;
}

@media (max-width: 680px) {
    .pricing {
        padding-bottom: 44px;
    }

    .care {
        padding-top: 44px;
        padding-bottom: 54px;
    }

    .first-year {
        padding-top: 54px;
    }

    .care .section-head {
        margin-bottom: 25px;
    }
}

/* =========================================================
   KARTY OPIEKI — JEDEN BANER W PRAWYM GÓRNYM ROGU
   ========================================================= */

.care-card {
    position: relative;
}

/* Oba komunikaty zajmują dokładnie to samo miejsce */
.care-card .recommended-tag,
.care-card .care-match {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;

    min-width: 150px;
    padding: 7px 13px;

    border-radius: 0 22px 0 12px;
    background: var(--lime);
    color: #090b05;

    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;

    transition:
        opacity 180ms var(--ease-out),
        transform 180ms var(--ease-out);

    pointer-events: none;
}

/* Domyślnie widoczny jest napis „Najczęstszy wybór” */
.care-card .recommended-tag {
    z-index: 3;
    opacity: 1;
    transform: translateY(0);
}

/* Domyślnie „Twój poziom” jest ukryty */
.care-card .care-match {
    z-index: 4;
    opacity: 0;
    transform: translateY(-8px);
}

/* Po wybraniu karty znika poprzednia etykieta */
.care-card.match .recommended-tag {
    opacity: 0;
    transform: translateY(-8px);
}

/* I dokładnie w jej miejscu pojawia się „Twój poziom” */
.care-card.match .care-match {
    opacity: 1;
    transform: translateY(0);
}

/* Karty bez etykiety „Najczęstszy wybór” również pokazują wybór */
.care-card:not(.care-card-featured) .care-match {
    right: 0;
}

/* Mobile */
@media (max-width: 680px) {

    .care-card .recommended-tag,
    .care-card .care-match {
        min-width: 132px;
        padding: 6px 10px;
        border-radius: 0 20px 0 10px;
        font-size: 9px;
    }
}