:root {
        --dark: #0B4F6C;
        --blue: #01BAEF;
        --light: #FBFBFF;
        --ink: #10212b;
        --muted: #667782;
        --line: rgba(11, 79, 108, 0.14);
        --card: rgba(255,255,255,0.86);
        --shadow: 0 24px 70px rgba(11, 79, 108, 0.18);
        --radius: 26px;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
        color: var(--ink);
        background:
        radial-gradient(circle at top left, rgba(1, 186, 239, 0.18), transparent 36%),
        radial-gradient(circle at 80% 10%, rgba(11, 79, 108, 0.16), transparent 30%),
        linear-gradient(180deg, #fbfbff 0%, #f4fbff 42%, #ffffff 100%);
        line-height: 1.6;
    }

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

    .page {
        overflow: hidden;
    }

    .container {
        width: min(1160px, calc(100% - 36px));
        margin: 0 auto;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 30;
        backdrop-filter: blur(18px);
        background: rgba(251, 251, 255, 0.82);
        border-bottom: 1px solid rgba(11, 79, 108, 0.08);
    }

    .topbar-inner {
        min-height: 74px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

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

    .brand-logo {
    display: block;
    width: 238px;
    max-width: 100%;
    height: auto;
}

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        color: white;
        background: linear-gradient(135deg, var(--dark), var(--blue));
        box-shadow: 0 12px 26px rgba(1, 186, 239, 0.28);
        font-size: 18px;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.05;
    }

    .brand-text small {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 22px;
        font-size: 14px;
        color: #39505c;
    }

    .nav a:hover {
        color: var(--dark);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 22px;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 800;
        cursor: pointer;
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        white-space: nowrap;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn-primary {
        color: white;
        background: linear-gradient(135deg, var(--dark), var(--blue));
        box-shadow: 0 16px 32px rgba(1, 186, 239, 0.30);
    }

    .btn-secondary {
        color: var(--dark);
        background: rgba(255,255,255,0.74);
        border-color: rgba(11, 79, 108, 0.18);
    }

    .hero {
        position: relative;
        padding: 82px 0 56px;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: -160px -80px auto auto;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        background: rgba(1, 186, 239, 0.12);
        filter: blur(6px);
        pointer-events: none;
    }

    .hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 44px;
        align-items: center;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 8px 13px;
        border-radius: 999px;
        background: rgba(1, 186, 239, 0.10);
        color: var(--dark);
        border: 1px solid rgba(1, 186, 239, 0.22);
        font-size: 13px;
        font-weight: 800;
    }

    .eyebrow-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--blue);
        box-shadow: 0 0 0 7px rgba(1, 186, 239, 0.14);
    }

    h1, h2, h3 {
        line-height: 1.08;
        margin: 0;
        letter-spacing: -0.045em;
    }

    h1 {
        margin-top: 24px;
        font-size: clamp(42px, 7vw, 76px);
        color: #082f42;
    }

    h1 span {
        color: var(--blue);
    }

    .hero-lead {
        margin: 24px 0 0;
        max-width: 650px;
        font-size: 19px;
        color: #445966;
    }

    .hero-actions {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
    }

    .microcopy {
        margin-top: 14px;
        font-size: 13px;
        color: var(--muted);
    }

    .trust-row {
        margin-top: 28px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        max-width: 720px;
    }

    .trust-item {
        padding: 15px;
        border-radius: 18px;
        background: rgba(255,255,255,0.78);
        border: 1px solid rgba(11, 79, 108, 0.10);
        color: #38525f;
        font-size: 14px;
    }

    .visual-card {
        position: relative;
        padding: 26px;
        border-radius: 34px;
        background:
        linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.70)),
        radial-gradient(circle at top right, rgba(1, 186, 239, 0.22), transparent 34%);
        border: 1px solid rgba(11, 79, 108, 0.13);
        box-shadow: var(--shadow);
    }

    .visual-card::after {
        content: "";
        position: absolute;
        inset: auto -32px -32px auto;
        width: 160px;
        height: 160px;
        border-radius: 36px;
        background: linear-gradient(135deg, rgba(11,79,108,0.12), rgba(1,186,239,0.28));
        transform: rotate(12deg);
        z-index: -1;
    }

    .mock-window {
        border-radius: 24px;
        overflow: hidden;
        background: #082f42;
        color: white;
    }

    .mock-top {
        display: flex;
        gap: 7px;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.05);
    }

    .mock-top span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.42);
    }

    .mock-body {
        padding: 28px;
    }

    .score {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: center;
        margin-bottom: 24px;
    }

    .score-number {
        width: 112px;
        height: 112px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: conic-gradient(var(--blue) 0 72%, rgba(255,255,255,0.14) 72% 100%);
        position: relative;
        font-size: 30px;
        font-weight: 900;
    }

    .score-number::before {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 50%;
        background: #082f42;
    }

    .score-number strong {
        position: relative;
    }

    .score-text strong {
        display: block;
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .score-text p {
        margin: 0;
        color: rgba(255,255,255,0.70);
        font-size: 14px;
    }

    .checklist-preview {
        display: grid;
        gap: 10px;
    }

    .preview-line {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.09);
        color: rgba(255,255,255,0.82);
        font-size: 14px;
    }

    .preview-line i {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #082f42;
        background: var(--blue);
        font-style: normal;
        font-weight: 900;
        flex: 0 0 auto;
    }

    section {
        padding: 72px 0;
    }

    .section-heading {
        max-width: 760px;
        margin-bottom: 34px;
    }

    .section-heading.center {
        text-align: center;
        margin-inline: auto;
    }

    .section-kicker {
        color: var(--blue);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 900;
        font-size: 12px;
        margin-bottom: 12px;
    }

    h2 {
        font-size: clamp(31px, 4vw, 48px);
        color: #082f42;
    }

    .section-heading p {
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 18px;
    }

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

    .card {
        padding: 24px;
        border-radius: var(--radius);
        background: var(--card);
        border: 1px solid var(--line);
        box-shadow: 0 16px 44px rgba(11, 79, 108, 0.08);
    }

    .icon {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        background: rgba(1, 186, 239, 0.12);
        color: var(--dark);
        font-weight: 900;
        margin-bottom: 18px;
    }

    .card h3 {
        font-size: 22px;
        color: #082f42;
        margin-bottom: 10px;
    }

    .card p {
        margin: 0;
        color: var(--muted);
    }

    .split {
        display: grid;
        grid-template-columns: 0.92fr 1.08fr;
        gap: 36px;
        align-items: center;
    }

    .panel {
        padding: 34px;
        border-radius: 34px;
        background: linear-gradient(145deg, rgba(11,79,108,0.98), rgba(9,55,76,0.98));
        color: white;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .panel::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(1,186,239,0.20);
        right: -80px;
        top: -90px;
    }

    .panel > * {
        position: relative;
    }

    .panel h2 {
        color: white;
    }

    .panel p {
        color: rgba(255,255,255,0.72);
    }

    .number-list {
        counter-reset: item;
        display: grid;
        gap: 14px;
        margin-top: 24px;
    }

    .number-item {
        counter-increment: item;
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 14px;
        align-items: start;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.10);
    }

    .number-item::before {
        content: counter(item);
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #082f42;
        background: var(--blue);
        font-weight: 900;
    }

    .number-item strong {
        display: block;
        margin-bottom: 4px;
        color: white;
    }

    .number-item span {
        color: rgba(255,255,255,0.70);
        font-size: 14px;
    }

    .soft-list {
        display: grid;
        gap: 14px;
    }

    .soft-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255,255,255,0.78);
        border: 1px solid var(--line);
    }

    .soft-item b {
        display: block;
        color: #082f42;
        margin-bottom: 3px;
    }

    .soft-item span {
        color: var(--muted);
        font-size: 15px;
    }

    .tick {
        width: 26px;
        height: 26px;
        flex: 0 0 auto;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(1, 186, 239, 0.14);
        color: var(--dark);
        font-weight: 900;
    }

    .leadbox {
        border-radius: 36px;
        padding: 38px;
        background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76)),
        radial-gradient(circle at 12% 10%, rgba(1,186,239,0.16), transparent 34%);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: grid;
        grid-template-columns: 0.92fr 1.08fr;
        gap: 34px;
        align-items: center;
    }

    .pdf-cover {
        min-height: 360px;
        border-radius: 28px;
        padding: 28px;
        background: linear-gradient(145deg, #082f42, #0B4F6C 55%, #01BAEF);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .pdf-cover::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 34px solid rgba(255,255,255,0.10);
        right: -70px;
        bottom: -70px;
    }

    .pdf-cover small {
        position: relative;
        display: inline-flex;
        width: fit-content;
        padding: 7px 11px;
        border-radius: 999px;
        background: rgba(255,255,255,0.13);
        color: rgba(255,255,255,0.86);
        font-weight: 800;
    }

    .pdf-cover h3 {
        position: relative;
        font-size: 36px;
        line-height: 1.05;
        max-width: 360px;
    }

    .pdf-cover p {
        position: relative;
        margin: 0;
        color: rgba(255,255,255,0.76);
    }

    .form-card {
        padding: 28px;
        border-radius: 28px;
        background: white;
        border: 1px solid rgba(11, 79, 108, 0.11);
    }

    .form-card h2 {
        margin-bottom: 12px;
    }

    .form-card p {
        margin: 0 0 20px;
        color: var(--muted);
    }

    .field-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    label {
        display: block;
        font-size: 13px;
        color: #3c5360;
        font-weight: 800;
        margin-bottom: 7px;
    }

    input, select, textarea {
        width: 100%;
        min-height: 50px;
        border: 1px solid rgba(11, 79, 108, 0.18);
        border-radius: 16px;
        padding: 13px 14px;
        font: inherit;
        background: #fbfdff;
        color: var(--ink);
        outline: none;
    }

    input:focus, select:focus, textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(1,186,239,0.12);
    }

    .field {
        margin-bottom: 14px;
    }

    .consent {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: var(--muted);
        font-size: 12px;
        margin: 14px 0 18px;
    }

    .consent input {
        width: auto;
        min-height: auto;
        margin-top: 3px;
    }

    .risk-note {
        padding: 20px;
        border-radius: 22px;
        background: rgba(11, 79, 108, 0.06);
        border: 1px solid rgba(11, 79, 108, 0.11);
        color: #536873;
        font-size: 14px;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .step {
        padding: 22px;
        border-radius: 24px;
        background: white;
        border: 1px solid var(--line);
    }

    .step-num {
        color: var(--blue);
        font-weight: 950;
        font-size: 13px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .step h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .step p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
    }

    .placeholder {
        border: 1px dashed rgba(1, 186, 239, 0.55);
        background: rgba(1, 186, 239, 0.07);
        color: #315766;
        padding: 15px;
        border-radius: 18px;
        font-size: 14px;
    }

    .faq {
        display: grid;
        gap: 12px;
        max-width: 860px;
        margin: 0 auto;
    }

    details {
        background: white;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px 20px;
        box-shadow: 0 12px 30px rgba(11, 79, 108, 0.06);
    }

    summary {
        cursor: pointer;
        font-weight: 850;
        color: #082f42;
    }

    details p {
        color: var(--muted);
        margin: 12px 0 0;
    }

    .final-cta {
        text-align: center;
        border-radius: 36px;
        padding: 50px 28px;
        color: white;
        background:
        radial-gradient(circle at 10% 10%, rgba(1,186,239,0.38), transparent 28%),
        linear-gradient(135deg, #082f42, #0B4F6C);
        box-shadow: var(--shadow);
    }

    .final-cta h2 {
        color: white;
    }

    .final-cta p {
        max-width: 720px;
        margin: 16px auto 26px;
        color: rgba(255,255,255,0.75);
    }

    footer {
        padding: 36px 0;
        border-top: 1px solid rgba(11, 79, 108, 0.10);
        color: var(--muted);
        font-size: 13px;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

        .trust-row,
        .cards-3,
        .steps {
        grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .container {
        width: min(100% - 24px, 1160px);
        }

        .hero {
        padding-top: 52px;
        }

        .hero-actions,
        .field-grid,
        .trust-row,
        .cards-3,
        .steps {
        grid-template-columns: 1fr;
        }

        .hero-actions .btn,
        .topbar .btn,
        .form-card .btn {
        width: 100%;
        }

        .score {
        align-items: flex-start;
        flex-direction: column;
        }

        .leadbox,
        .panel,
        .form-card {
        padding: 22px;
        }

        .pdf-cover {
        min-height: 310px;
        }
    }

/* Doplnkové prvky pre obsahovú verziu funnelu */
.value-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.value-pill {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(11, 79, 108, 0.10);
    color: #38525f;
    font-size: 14px;
}

.value-pill strong {
    display: block;
    color: #082f42;
    margin-bottom: 3px;
}

.two-col {
    columns: 2;
    column-gap: 28px;
    padding-left: 18px;
    color: var(--muted);
}

.two-col li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.quote-card {
    padding: 28px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(11, 79, 108, 0.08);
}

.quote-card blockquote {
    margin: 0;
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.035em;
    color: #082f42;
    font-weight: 850;
}

.quote-card p {
    margin: 18px 0 0;
    color: var(--muted);
}

.inline-cta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(1, 186, 239, 0.10);
    border: 1px solid rgba(1, 186, 239, 0.18);
    color: #315766;
    font-size: 13px;
    font-weight: 800;
}

.warning-box {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(11,79,108,0.12);
    box-shadow: 0 16px 44px rgba(11, 79, 108, 0.07);
}

.warning-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.warning-box p {
    color: var(--muted);
    margin: 0;
}

@media (max-width: 940px) {
    .value-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .value-strip {
        grid-template-columns: 1fr;
    }

    .two-col {
        columns: 1;
    }
}
#ekosystem {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(1, 186, 239, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(251,251,255,0.4), rgba(255,255,255,0.92));
}

.hero-logo-card {
    margin-bottom: 22px;
    text-align: center;
}

.hero-logo-card img {
    width: min(320px, 100%);
    height: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    flex: 0 0 auto;
}

