/* ServisFlow – styly pro SEO/GEO landing pages
   (servis bagrů, stavebních a zemědělských strojů a navazující témata) */

.lp-breadcrumb {
    padding: 110px 0 0;
    font-size: 0.875rem;
    color: var(--text-light);
}
.lp-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.lp-breadcrumb a { color: var(--primary); text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }
.lp-breadcrumb li[aria-current] { color: var(--text-light); }
.lp-breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--text-lighter); }

/* Hero */
.lp-hero {
    padding: 32px 0 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
    color: #fff;
}
.lp-hero .container { max-width: 920px; }
.lp-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.18);
    color: #7dd3fc;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 18px;
}
.lp-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 22px;
}
.lp-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 760px;
    margin-bottom: 32px;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero .btn-white { background: #fff; color: var(--primary); }
.lp-hero .btn-white:hover { background: #f1f5f9; }
.lp-hero .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.lp-hero .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Obecná sekce */
.lp-section { padding: 64px 0; }
.lp-section .container { max-width: 920px; }
.lp-section.alt { background: var(--bg-light); }
.lp-section h2 {
    font-size: 1.9rem;
    color: var(--secondary);
    margin-bottom: 18px;
}
.lp-section h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 28px 0 10px;
}
.lp-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.lp-section .lead-paragraph {
    font-size: 1.15rem;
    color: var(--text);
}

/* Mřížka „pro koho" a „co umí" */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.lp-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.lp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}
.lp-section.alt .lp-card { background: #fff; }
.lp-card .lp-ico {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    margin-bottom: 14px;
}
.lp-card .lp-ico svg { width: 22px; height: 22px; color: var(--primary); }
.lp-card h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--secondary); }
.lp-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* Jednoduchý seznam s odškrtnutím */
.lp-checklist { list-style: none; padding: 0; margin: 8px 0 0; }
.lp-checklist li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    line-height: 1.6;
}
.lp-checklist li:last-child { border-bottom: none; }
.lp-checklist li::before {
    content: "";
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 1px;
    background: var(--success);
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* Tagy oborů */
.lp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.lp-tags span {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 100px;
}

/* FAQ – nativní details/summary, bez JS */
.lp-faq { margin-top: 8px; }
.lp-faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.lp-section.alt .lp-faq details { background: #fff; }
.lp-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details > p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Související stránky */
.lp-related { padding: 56px 0; }
.lp-related .container { max-width: 920px; }
.lp-related h2 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 20px; }
.lp-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-related-grid a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.lp-related-grid a:hover { border-color: var(--primary); transform: translateY(-2px); }
.lp-related-grid a svg { color: var(--primary); flex-shrink: 0; }

/* CTA */
.lp-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}
.lp-cta .container { max-width: 720px; }
.lp-cta h2 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
.lp-cta p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 28px; }
.lp-cta .btn-white { background: #fff; color: var(--primary); }
.lp-cta .btn-white:hover { background: #f1f5f9; transform: translateY(-2px); }

@media (max-width: 900px) {
    .lp-grid, .lp-grid.cols-2 { grid-template-columns: 1fr 1fr; }
    .lp-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .lp-hero h1 { font-size: 2rem; }
    .lp-grid, .lp-grid.cols-2 { grid-template-columns: 1fr; }
    .lp-section h2 { font-size: 1.6rem; }
}
