.industries-page {
    --green: #0d6e5e;
    --green-dark: #0a564a;
    --green-tint: #e8f3f0;
    --ink: #16201d;
    --body: #4a5751;
    --line: #e2e8e5;
    --bg: #ffffff;
    --bg-soft: #f6faf8;
    --radius: 14px;
    --maxw: 1280px;
    width: 100%;
    max-width: none;
    align-self: stretch;
    align-items: stretch;
    overflow-x: clip;
    color: var(--body);
    line-height: 1.6;
}

.industries-page h1,
.industries-page h2,
.industries-page h3,
.industries-page h4 {
    color: var(--ink);
    line-height: 1.18;
    font-weight: 700;
    text-transform: none;
}

.industries-page .wrap {
    max-width: var(--maxw);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.industries-page .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.industries-page section:not(.testimonials) {
    max-width: none;
    width: 100%;
    padding: 74px 0;
    gap: 0;
    align-items: stretch;
    align-self: stretch;
    box-sizing: border-box;
}

.industries-page .section-head {
    max-width: 720px;
    width: 100%;
    margin-bottom: 46px;
}

.industries-page .section-head h2 {
    font-size: 33px;
    margin-bottom: 16px;
    letter-spacing: -.01em;
    line-height: 1.18;
}

.industries-page .section-head p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.industries-page p,
.industries-page li {
    overflow-wrap: anywhere;
}

.industries-page .alt {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.industries-page .lead-section {
    padding-top: 48px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    background: var(--bg);
}

.industries-page .lead-section .deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(120% 140% at 85% -30%, var(--green-tint) 0%, rgba(232, 243, 240, 0) 60%);
}

.industries-page .lead-section .deco svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.industries-page .lead-section .deco path {
    fill: none;
    stroke: var(--green);
    stroke-width: 1;
    opacity: .14;
}

.industries-page .lead-section .wrap {
    position: relative;
    z-index: 1;
}

.industries-page .lead-section .crumb {
    font-size: 13px;
    color: var(--body);
    margin-bottom: 30px;
}

.industries-page .lead-section .crumb a {
    color: var(--green);
}

.industries-page .lead-section .crumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.industries-page .lead-section .crumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin-right: 6px;
    color: var(--body);
}

.industries-page .lead-section .section-head h1 {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.industries-page .btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 30px;
    padding: 15px 34px;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s;
}

.industries-page .btn:hover {
    background: var(--green-dark);
    color: #fff;
}

.industries-page .ind-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
}

.industries-page .ind-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}

.industries-page .ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 50px -28px rgba(13, 110, 94, .35);
    border-color: var(--green);
}

.industries-page .ind-card .top {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green) 0%, #12876f 100%);
}

.industries-page .ind-card .top svg {
    width: 46px;
    height: 46px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
}

.industries-page .ind-card .body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.industries-page .ind-card h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

.industries-page .ind-card .kw {
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 13px;
    letter-spacing: .01em;
}

.industries-page .ind-card p {
    font-size: 14.5px;
    margin-bottom: 20px;
    flex: 1;
    overflow-wrap: anywhere;
}

.industries-page .ind-card .more {
    font-weight: 600;
    color: var(--green);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.industries-page .ind-card .more svg {
    width: 16px;
    height: 16px;
    transition: transform .2s;
}

.industries-page .ind-card:hover .more svg {
    transform: translateX(4px);
}

.industries-page .appr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.industries-page .appr-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    background: #fff;
}

.industries-page .appr-card .n {
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

.industries-page .appr-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.industries-page .appr-card p {
    font-size: 15px;
}

.industries-page .statband {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.industries-page .statband .s b {
    font-size: 52px;
    color: var(--green);
    display: block;
    line-height: 1;
    font-weight: 700;
}

.industries-page .statband .s span {
    font-size: 15px;
    color: var(--body);
    display: block;
    margin-top: 10px;
}

.industries-page .case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.industries-page .case {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.industries-page .case .badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 13px;
}

.industries-page .case h3 {
    font-size: 19px;
    margin-bottom: 11px;
}

.industries-page .case .desc {
    font-size: 14px;
    margin-bottom: 18px;
}

.industries-page .case .deliv-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 9px;
}

.industries-page .case ul.deliv {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
}

.industries-page .case ul.deliv li {
    font-size: 13.5px;
    padding-left: 26px;
    position: relative;
    margin-bottom: 7px;
    line-height: 1.45;
}

.industries-page .case ul.deliv li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><circle cx="12.5" cy="12" r="11" fill="%23008777"/><path d="M18.5 8L11.5004 16L7.5 11.657" stroke="white"/></svg>') no-repeat center;
    background-size: contain;
}

