/* ===== EVIDENCE ZAKÁZEK LANDING PAGE ===== */
/* Navazuje na css/style.css a používá stejné proměnné barev */

.landing-page {
    background: transparent;
}

/* ===== HERO ===== */

.landing-hero {
    padding: 70px 0 50px;
    background: radial-gradient(circle at 70% 40%, rgba(79, 124, 255, 0.1), transparent 60%);
}

.landing-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.landing-hero-text h1 {
    max-width: 760px;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-main);
}

.landing-hero-text p {
    color: var(--text-muted);
    /* ZMĚNA */
    line-height: 1.7;
    /* ZMĚNA */
    font-size: 16px;
    /* ZMĚNA */
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(79, 124, 255, 0.12);
    border: 1px solid rgba(79, 124, 255, 0.35);
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hero-lead {
    max-width: 720px;
    font-size: 18px !important;
    /* ZMĚNA */
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 18px;
    /* ZMĚNA */
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* ===== SECONDARY BUTTON ===== */

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(79, 124, 255, 0.18);
}

/* ===== HERO CARD ===== */

.landing-hero-card {
    padding: 28px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(79, 124, 255, 0.12);
}

.landing-hero-card h2 {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 22px;
}

.landing-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-hero-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text-muted);
}

.landing-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

/* ===== SECTIONS ===== */

.landing-section {
    padding: 50px 0;
}

.landing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.landing-card h2 {
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--text-main);
}

.landing-card h3 {
    color: var(--text-main);
}

.landing-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* ===== GRID ===== */

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.landing-card-highlight {
    background: #101827;
    border-color: rgba(79, 124, 255, 0.45);
    box-shadow: 0 0 40px rgba(79, 124, 255, 0.08);
}

/* ===== LISTS ===== */

.problem-list,
.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.problem-list li,
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ff6b6b;
    font-weight: 800;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent);
    font-weight: 800;
}

/* ===== AUDIENCE ===== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.audience-grid div {
    padding: 16px;
    border-radius: 6px;
    background: #0a0d13;
    border: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
}

/* ===== FEATURES ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.features-grid div {
    padding: 22px;
    border-radius: 8px;
    background: #0a0d13;
    border: 1px solid var(--border);
}

.features-grid h3 {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 17px;
}

.features-grid p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: var(--text-muted);
}

/* ===== CTA ===== */

.landing-cta {
    padding: 50px 0 80px;
}

.landing-cta-card {
    padding: 36px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 70% 30%, rgba(79, 124, 255, 0.18), transparent 55%),
        var(--bg-card);
    color: var(--text-main);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(79, 124, 255, 0.12);
}

.landing-cta-card h2 {
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--text-main);
}

.landing-cta-card p {
    max-width: 720px;
    margin: 0 auto 26px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== NAV LOGO FIX FOR LINK ===== */

.logo {
    color: var(--text-main);
    text-decoration: none;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

    .landing-hero-layout,
    .landing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .landing-hero {
        padding: 50px 0 35px;
    }

    .landing-hero-text h1 {
        font-size: 24px;
    }

    .hero-lead {
        font-size: 16px !important;
        /* ZMĚNA */
    }

    .landing-section {
        padding: 40px 0;
    }
}

@media (max-width: 560px) {

    .landing-card,
    .landing-hero-card,
    .landing-cta-card {
        padding: 24px;
    }

    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .landing-actions {
        flex-direction: column;
    }

    .landing-actions .btn-primary,
    .landing-actions .btn-secondary {
        text-align: center;
    }
}

/* ===== USAGE SECTION ===== */

.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.usage-block {
    padding: 20px;
    border-radius: 8px;
    background: #0a0d13;
    border: 1px solid var(--border);
}

.usage-block h3 {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 18px;
}

.usage-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-block li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.usage-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.usage-summary {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-muted);
}

/* MOBILE */

@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MINI FLOW ===== */

.mini-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.flow-step {
    position: relative;
    padding: 24px;
    border-radius: 8px;
    background: #0a0d13;
    border: 1px solid var(--border);
}

.flow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.flow-step h3 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 18px;
}

.flow-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mini-flow {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ SECTION ===== */
/* ZMĚNA */

.landing-card h3+p {
    margin-top: 6px;
    /* ZMĚNA */
}

.landing-card h3 {
    margin-top: 22px;
    /* ZMĚNA */
    margin-bottom: 8px;
    /* ZMĚNA */
    font-size: 18px;
    /* ZMĚNA */
}

.landing-card h2+h3 {
    margin-top: 0;
    /* ZMĚNA */
}