﻿/* RYSENA - vycisteny style.css
   Odstranene nepouzivane selektory a bezpecne redundantne deklaracie.
   Vzhlad a responzivne pravidla su zachovane. */

:root {
    --blue: #1877f2;
    --blue-dark: #0b5ed7;
    --navy: #10213d;
    --text: #182942;
    --muted: #64748b;
    --line: #dce5ef;
    --background: #f6f9fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 42px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 145px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    text-decoration: none;
    color: #4f6077;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-button {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 17px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #1674e8, #3c97ff);
    color: white;
    border-radius: 10px;
    padding: 13px 21px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(30, 120, 235, .18);
    transition: .2s;
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(30, 120, 235, .26);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 120px;
    background: radial-gradient(circle at 78% 25%, rgba(47, 139, 255, .12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
}

.hero-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.hero h1 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
    color: var(--navy);
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero-description {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-button {
    padding: 16px 25px;
    font-size: 15px;
}

.text-button {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    color: #708096;
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

@media (max-width: 1000px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-info {
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1240px);
    }

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 110px;
    }

    .login-button {
        display: none;
    }

    .header-actions .primary-button {
        padding: 11px 14px;
        font-size: 12px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }
}

.features {
    padding: 120px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 820px;
}

.section-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.main-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 55px;
    border: 1px solid #dbe5ef;
    border-radius: 24px;
    background: radial-gradient(circle at 90% 10%, rgba(38, 126, 238, .10), transparent 35%),
        #f8fbff;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 42px;
    padding: 0 14px;
    border-radius: 9px;
    background: #e8f2ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.main-feature h3 {
    margin: 0;
    color: var(--navy);
    font-size: 36px;
    letter-spacing: -1px;
}

.main-feature-content > p {
    max-width: 600px;
    margin: 20px 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.feature-checks {
    display: grid;
    gap: 13px;
}

.feature-checks span {
    color: #3f526b;
    font-size: 14px;
}

.report-window {
    overflow: hidden;
    border: 1px solid #d9e3ee;
    border-radius: 16px;
    background: white;
    box-shadow: 0 24px 55px rgba(42, 76, 118, .13);
}

.report-toolbar {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e0e7ef;
    background: #f6f9fc;
}

.report-toolbar span {
    color: #607189;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.report-toolbar button {
    border: 0;
    border-radius: 7px;
    padding: 9px 14px;
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.report-document {
    min-height: 390px;
}

.report-document small {
    display: block;
    margin-top: 19px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.report-document h4 {
    margin: 4px 0 13px;
    color: var(--navy);
    font-size: 16px;
}

.report-line {
    width: 58%;
    height: 7px;
    margin: 8px 0;
    border-radius: 8px;
    background: #e5ebf2;
}

.report-line.medium {
    width: 76%;
}

.report-line.long {
    width: 95%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    border: 1px solid #dfe7ef;
    border-radius: 17px;
    background: white;
    transition: .2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: #b9d5fa;
    box-shadow: 0 18px 40px rgba(38, 78, 125, .08);
}

.small-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #edf5ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .main-feature {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .main-feature {
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.how-it-works {
    padding: 120px 0;
    background: #f6f9fd;
    border-top: 1px solid #e3eaf2;
    border-bottom: 1px solid #e3eaf2;
}

.how-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.how-heading p {
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.step-number {
    color: #b4c3d5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.step-card h3 {
    margin: 0 0 13px;
    color: var(--navy);
    font-size: 20px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.step-highlight {
    border-color: #8fc0ff;
    background: radial-gradient(circle at 100% 0,
        rgba(38, 132, 255, .12),
        transparent 45%),
        #ffffff;
    box-shadow: 0 18px 45px rgba(31, 113, 221, .10);
}

.step-highlight .step-number {
    color: var(--blue);
}

.step-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 9px;
    background: #e9f3ff;
    border-radius: 6px;
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.workflow-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 22px 30px;
    background: white;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    color: #65758a;
    font-size: 14px;
    font-weight: 700;
}

.workflow-line b {
    color: #a9b9cc;
}

.workflow-final {
    padding: 7px 12px;
    border-radius: 7px;
    background: var(--blue);
    color: white;
}

@media (max-width: 950px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how-it-works {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .workflow-line {
        flex-direction: column;
        gap: 10px;
    }

    .workflow-line b {
        transform: rotate(90deg);
    }
}

.help-hero {
    padding: 100px 0 70px;
    text-align: center;
    background: radial-gradient(circle at 50% 0,
        rgba(47, 139, 255, .12),
        transparent 40%),
        #f7faff;
}

.help-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.help-hero h1 span {
    color: var(--blue);
}

.help-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.videos-section {
    padding: 80px 0 120px;
    background: #ffffff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.2s ease;
}

.video-card:hover {
    transform: translateY(-3px);
    border-color: #b9d5fa;
    box-shadow: 0 20px 45px rgba(35, 78, 130, 0.09);
}

.video-preview {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
            circle at 75% 20%,
            rgba(44, 135, 255, 0.22),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #10213d,
            #172f52
        );
}

.video-number {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.play-button {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    padding: 0 0 0 5px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.video-status {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: rgba(255,255,255,0.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.video-feature-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 7px;
    background: #2384f5;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.featured-video {
    border-color: #8ec1ff;
}

.video-content {
    padding: 28px 30px 32px;
}

.video-label {
    display: block;
    margin-bottom: 10px;
    color: #1877f2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.video-content h3 {
    margin: 0 0 12px;
    color: #10213d;
    font-size: 21px;
}

.video-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 750px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-preview {
        min-height: 220px;
    }
}

.faq-hero {
    padding: 100px 0 75px;
    text-align: center;
    background: radial-gradient(
            circle at 50% 0,
            rgba(47, 139, 255, .12),
            transparent 40%
        ),
        #f7faff;
}

.faq-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.faq-hero h1 span {
    color: var(--blue);
}

.faq-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.faq-page {
    padding: 80px 0 120px;
    background: #ffffff;
}

@media (max-width: 650px) {
    .faq-hero {
        padding: 70px 0 55px;
    }

    .faq-hero h1 {
        font-size: 42px;
    }
}

.pricing-section {
    padding: 120px 0;
    background: #f6f9fd;
    border-top: 1px solid #e3eaf2;
}

.pricing-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-heading p {
    margin-left: auto;
    margin-right: auto;
}

.pricing-badge {
    margin-bottom: 22px;
}

@media (max-width: 750px) {
    .pricing-section {
        padding: 80px 0;
    }
}

.final-cta .section-label {
    color: #75b8ff;
}

.site-footer {
    background: #f6f9fd;
    color: #64748b;
    border-top: 1px solid #dce5ef;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding-top: 55px;
    padding-bottom: 55px;
}

.footer-brand {
    flex: 0 0 300px;
    text-align: left;
}

.footer-brand img {
    display: block;
    width: 180px;
    height: auto;
}

.footer-brand p {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 13px;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 90px;
}

.footer-links div {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #10213d;
    font-size: 13px;
}

.footer-links a {
    color: #52647b;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #1877f2;
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dce5ef;
    color: #7a899c;
    font-size: 12px;
}

@media (max-width: 800px) {
    .footer-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 140px;
        max-width: 1100px;
        margin: 0 auto;
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .footer-brand {
        flex: 0 0 240px;
        text-align: left;
    }

    .footer-links {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-start;
        gap: 70px;
    }

    .footer-links div {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }
}

.site-footer .footer-main {
    width: 1050px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px auto;
    align-items: center;
    gap: 80px;
    padding-top: 55px;
    padding-bottom: 55px;
}

.site-footer .footer-brand {
    width: 250px;
    flex: none;
    text-align: left;
}

.site-footer .footer-brand img {
    display: block;
    width: 180px;
    height: auto;
}

.site-footer .footer-brand p {
    margin: 16px 0 0;
    font-size: 13px;
}

.site-footer .footer-links {
    flex: none;
    display: grid;
    grid-template-columns: 150px 150px 190px;
    gap: 55px;
    margin: 0;
    justify-content: start;
}

.site-footer .footer-links div {
    min-width: 0;
    align-items: flex-start;
}

@media (max-width: 800px) {
    .site-footer .footer-main {
        width: auto;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .site-footer .footer-brand {
        width: auto;
        text-align: center;
    }

    .site-footer .footer-brand img {
        margin: 0 auto;
    }

    .site-footer .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .site-footer .footer-links div {
        align-items: center;
    }
}

.legal-hero {
    padding: 90px 0 70px;
    text-align: center;
    background: radial-gradient(
            circle at 50% 0,
            rgba(47, 139, 255, .12),
            transparent 42%
        ),
        #f7faff;
    border-bottom: 1px solid #e3eaf2;
}

.legal-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.legal-hero h1 span {
    color: var(--blue);
}

.legal-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0 120px;
    background: #ffffff;
}

.legal-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 55px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 115px;
}

.legal-info-card {
    padding: 27px;
    border: 1px solid #dce5ef;
    border-radius: 17px;
    background: #f8fbff;
}

.legal-info-label {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.legal-info-card h3 {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 19px;
}

.legal-info-card p {
    margin: 0 0 18px;
    color: #617187;
    font-size: 13px;
    line-height: 1.65;
}

.legal-info-card p:last-child {
    margin-bottom: 0;
}

.legal-content {
    max-width: 850px;
}

.legal-updated {
    margin-bottom: 35px;
    color: #8493a6;
    font-size: 12px;
}

.legal-content section {
    padding-bottom: 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid #e5ebf2;
}

.legal-content section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.5px;
}

.legal-content p {
    margin: 0 0 15px;
    color: #586a80;
    font-size: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 22px;
    color: #586a80;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.legal-highlight {
    margin: 25px 0;
    padding: 24px 26px;
    border: 1px solid #b8d7fc;
    border-radius: 14px;
    background: #f1f7ff;
}

.legal-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 15px;
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

.legal-price {
    display: inline-block;
    margin: 0 0 22px;
    padding: 13px 18px;
    border-radius: 10px;
    background: #eaf3ff;
    color: var(--blue);
    font-size: 25px;
    font-weight: 800;
}

@media (max-width: 850px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-info-card {
        max-width: 500px;
    }
}

@media (max-width: 650px) {
    .legal-hero {
        padding: 70px 0 55px;
    }

    .legal-hero h1 {
        font-size: 42px;
    }

    .legal-page {
        padding: 55px 0 80px;
    }

    .legal-content h2 {
        font-size: 22px;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 13px;
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    background: #ffffff;
    transition: .2s ease;
}

.faq-item:hover {
    border-color: #b8d5f8;
}

.faq-item[open] {
    border-color: #a9cdf9;
    box-shadow: 0 12px 30px
        rgba(33, 85, 145, .06);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 25px;
    cursor: pointer;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--blue);
    font-size: 20px;
    font-weight: 400;
    transition: .2s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0
        70px
        24px
        25px;
}

.faq-answer p {
    margin: 0 0 12px;
    color: #617187;
    font-size: 14px;
    line-height: 1.75;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 650px) {
    .faq-item summary {
        padding: 19px 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0
            20px
            20px;
    }
}

.hero-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d8e3ef;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(39, 72, 112, .15),
        0 5px 18px rgba(39, 72, 112, .08);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #10213d;
    border-radius: 2px;
    transition: .2s;
}

@media (max-width: 1000px) {
    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 12px;
        background: #ffffff;
        border: 1px solid #dce5ef;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 18px 40px rgba(39, 72, 112, .14);
        z-index: 500;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        display: block;
        padding: 13px 15px;
        border-radius: 8px;
        font-size: 15px;
    }

    .main-nav a:hover {
        background: #f3f7fc;
    }
}

.pricing-card-new {
    margin-top: 32px;
    background: #ffffff;
    border: 1px solid #dbe7f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(18, 58, 110, 0.06);
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-column {
    padding: 30px 32px;
    text-align: center;
    position: relative;
}

.pricing-column:not(:last-child) {
    border-right: 1px solid #dbe7f5;
}

.pricing-column h3 {
    margin: 13px 0 14px;
    font-size: 20px;
    line-height: 1.35;
    color: #071d43;
}

.pricing-column p {
    margin: 11px 0 0;
    color: #62728c;
    line-height: 1.55;
    font-size: 14px;
}

.price-new {
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    color: #071d43;
    margin-top: 16px;
}

.price-new span {
    font-size: 16px;
    font-weight: 500;
    color: #071d43;
}

.pricing-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 8px;
    background: #edf5ff;
    color: #0874ef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.pricing-features-new {
    border-top: 1px solid #dbe7f5;
    padding: 28px 38px 30px;
}

.pricing-features-new h3 {
    margin: 0 0 20px;
    font-size: 21px;
    color: #071d43;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 28px;
}

.pricing-feature {
    font-size: 14px;
    color: #536783;
    line-height: 1.45;
}

.pricing-button-new {
    display: block;
    max-width: 430px;
    margin: 25px auto 0;
    text-align: center;
}

.header-inner {
    min-height: 74px;
}

.hero {
    padding-top: 76px;
    padding-bottom: 82px;
}

.hero-grid {
    gap: 52px;
}

.hero-label {
    margin-bottom: 16px;
}

.hero-description {
    margin-top: 20px;
    line-height: 1.55;
}

.hero-actions {
    margin-top: 26px;
}

.hero-info {
    margin-top: 18px;
    gap: 16px;
}

.features,
.how-it-works {
    padding-top: 82px;
    padding-bottom: 82px;
}

.section-heading {
    margin-bottom: 40px;
}

.section-label {
    margin-bottom: 12px;
}

.section-heading p {
    margin-top: 15px;
}

.main-feature {
    gap: 34px;
}

.main-feature-content {
    padding: 38px;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-checks {
    margin-top: 20px;
}

.report-document {
    padding: 26px 30px;
}

.feature-grid {
    margin-top: 20px;
    gap: 20px;
}

.feature-card {
    min-height: 190px;
    padding: 24px;
}

.small-icon {
    margin-bottom: 15px;
}

.steps-grid {
    gap: 20px;
}

.step-card {
    min-height: 225px;
    padding: 24px;
}

.step-number {
    margin-bottom: 20px;
}

.workflow-line {
    margin-top: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.pricing-section {
    padding-top: 78px;
    padding-bottom: 82px;
}

.pricing-heading {
    margin-bottom: 34px;
}

.site-footer {
    padding-top: 46px;
    padding-bottom: 28px;
}

.help-hero {
    padding-top: 70px;
    padding-bottom: 50px;
}

.videos-section {
    padding-top: 60px;
    padding-bottom: 82px;
}

.legal-hero {
    padding-top: 68px;
    padding-bottom: 52px;
}

.legal-page {
    padding-top: 58px;
    padding-bottom: 82px;
}

.faq-item summary {
    padding-top: 17px;
    padding-bottom: 17px;
}

.faq-answer {
    padding-bottom: 18px;
}

@media (max-width: 1000px) {
    .hero {
        padding-top: 62px;
        padding-bottom: 68px;
    }

    .features,
    .how-it-works,
    .pricing-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }
}

@media (max-width: 900px) {
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #dbe7f5;
    }

    .pricing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .header-inner {
        min-height: 64px;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .hero-description {
        margin-top: 16px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-info {
        margin-top: 16px;
    }

    .features, .how-it-works, .pricing-section, .videos-section {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .main-feature-content,
    .feature-card,
    .step-card {
        padding: 20px;
    }

    .feature-grid,
    .steps-grid {
        gap: 16px;
    }

    .pricing-card-new {
        border-radius: 18px;
    }

    .pricing-column {
        padding: 26px 20px;
    }

    .price-new {
        font-size: 42px;
    }

    .pricing-features-new {
        padding: 24px 20px 28px;
    }

    .pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .pricing-button-new {
        width: 100%;
        max-width: none;
        margin-top: 22px;
    }

    .site-footer {
        padding-top: 36px;
    }
}

.features .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.features .section-heading h2 {
    margin-left: auto;
    margin-right: auto;
}

.features .section-heading p {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
}

.features .section-label {
    text-align: center;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

section[id] {
    scroll-margin-top: 0px;
}

@media (max-width: 650px) {
    .cta-section .container, .primary-button, .pricing-button-new {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body,
    main,
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}
/* =========================================================
   VSETKY FUNKCIE
   ========================================================= */

.all-features-section {
    padding: 70px 0 80px;
    background: #f7faff;
}

.all-features-heading {
    text-align: center;
    margin: 0 auto 45px;
}

.all-features-heading h1 {
    margin: 10px 0 15px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    color: var(--navy);
}

.all-features-heading h1 span {
    display: block;
    color: var(--blue);
}

.all-features-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}


/* GRID */

.all-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}


/* KARTA */

.all-feature-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 25px;
    min-width: 0;
    transition: transform .2s ease,
                box-shadow .2s ease;
}

.all-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(25, 65, 110, .08);
}


.all-feature-card h2 {
    margin: 15px 0 20px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
}


/* ZOZNAM */

.all-feature-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.all-feature-list span {
    color: #5d7089;
    font-size: 14px;
    line-height: 1.4;
}


/* SPODNE TLACIDLO */

.all-features-bottom {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .all-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 650px) {

    .all-features-section {
        padding: 45px 0 55px;
    }

    .all-features-heading {
        margin-bottom: 30px;
    }

    .all-features-heading h1 {
        font-size: 34px;
    }

    .all-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .all-feature-card {
        padding: 23px 20px;
    }

    .all-feature-card h2 {
        font-size: 19px;
        margin-bottom: 17px;
    }

    .all-feature-list {
        gap: 9px;
    }

    .all-features-bottom {
        margin-top: 30px;
    }

    .all-features-bottom .primary-button {
        width: 100%;
    }

}
/* BLOKOVANIE OZNACOVANIA TEXTU */

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Formulare musia ostat pouzitelne */

input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
/* OBRAZOVY PAS */

.image-strip-section {
    padding: 20px 0;
}

.image-strip {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 18px;
}

.image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 650px) {
    .image-strip {
        height: auto;
    }

    .image-strip img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
/* =========================================================
   COOKIE LISTA
   ========================================================= */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);

    display: none;
}

.cookie-inner {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 11px 20px;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
}

.cookie-accept {
    background: #111827;
    color: #fff;
}

.cookie-reject {
    background: #eef1f4;
    color: #111827;
}

.cookie-btn:hover {
    opacity: 0.88;
}


/* MOBIL */

@media (max-width: 650px) {

    .cookie-banner {
        padding: 16px 14px;
    }

    .cookie-inner {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
/* =========================================================
   PROMO POPUP
   ========================================================= */

#promo-popup {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

#promo-popup.is-visible {
    display: flex;
}

.promo-popup-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.promo-popup-box {
    position: relative;
    z-index: 1;

    width: min(620px, 92vw);
    max-height: 90vh;

    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.promo-popup-box img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 28px;
    line-height: 38px;
    cursor: pointer;
}

@media (max-width: 650px) {

    #promo-popup {
        padding: 14px;
    }

    .promo-popup-box {
        width: 100%;
        border-radius: 16px;
    }
}
/* COOKIE CONSENT - MODAL LOCK */
html.cookie-consent-lock,
body.cookie-consent-lock {
    overflow: hidden !important;
}

.cookie-banner {
    top: 0;
    bottom: 0;
    padding: 24px;
    background: rgba(17, 24, 39, 0.62);
    border-top: 0;
    box-shadow: none;
}

.cookie-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 26px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

@media (max-width: 650px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-inner {
        width: calc(100% - 24px);
        padding: 20px;
    }
}
