/* Посадочные SEO-страницы */
.landing-breadcrumbs--after-hero {
    background: #fff;
    padding: 20px 0 8px;
    margin-top: 0;
    border-bottom: none;
}

.landing-breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.landing-breadcrumbs-list li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #878787;
}

.landing-breadcrumbs-list a {
    color: var(--cdek-green-dark, #12343a);
    text-decoration: none;
}

.landing-breadcrumbs-list a:hover {
    text-decoration: underline;
}

body.landing-page {
    padding-top: 0;
}

body.landing-page .navbar-cdek-custom {
    padding: 16px 0;
}

/* Хедер и hero — единый тёмный блок */
body.landing-page .landing-hero {
    padding-top: 32px;
}

body.landing-page main {
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    body.landing-page main {
        padding-bottom: 0;
    }
}

/* Hero: перебиваем глобальный h1 { color: --cdek-green-dark } */
.landing-hero {
    background: linear-gradient(135deg, var(--cdek-green-dark, #12343a) 0%, #1a4a52 100%);
    padding: 48px 0 64px;
    color: #fff;
}

.landing-hero h1,
.landing-hero-title {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
}

.landing-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 16px;
}

.landing-hero-highlight {
    font-size: 16px;
    color: #f59f40;
    margin-bottom: 28px;
}

.landing-hero-highlight .bi {
    margin-right: 8px;
    color: #f59f40;
}

.landing-hero-note {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.landing-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00B33C;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 48px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.landing-btn-primary:hover {
    background: #009933;
    transform: translateY(-1px);
    color: #fff;
}

.landing-section {
    padding: 60px 0;
}

.landing-section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--cdek-green-dark, #12343a);
}

.landing-benefits {
    background: #fff;
}

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

.landing-benefit-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.landing-benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cdek-green-dark, #12343a);
}

.landing-benefit-card p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.landing-steps {
    background: #edefef;
}

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

.landing-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.landing-step-num {
    width: 48px;
    height: 48px;
    background: #00B33C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 16px;
}

.landing-step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--cdek-green-dark, #12343a);
}

.landing-cta-inner p {
    color: #555;
    margin-bottom: 24px;
}

.landing-guide-block {
    margin-bottom: 32px;
    max-width: 800px;
}

.landing-guide-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--cdek-green-dark, #12343a);
}

.landing-guide-block ul {
    padding-left: 20px;
}

.landing-guide-block li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.landing-tariff-table-wrap {
    overflow-x: auto;
    margin-bottom: 16px;
}

.landing-tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.landing-tariff-table th,
.landing-tariff-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.landing-tariff-table th {
    background: var(--cdek-green-dark, #12343a);
    color: #fff;
    font-weight: 600;
}

.landing-tariff-note {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.landing-reviews {
    background: #f8f9fa;
}

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

.landing-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin: 0;
    border-left: 4px solid #00B33C;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.landing-review-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.landing-review-card footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.landing-cta {
    background: linear-gradient(135deg, #E7FBEC 0%, #d4f0da 100%);
    padding: 60px 0;
}

.landing-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.landing-cta-inner h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--cdek-green-dark, #12343a);
}

.landing-form-note {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.landing-contacts-bar {
    background: var(--cdek-green-dark, #12343a);
    color: #fff;
    padding: 24px 0;
}

.landing-contacts-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: center;
    text-align: center;
    font-size: 15px;
}

.landing-contacts-inner a {
    color: #04e762;
    text-decoration: none;
}

.landing-contacts-inner a:hover {
    text-decoration: underline;
}

.landing-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
}

.landing-related-list a {
    color: var(--cdek-green-dark, #12343a);
    font-weight: 500;
    text-decoration: underline;
}

.landing-related {
    padding-bottom: 80px;
}

/* Экосистема БИТ */
.bit-ecosystem {
    background: #f0f4f4;
}

.bit-ecosystem-lead {
    text-align: center;
    max-width: 720px;
    margin: -16px auto 36px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.bit-ecosystem-lead a {
    color: var(--cdek-green-dark, #12343a);
    font-weight: 600;
}

.bit-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.bit-ecosystem-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.bit-ecosystem-card:hover {
    border-color: #00B33C;
    box-shadow: 0 8px 24px rgba(0, 179, 60, 0.12);
    transform: translateY(-2px);
    color: inherit;
}

.bit-ecosystem-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #00B33C;
    margin-bottom: 8px;
}

.bit-ecosystem-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--cdek-green-dark, #12343a);
    margin-bottom: 10px;
}

.bit-ecosystem-card-text {
    flex: 1;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.bit-ecosystem-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--cdek-green-dark, #12343a);
}

.bit-ecosystem-card-link .bi {
    font-size: 12px;
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 32px 0 48px;
    }

    .landing-section {
        padding: 40px 0;
    }

    .landing-section-title {
        font-size: 24px;
    }
}