.industries-page .case .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.industries-page .case .chips span {
    font-size: 11px;
    color: var(--body);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 11px;
}

.industries-page .case .metrics {
    display: flex;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    margin-bottom: 18px;
}

.industries-page .case .metrics .m b {
    font-size: 22px;
    color: var(--green);
    display: block;
    line-height: 1;
    font-weight: 700;
}

.industries-page .case .metrics .m span {
    font-size: 11px;
    color: var(--body);
}

.industries-page .case .case-link {
    font-weight: 600;
    color: var(--green);
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.industries-page .case .case-link svg {
    width: 15px;
    height: 15px;
    transition: transform .2s;
}

.industries-page .case:hover .case-link svg {
    transform: translateX(3px);
}

.industries-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.industries-page .team-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    background: #fff;
}

.industries-page .team-card .role {
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 5px;
}

.industries-page .team-card .seat {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 13px;
}

.industries-page .team-card p {
    font-size: 14px;
    margin-bottom: 14px;
}

.industries-page .team-card .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.industries-page .team-card .skills span {
    font-size: 11px;
    color: var(--body);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 10px;
}

.industries-page .tech-group {
    margin-bottom: 34px;
}

.industries-page .tech-group:last-child {
    margin-bottom: 0;
}

.industries-page .tech-group h3 {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--body);
    font-weight: 600;
    margin-bottom: 18px;
}

.industries-page .tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.industries-page .tech-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 11px 18px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.industries-page .tech-chip .glyph {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
}

.industries-page .why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.industries-page .why {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.industries-page .why .ic {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-page .why .ic svg {
    width: 21px;
    height: 21px;
    stroke: var(--green);
    fill: none;
    stroke-width: 1.7;
}

.industries-page .why h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.industries-page .why p {
    font-size: 14.5px;
}

.industries-page .ctaband {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    text-align: center;
    padding: 64px 0;
    max-width: none;
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

.industries-page .ctaband h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 14px;
}

.industries-page .ctaband p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 40px;
}

.industries-page .ctaband a {
    color: white;
    padding: 12px 39.5px;
    background: none;
    border: 1px solid white;
    transition: all 0.3s;
    box-shadow: 0px 0.5px 1.75px 0px rgba(0, 0, 0, 0.04), 0px 1.85px 6.25px 0px rgba(0, 0, 0, 0.10);
}

.industries-page .ctaband .btn:hover {
    background: var(--green-tint);
    color: var(--green);
}

.industries-page + .faq,
.industries-page ~ .faq {
    margin-top: 0;
}

@media only screen and (max-width: 1024px) {
    .industries-page .wrap {
        padding: 0 16px;
    }

    .industries-page section:not(.testimonials) {
        padding: 60px 0;
    }

    .industries-page .lead-section {
        padding-top: 40px;
    }

    .industries-page .lead-section .section-head h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .industries-page .section-head {
        margin-bottom: 32px;
        max-width: 100%;
    }

    .industries-page .section-head h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .industries-page .section-head p {
        font-size: 16px;
        line-height: 1.5;
    }

    .industries-page .ind-grid,
    .industries-page .appr-grid,
    .industries-page .case-grid,
    .industries-page .team-grid,
    .industries-page .why-grid,
    .industries-page .statband {
        grid-template-columns: minmax(0, 1fr);
    }

    .industries-page .statband {
        gap: 34px;
    }

    .industries-page .case ul.deliv li::before {
        top: 10px
    }

    .industries-page .ind-card:hover {
        transform: none;
    }

    .industries-page .ind-card .body {
        padding: 22px 20px 24px;
    }

    .industries-page .ind-card .top {
        height: 112px;
    }

    .industries-page .appr-card,
    .industries-page .case,
    .industries-page .team-card {
        padding: 24px 20px;
    }

    .industries-page .case .metrics {
        flex-wrap: wrap;
        gap: 14px;
    }

    .industries-page .statband .s b {
        font-size: 42px;
    }

    .industries-page .why {
        gap: 14px;
    }

    .industries-page .ctaband {
        padding: 48px 0;
    }

    .industries-page .ctaband h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .industries-page .ctaband p {
        font-size: 16px;
    }
}
