.solution-page {
    color: var(--text-dark);
    background: var(--white);
}

.solution-page .menu-toggle {
    color: var(--text-dark);
    user-select: none;
}

.solution-page .seo-hero {
    margin-top: 80px;
    padding: 72px 0 68px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #0f4ed8 0%, var(--primary-color) 58%, #2f7cff 100%);
}

.solution-page .breadcrumb {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.solution-page .breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.solution-page .breadcrumb a:hover {
    text-decoration: underline;
}

.solution-page .seo-hero h1 {
    max-width: 960px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: 42px;
    line-height: 1.3;
}

.solution-page .seo-hero p {
    max-width: 920px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.85;
}

.solution-page .seo-section {
    padding: 72px 0;
    background: var(--white);
}

.solution-page .seo-section.alt {
    background: var(--bg-light);
}

.solution-page .seo-section h2 {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 16px;
    color: var(--text-dark);
    font-size: 30px;
    line-height: 1.35;
}

.solution-page .seo-section h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    border-radius: 3px;
    background: var(--primary-color);
    content: '';
}

.solution-page .seo-section p,
.solution-page .seo-section li {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.9;
}

.solution-page .seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.solution-page .seo-card {
    padding: 26px;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(22, 93, 255, 0.06);
}

.solution-page .seo-card h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.solution-page .seo-card ul {
    margin: 0;
    padding-left: 22px;
}

.solution-page .seo-card li + li {
    margin-top: 8px;
}

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

.solution-page .related-card {
    display: block;
    padding: 22px;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    background: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-page .related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 93, 255, 0.35);
    box-shadow: 0 12px 28px rgba(22, 93, 255, 0.12);
}

.solution-page .related-card h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.5;
}

.solution-page .related-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
}

.solution-page .faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5eaf2;
}

.solution-page .faq-item:first-of-type {
    padding-top: 0;
}

.solution-page .faq-item h3 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 19px;
    line-height: 1.5;
}

.solution-page .faq-item p {
    margin: 0;
}

.solution-page .cta-band {
    padding: 58px 20px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, #0f4ed8, var(--primary-color));
}

.solution-page .cta-band h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 30px;
}

.solution-page .cta-band p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.8;
}

.solution-page .cta-band a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    color: var(--primary-color);
    background: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-page .cta-band a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-page .footer-col a,
.solution-page .copyright a {
    color: #999;
    text-decoration: none;
}

.solution-page .footer-col a:hover,
.solution-page .copyright a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .solution-page .seo-hero {
        padding: 48px 0 44px;
    }

    .solution-page .seo-hero h1 {
        font-size: 31px;
    }

    .solution-page .seo-hero p {
        font-size: 16px;
        line-height: 1.75;
    }

    .solution-page .seo-section {
        padding: 52px 0;
    }

    .solution-page .seo-section h2,
    .solution-page .cta-band h2 {
        font-size: 24px;
    }

    .solution-page .seo-card,
    .solution-page .related-card {
        padding: 20px;
    }

    .solution-page .seo-grid,
    .solution-page .related-grid {
        grid-template-columns: 1fr;
    }
}
