/*
 * Styles for the office-cleaning SEO landing (/sprzatanie-biur-warszawa).
 *
 * Kept in a real .css file rather than inlined in the template like the
 * older residential landing does: now that static assets finally carry
 * cache headers, an external sheet is downloaded once and reused across
 * page views, and it keeps the HTML small — both help the Core Web
 * Vitals that feed into ranking. Class names intentionally mirror the
 * residential landing so the two pages look like one family.
 */

.landing-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    font-family: inherit;
    color: #1e293b;
}

.landing-hero {
    position: relative;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 18px;
    padding: 38px 32px;
    margin-bottom: 26px;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e0e7ff;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.landing-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0f172a;
}

.landing-lead {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 22px;
    max-width: 760px;
}

.landing-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.landing-btn.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 8px 18px -6px rgba(99, 102, 241, .6);
}

.landing-btn.primary:hover {
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.landing-btn.secondary {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.landing-btn.secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
    text-decoration: none;
}

.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.landing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
}

.landing-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #0f172a;
}

.landing-card span {
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
}

.landing-section {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 20px;
}

.landing-section h2 {
    font-size: 23px;
    margin: 0 0 14px;
    color: #0f172a;
}

.landing-section h3 {
    font-size: 17px;
    margin: 22px 0 8px;
    color: #1e293b;
}

.landing-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 12px;
}

.landing-list {
    margin: 0 0 12px;
    padding-left: 20px;
}

.landing-list li {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 5px;
}

.landing-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 14px;
    font-size: 15px;
}

.landing-price-table th,
.landing-price-table td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid #eef2f7;
}

.landing-price-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.landing-faq details {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: #fff;
}

.landing-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}

.landing-faq p {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.landing-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.landing-related-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: border-color .15s ease;
}

.landing-related-card:hover {
    border-color: #6366f1;
    text-decoration: none;
}

.landing-related-card strong {
    display: block;
    color: #0f172a;
    margin: 6px 0 4px;
    font-size: 15px;
}

.landing-related-card span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .landing-hero {
        padding: 26px 20px;
    }

    .landing-hero h1 {
        font-size: 26px;
    }

    .landing-section {
        padding: 22px 18px;
    }

    .landing-btn {
        width: 100%;
    }
}
