.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;
    }
}

/* ===== UX UPGRADE v2 ===== */

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

.ind-hero-checks li {
    align-items: flex-start;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    line-height: 1.4;
}

.ind-hero-checks li::before {
    color: #007dc4;
    content: "✔";
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 2px;
}

.ind-hero-cta {
    background: #1a2e45;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
}

.ind-hero-cta__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.ind-hero-cta__body {
    font-size: 14px;
    line-height: 1.55;
    opacity: .85;
}

.ind-hero-cta .btn {
    text-align: center;
    width: 100%;
}

.ind-hero-cta__phone {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.ind-hero-cta__phone:hover { color: #FFD700; }

.ind-hero-cta__tg {
    align-items: center;
    background: #29A8EB;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    padding: 10px 16px;
    text-decoration: none;
    transition: background .15s;
}

.ind-hero-cta__tg:hover { background: #1a96d4; color: #fff; text-decoration: none; }

.ind-hero-cta__tg svg { flex-shrink: 0; height: 18px; width: 18px; }

.ind-feature-card {
    background: #f8fafc;
    border: 1px solid #dce5ed;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 20px;
}

.ind-feature-card p { margin: 0; }

/* Problem cards — red/orange accent */
.ind-problem-card {
    background: #fff8f6;
    border: 1px solid #fbd0c8;
    border-left: 4px solid #d94f37;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 20px 18px 18px;
}

.ind-problem-card::before {
    color: #d94f37;
    content: "⚠";
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.ind-problem-card p { color: #3d1f1a; margin: 0; }

/* Include cards — green check */
.ind-include-card {
    align-items: flex-start;
    background: #f4fbf5;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    display: flex;
    font-size: 16px;
    gap: 12px;
    line-height: 1.5;
    padding: 18px 20px;
}

.ind-include-card::before {
    color: #2e7d32;
    content: "✓";
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ind-include-card p { color: #1a3d1e; margin: 0; }

/* Risk block — shield header */
.ind-risk-inner {
    align-items: flex-start;
    display: flex;
    gap: 20px;
}

.ind-risk-icon {
    background: #fef3c7;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 12px;
}

.ind-risk-icon svg { display: block; height: 28px; width: 28px; }

.ind-risk-text h2 { font-size: 22px; margin-bottom: 10px; }

.ind-risk-text p { font-size: 17px; line-height: 1.6; margin: 0; }

/* Why cards — numbered 01/02/03 */
.ind-why-card {
    background: #f0f6fc;
    border: 1px solid #c8dff0;
    border-radius: 10px;
    padding: 22px;
}

.ind-why-card__num {
    color: #007dc4;
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    opacity: .35;
}

.ind-why-card p { font-size: 16px; font-weight: 600; line-height: 1.4; margin: 0; }

/* Steps — "Как мы работаем" */
.ind-steps {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.ind-step {
    background: #fff;
    border: 1px solid #e3e8ec;
    border-radius: 10px;
    border-top: 4px solid #007dc4;
    padding: 22px 20px 20px;
}

.ind-step__num {
    color: #007dc4;
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    opacity: .3;
}

.ind-step p { font-size: 16px; font-weight: 600; line-height: 1.4; margin: 0; }

@media (max-width: 767px) {
    .ind-steps { grid-template-columns: 1fr; }
    .ind-risk-inner { flex-direction: column; gap: 12px; }
}

.ind-case-card {
    border: 1px solid #e3e8ec;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .18s;
}

.ind-case-card:hover { box-shadow: 0 4px 16px rgba(0,125,196,.1); }

.ind-case-card a {
    color: inherit;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    text-decoration: none;
}

.ind-case-card a:hover { text-decoration: none; }

.ind-case-card__label {
    color: #007dc4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ind-case-card__name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

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

.ind-services-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.ind-services-grid a {
    align-items: center;
    border: 1px solid #e3e8ec;
    border-radius: 8px;
    color: #263746;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    padding: 14px 16px;
    text-decoration: none;
    transition: border-color .15s, color .15s;
}

.ind-services-grid a:hover {
    border-color: #007dc4;
    color: #007dc4;
    text-decoration: none;
}

.ind-services-grid a::before {
    color: #007dc4;
    content: "→";
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .ind-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .ind-hero-cta { padding: 22px; }
}

/* Numbered card helper for outsourcing-card-based why/trust sections */
.ind-card-num {
    font-size: 26px;
    font-weight: 800;
    color: #e0b800;
    margin-bottom: 8px;
    line-height: 1;
}

/* Illustration size modifiers — override outsourcing-hero__illust defaults */
.ind-illust-hero {
    flex: 0 0 200px;
    max-width: 200px;
}
.ind-illust-hero img {
    height: 200px;
}

.ind-illust-why {
    flex: 0 0 220px;
    max-width: 220px;
}
.ind-illust-why img {
    height: 220px;
}

@media (max-width: 991.98px) {
    .ind-illust-hero,
    .ind-illust-why {
        width: 140px;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .ind-illust-hero img,
    .ind-illust-why img {
        height: 120px;
    }
}
