.industry-page {
    color: #263746;
    padding-bottom: 48px;
}

.industry-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 24px;
    font-size: 14px;
}

.industry-breadcrumbs a {
    color: #007dc4;
}

.industry-breadcrumbs span:before {
    content: "/";
    color: #9aa8b4;
    margin-right: 10px;
}

.industry-hero {
    background: #f4f8fb;
    border: 1px solid #dfeaf1;
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
    gap: 28px;
    margin-bottom: 28px;
    padding: 42px;
}

.industry-eyebrow {
    color: #007dc4;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.industry-hero h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.industry-hero p,
.industry-risk p,
.industry-cta p {
    font-size: 18px;
    line-height: 1.55;
}

.industry-hero .btn {
    margin-top: 24px;
}

.industry-hero-card,
.industry-section,
.industry-risk,
.industry-trust,
.industry-faq,
.industry-cta {
    background: #fff;
    border: 1px solid #e3e8ec;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 28px;
}

.industry-hero-card h2,
.industry-section h2,
.industry-risk h2,
.industry-trust h2,
.industry-faq h2,
.industry-cta h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.industry-hero-card ul,
.industry-checklist {
    margin: 0;
    padding-left: 20px;
}

.industry-hero-card li,
.industry-checklist li {
    font-size: 17px;
    line-height: 1.5;
}

.industry-hero-card li + li,
.industry-checklist li + li {
    margin-top: 10px;
}

.industry-grid,
.industry-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.industry-grid p,
.industry-link-grid a {
    border: 1px solid #e3e8ec;
    border-radius: 8px;
    margin: 0;
    min-height: 96px;
    padding: 18px;
}

.industry-link-grid a {
    color: #263746;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    justify-content: center;
    text-decoration: none;
}

.industry-link-grid a:hover {
    border-color: #007dc4;
}

/* === Карточки отраслей с иконками === */
.industry-link-grid .ind-card {
    font-weight: normal;
    justify-content: flex-start;
    min-height: auto;
    padding: 22px;
    border-radius: 12px;
    gap: 10px;
    transition: box-shadow .18s, transform .18s, border-color .18s;
}

.industry-link-grid .ind-card:hover {
    border-color: #007dc4;
    box-shadow: 0 6px 24px rgba(0,125,196,.13);
    transform: translateY(-3px);
    text-decoration: none;
}

.industry-link-grid .ind-card:hover .ind-card-link {
    color: #005fa3;
}

.ind-card-icon {
    align-items: center;
    border-radius: 12px;
    display: flex;
    flex-shrink: 0;
    height: 52px;
    justify-content: center;
    margin-bottom: 4px;
    width: 52px;
}

.ind-card-icon svg {
    height: 26px;
    width: 26px;
}

.ind-card-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.ind-card-text {
    color: #4a5a6a;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.ind-card-link {
    color: #007dc4;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

/* === Усиленный CTA-блок === */
.ind-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ind-cta-left h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ind-cta-left p {
    font-size: 16px;
    line-height: 1.6;
    opacity: .88;
    margin-bottom: 20px;
    max-width: none;
}

.ind-cta-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ind-cta-checks li {
    font-size: 15px;
    font-weight: 600;
    opacity: .9;
}

.ind-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ind-cta-card {
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    color: #fff;
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    transition: background .18s, border-color .18s;
}

.ind-cta-card:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.35);
    color: #fff;
    text-decoration: none;
}

.ind-cta-card--yellow {
    background: #FFD700;
    border-color: #FFD700;
    color: #1a2530;
}

.ind-cta-card--yellow:hover {
    background: #f0c800;
    border-color: #f0c800;
    color: #1a2530;
}

.ind-cta-card-icon {
    align-items: center;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex;
    flex-shrink: 0;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.ind-cta-card--yellow .ind-cta-card-icon {
    background: rgba(0,0,0,.08);
}

.ind-cta-card-icon svg {
    height: 22px;
    width: 22px;
}

.ind-cta-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ind-cta-card-body strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.ind-cta-card-body small {
    display: block;
    font-size: 13px;
    opacity: .8;
}

.ind-cta-card--yellow .ind-cta-card-body small {
    opacity: .7;
}

.industry-risk {
    background: #fff7df;
    border-color: #f0d98b;
}

.industry-trust {
    background: #f7fbf8;
    border-color: #d7eadc;
}

.industry-faq details {
    border-top: 1px solid #e3e8ec;
    padding: 16px 0;
}

.industry-faq details:last-child {
    border-bottom: 1px solid #e3e8ec;
}

.industry-faq summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.industry-faq p {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 12px;
}

.industry-cta {
    align-items: center;
    background: #263746;
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.industry-cta .btn,
.industry-hero .btn {
    white-space: normal;
}

.industry-cta p {
    max-width: 720px;
}

@media (max-width: 991px) {
    .industry-hero,
    .industry-grid,
    .industry-link-grid {
        grid-template-columns: 1fr;
    }

    .industry-hero {
        padding: 28px;
    }

    .industry-hero h1 {
        font-size: 34px;
    }

    .industry-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ind-cta {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 575px) {
    .industry-hero,
    .industry-hero-card,
    .industry-section,
    .industry-risk,
    .industry-trust,
    .industry-faq,
    .industry-cta {
        padding: 22px;
    }

    .industry-hero h1 {
        font-size: 28px;
    }
}
