/* ==================================================
   YOTTABRAIN INDUSTRIES
================================================== */

.industries-page{
    --yb-red:#c92027;
    --yb-red-dark:#a71920;
    --yb-navy:#102a4c;
    --yb-text:#667085;
    --yb-border:#e8edf3;
    --yb-soft:#fff5f5;
    --yb-shadow:0 18px 50px rgba(19,41,75,.08);

    width:100%;
    overflow:hidden;
    background:#fff;
    color:var(--yb-text);
}

.industries-page *{
    box-sizing:border-box;
}

.industries-page .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.industries-page section{
    position:relative;
    width:100%;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.industries-page h1,
.industries-page h2,
.industries-page h3,
.industries-page p{
    margin-top:0;
}

.industries-page h1,
.industries-page h2,
.industries-page h3{
    color:var(--yb-navy);
}

.eyebrow{
    display:inline-block;
    margin-bottom:18px;
    color:var(--yb-red);
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    line-height:1.4;
    text-transform:uppercase;
}

.section-heading{
    max-width:720px;
}

.section-heading-center{
    margin:0 auto 55px;
    text-align:center;
}

.section-heading h2{
    margin-bottom:18px;
    font-size:46px;
    font-weight:750;
    line-height:1.15;
}

.section-heading p{
    margin-bottom:0;
    font-size:17px;
    line-height:1.85;
}


/* ==================================================
   BUTTONS
================================================== */

.industry-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}

.industry-btn-primary{
    background:var(--yb-red);
    border:1px solid var(--yb-red);
    color:#fff;
}

.industry-btn-primary:hover{
    background:var(--yb-red-dark);
    border-color:var(--yb-red-dark);
    color:#fff;
    transform:translateY(-2px);
}

.industry-btn-outline{
    background:#fff;
    border:1px solid #d9e0e8;
    color:var(--yb-navy);
}

.industry-btn-outline:hover{
    border-color:var(--yb-red);
    color:var(--yb-red);
    transform:translateY(-2px);
}

.industry-btn-light{
    background:#fff;
    border:1px solid #fff;
    color:var(--yb-red);
}

.industry-btn-light:hover{
    background:transparent;
    color:#fff;
}


/* ==================================================
   HERO
================================================== */

.industry-hero{
    padding:30px 0 30px;
    background:#fff;
}

.industry-hero::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    top:-170px;
    right:-120px;
    border-radius:50%;
    background:rgba(201,32,39,.035);
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
    align-items:center;
    gap:80px;
}

.hero-content{
    max-width:680px;
}

.hero-content h1{
    margin-bottom:24px;
    font-size:64px;
    font-weight:800;
    letter-spacing:-1.8px;
    line-height:1.05;
}

.hero-lead{
    max-width:650px;
    margin-bottom:34px;
    font-size:19px;
    line-height:1.8;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:34px;
}

.hero-trust span{
    padding:8px 13px;
    border:1px solid var(--yb-border);
    border-radius:30px;
    color:#58667a;
    font-size:12px;
    font-weight:600;
}

.hero-visual{
    position:relative;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-visual-main{
    width:100%;
    max-width:510px;
    padding:52px;
    border:1px solid var(--yb-border);
    border-radius:28px;
    background:linear-gradient(145deg,#fff,#fff8f8);
    box-shadow:var(--yb-shadow);
}

.hero-visual-label{
    margin-bottom:20px;
    color:var(--yb-red);
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}

.hero-visual-main h2{
    margin-bottom:18px;
    font-size:38px;
    line-height:1.15;
}

.hero-visual-main p{
    margin-bottom:30px;
    line-height:1.8;
}

.hero-visual-items{
    display:grid;
    gap:12px;
}

.hero-visual-items div{
    display:flex;
    align-items:center;
    gap:14px;
    padding:13px 15px;
    border:1px solid var(--yb-border);
    border-radius:12px;
    background:#fff;
    color:var(--yb-navy);
    font-size:14px;
    font-weight:600;
}

.hero-visual-items i{
    width:34px;
    color:var(--yb-red);
    font-size:18px;
    text-align:center;
}


/* ==================================================
   INTRO
================================================== */

.industry-intro{
    padding:40px 0;
    border-top:1px solid #f1f3f6;
    border-bottom:1px solid #f1f3f6;
}

.intro-grid{
    display:grid;
    grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);
    gap:80px;
    align-items:start;
}

.intro-content p{
    margin-bottom:18px;
    font-size:16px;
    line-height:1.9;
}

.intro-content p:last-child{
    margin-bottom:0;
}

.solution-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:55px;
    border-top:1px solid var(--yb-border);
    border-bottom:1px solid var(--yb-border);
}

.solution-item{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:78px;
    padding:15px 20px;
    border-right:1px solid var(--yb-border);
    color:var(--yb-navy);
    font-size:14px;
    font-weight:700;
}

.solution-item:last-child{
    border-right:0;
}

.solution-item i{
    color:var(--yb-red);
    font-size:19px;
}


/* ==================================================
   INDUSTRIES
================================================== */

.industries-section{
    padding:40px 0;
}

.industry-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.industry-card{
    position:relative;
    display:grid;
    grid-template-columns:60px 1fr;
    gap:25px;
    min-height:340px;
    padding:38px;
    border:1px solid var(--yb-border);
    border-radius:22px;
    background:#fff;
    transition:all .3s ease;
}

.industry-card:hover{
    border-color:#dce2ea;
    box-shadow:var(--yb-shadow);
    transform:translateY(-5px);
}

.industry-number{
    color:#d8dee7;
    font-size:18px;
    font-weight:800;
    letter-spacing:1px;
}

.industry-label{
    display:block;
    margin-bottom:10px;
    color:var(--yb-red);
    font-size:10px;
    font-weight:800;
    letter-spacing:1.7px;
}

.industry-card h3{
    margin-bottom:16px;
    font-size:28px;
    line-height:1.2;
}

.industry-card p{
    margin-bottom:28px;
    font-size:15px;
    line-height:1.8;
}

.industry-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:var(--yb-navy);
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}

.industry-link i{
    color:var(--yb-red);
    transition:transform .3s ease;
}

.industry-link:hover{
    color:var(--yb-red);
}

.industry-link:hover i{
    transform:translateX(5px);
}


/* ==================================================
   WHY YOTTABRAIN
================================================== */

.why-yottabrain{
    padding:60px 0;
    background:#fafbfc;
}

.why-grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);
    gap:90px;
    align-items:center;
}

.why-content h2{
    margin-bottom:20px;
    font-size:46px;
    line-height:1.15;
}

.why-intro{
    max-width:700px;
    margin-bottom:35px;
    font-size:17px;
    line-height:1.85;
}

.why-list{
    display:grid;
    gap:24px;
}

.why-item{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:18px;
}

.why-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#fff;
    color:var(--yb-red);
    box-shadow:0 7px 25px rgba(19,41,75,.06);
}

.why-item h3{
    margin-bottom:7px;
    font-size:19px;
}

.why-item p{
    margin:0;
    font-size:14px;
    line-height:1.75;
}

.why-visual{
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-visual-card{
    width:100%;
    max-width:430px;
    min-height:430px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:55px;
    border-radius:30px;
    background: linear-gradient(135deg, #16213E, #C92027);
    box-shadow:0 25px 60px rgba(19,41,75,.15);
}

.why-visual-card span{
    margin-bottom:25px;
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:3px;
}

.why-visual-card strong{
    color:#fff;
    font-size:42px;
    line-height:1.1;
}

.why-visual-card strong + strong{
    color:var(--yb-red);
}

.why-visual-card p{
    max-width:280px;
    margin-top:28px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}


/* ==================================================
   BUSINESS OUTCOMES
================================================== */

.business-outcomes{
    padding:40px 0;
}

.outcomes-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--yb-border);
    border-bottom:1px solid var(--yb-border);
}

.outcome-item{
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:30px;
    border-right:1px solid var(--yb-border);
    text-align:center;
}

.outcome-item:last-child{
    border-right:0;
}

.outcome-item strong{
    display:block;
    margin-bottom:10px;
    color:var(--yb-red);
    font-size:38px;
    line-height:1;
}

.outcome-item span{
    color:var(--yb-navy);
    font-size:15px;
    font-weight:700;
}


/* =========================================================
   INDUSTRIES PAGE CTA
   PREMIUM SERVICE-STYLE CTA
========================================================= */

.industry-cta {
    position: relative;
    padding: 10px 0 40px;
    background: #ffffff;
    overflow: hidden;
}


/* CTA BOX */

.industry-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 140px;

    padding: 32px 38px;

    background: linear-gradient(
        105deg,
        #202858 0%,
        #522247 48%,
        #C92027 100%
    );

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 18px 40px rgba(16,42,76,.12);

    isolation: isolate;
}


/* LEFT DECORATIVE CIRCLE */

.industry-cta-box::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -55px;
    bottom: -75px;

    border-radius: 50%;

    background: rgba(255,255,255,.035);

    pointer-events: none;

    z-index: -1;
}


/* RIGHT DECORATIVE CIRCLE */

.industry-cta-box::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -45px;
    top: -65px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 35px rgba(255,255,255,.025);

    pointer-events: none;

    z-index: -1;
}


/* CONTENT */

.industry-cta-content {
    position: relative;

    max-width: 680px;

    z-index: 2;
}


.industry-cta-content h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.7px;
}


.industry-cta-content p {
    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 13px;
    line-height: 1.6;
}


/* BUTTON AREA */

.industry-cta-action {
    position: relative;

    flex-shrink: 0;

    margin-left: 35px;

    z-index: 3;
}


/* CTA BUTTON */

.industry-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 14px 25px;

    background: #ffffff;

    color: #C92027 !important;

    border: 0;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}


.industry-cta-button:hover {
    color: #A8181E !important;

    background: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .industry-cta {
        padding: 45px 0 60px;
    }

    .industry-cta-box {
        min-height: 135px;

        padding: 30px;
    }

    .industry-cta-content {
        max-width: 580px;
    }

    .industry-cta-content h2 {
        font-size: 28px;
    }

    .industry-cta-content p {
        font-size: 12px;
    }

    .industry-cta-action {
        margin-left: 25px;
    }

    .industry-cta-button {
        min-width: 165px;

        padding: 13px 21px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .industry-cta {
        padding: 40px 0 50px;
    }

    .industry-cta-box {
        display: block;

        min-height: auto;

        padding: 30px 25px;

        border-radius: 16px;
    }

    .industry-cta-content {
        max-width: none;
    }

    .industry-cta-content h2 {
        font-size: 25px;
        line-height: 1.25;

        letter-spacing: -.4px;
    }

    .industry-cta-content p {
        margin-top: 10px;

        font-size: 13px;
        line-height: 1.65;
    }

    .industry-cta-action {
        margin: 22px 0 0;
    }

    .industry-cta-button {
        width: 100%;

        min-width: 0;

        padding: 14px 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .industry-cta {
        padding: 35px 0 45px;
    }

    .industry-cta-box {
        padding: 26px 20px;
    }

    .industry-cta-content h2 {
        font-size: 23px;
    }

    .industry-cta-content p {
        font-size: 12px;
    }

}

/* =========================================================
   INDUSTRIES PAGE - FINAL RESPONSIVE CSS
   Reduced mobile section spacing
========================================================= */


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

    .industries-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, .85fr);

        gap: 45px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .intro-grid {
        gap: 50px;
    }

    .why-grid {
        gap: 55px;
    }

    .why-content h2 {
        font-size: 40px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .industries-page .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }


    /* HERO */

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-lead {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        min-height: 360px;
    }

    .hero-visual-main {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }


    /* INTRO */

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content {
        width: 100%;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }


    /* SOLUTION STRIP */

    .solution-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .solution-item {
        min-width: 0;
        border-bottom: 1px solid var(--yb-border);
    }

    .solution-item:nth-child(2) {
        border-right: 0;
    }

    .solution-item:nth-child(3),
    .solution-item:nth-child(4) {
        border-bottom: 0;
    }


    /* INDUSTRIES */

    .industry-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        min-height: 0;
        padding: 32px;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-content {
        width: 100%;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-visual {
        width: 100%;
        min-height: 360px;
    }

    .why-visual-card {
        width: 100%;
        max-width: 600px;
        min-height: 360px;
        margin-left: auto;
        margin-right: auto;
    }


    /* BUSINESS OUTCOMES */

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcome-item {
        min-width: 0;
        border-bottom: 1px solid var(--yb-border);
    }

    .outcome-item:nth-child(2) {
        border-right: 0;
    }

    .outcome-item:nth-child(3) {
        border-bottom: 0;
    }

    .outcome-item:nth-child(4) {
        border-right: 0;
        border-bottom: 0;
    }


    /* CTA */

    .industry-cta {
        padding: 45px 0 50px;
    }

    .industry-cta-box {
        min-height: 135px;
        padding: 30px;
    }

    .industry-cta-content {
        max-width: 580px;
    }

    .industry-cta-content h2 {
        font-size: 28px;
    }

    .industry-cta-content p {
        font-size: 13px;
    }

    .industry-cta-action {
        margin-left: 25px;
    }

    .industry-cta-button {
        min-width: 165px;
        padding: 13px 21px;
    }
}


/* =========================================================
   MOBILE
   Reduced section padding
========================================================= */

@media (max-width: 767px) {

    .industries-page {
        width: 100%;
        overflow-x: hidden;
    }

    .industries-page .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }


    /* =====================================================
       SECTION SPACING
    ===================================================== */

    .industry-hero {
        padding: 30px 0;
    }

    .industry-intro {
        padding: 30px 0;
    }

    .industries-section {
        padding: 30px 0;
    }

    .why-yottabrain {
        padding: 30px 0;
    }

    .business-outcomes {
        padding: 30px 0;
    }


    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .section-heading,
    .section-heading-center {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-heading h2,
    .section-heading-center h2 {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }

    .section-heading p,
    .section-heading-center p {
        font-size: 15px;
        line-height: 1.75;
        text-align: center;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.6px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .industry-hero {
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-content h1 {
        width: 100%;
        margin-bottom: 18px;
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1px;
        text-align: center;
        overflow-wrap: break-word;
    }

    .hero-lead {
        width: 100%;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .hero-visual {
        width: 100%;
        min-height: auto;
        margin-top: 0;
    }

    .hero-visual-main {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 22px;
    }

    .hero-visual-main h2 {
        font-size: 30px;
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .industry-intro {
        text-align: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .intro-content {
        width: 100%;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .intro-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
    }


    /* =====================================================
       SOLUTION STRIP
    ===================================================== */

    .solution-strip {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 30px;
    }

    .solution-item {
        width: 100%;
        min-height: 60px;
        padding: 12px 15px;
        justify-content: center;
        border-right: 0;
        border-bottom: 1px solid var(--yb-border);
        text-align: center;
    }

    .solution-item:last-child {
        border-bottom: 0;
    }


    /* =====================================================
       INDUSTRIES
    ===================================================== */

    .industries-section {
        text-align: center;
    }

    .industry-list {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
    }

    .industry-card {
        width: 100%;
        min-width: 0;
        min-height: 0;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 15px;
        padding: 25px;
        border-radius: 18px;
        text-align: left;
    }

    .industry-card h3 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.25;
        overflow-wrap: break-word;
    }

    .industry-card p {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.75;
    }


    /* =====================================================
       WHY YOTTABRAIN
    ===================================================== */

    .why-yottabrain {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-content {
        width: 100%;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .why-content h2 {
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }

    .why-intro {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        line-height: 1.75;
        text-align: center;
    }

    .why-list {
        width: 100%;
        text-align: left;
    }

    .why-item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .why-icon {
        width: 46px;
        height: 46px;
    }

    .why-item h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .why-item p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* =====================================================
       WHY VISUAL
    ===================================================== */

    .why-visual {
        width: 100%;
        min-height: 300px;
    }

    .why-visual-card {
        width: 100%;
        max-width: 600px;
        min-height: 300px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 22px;
    }

    .why-visual-card strong {
        font-size: 34px;
    }


    /* =====================================================
       BUSINESS OUTCOMES
    ===================================================== */

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .outcome-item {
        width: 100%;
        min-width: 0;
        min-height: 125px;
        padding: 20px 14px;
        border-bottom: 1px solid var(--yb-border);
    }

    .outcome-item:nth-child(2) {
        border-right: 0;
    }

    .outcome-item:nth-child(3) {
        border-bottom: 0;
    }

    .outcome-item:nth-child(4) {
        border-right: 0;
        border-bottom: 0;
    }

    .outcome-item strong {
        font-size: 34px;
    }

    .outcome-item span {
        font-size: 13px;
        line-height: 1.45;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .industry-cta {
        padding: 30px 0 40px;
    }

    .industry-cta-box {
        display: block;
        width: 100%;
        min-height: auto;
        padding: 28px 22px;
        border-radius: 16px;
        text-align: center;
    }

    .industry-cta-content {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .industry-cta-content h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .industry-cta-content p {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.65;
    }

    .industry-cta-action {
        width: 100%;
        margin: 20px 0 0;
    }

    .industry-cta-button {
        width: 100%;
        min-width: 0;
        padding: 14px 20px;
    }
}


/* =========================================================
   SMALL MOBILE
   Further compact spacing
========================================================= */

@media (max-width: 575px) {

    .industries-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* SECTION SPACING */

    .industry-hero {
        padding: 28px 0;
    }

    .industry-intro {
        padding: 28px 0;
    }

    .industries-section {
        padding: 28px 0;
    }

    .why-yottabrain {
        padding: 28px 0;
    }

    .business-outcomes {
        padding: 28px 0;
    }


    /* HERO */

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.1;
        letter-spacing: -.7px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .industry-btn {
        width: 100%;
    }

    .hero-trust {
        gap: 6px;
        margin-top: 20px;
    }

    .hero-trust span {
        font-size: 10px;
        padding: 6px 9px;
    }


    /* HEADINGS */

    .section-heading h2,
    .section-heading-center h2,
    .why-content h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .section-heading p,
    .section-heading-center p {
        font-size: 14px;
    }


    /* HERO VISUAL */

    .hero-visual-main {
        padding: 25px 19px;
        border-radius: 20px;
    }

    .hero-visual-main h2 {
        font-size: 26px;
    }

    .hero-visual-main p {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .hero-visual-items {
        gap: 8px;
    }

    .hero-visual-items div {
        gap: 8px;
        padding: 9px;
        font-size: 12px;
    }


    /* INTRO */

    .intro-grid {
        gap: 20px;
    }

    .intro-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* SOLUTION */

    .solution-strip {
        margin-top: 25px;
    }

    .solution-item {
        min-height: 58px;
        padding: 11px 10px;
        font-size: 12px;
    }


    /* INDUSTRY CARDS */

    .industry-list {
        gap: 14px;
    }

    .industry-card {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 21px;
        border-radius: 17px;
    }

    .industry-number {
        font-size: 15px;
    }

    .industry-label {
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .industry-card h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .industry-card p {
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.7;
    }

    .industry-link {
        font-size: 12px;
    }


    /* WHY */

    .why-grid {
        gap: 25px;
    }

    .why-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .why-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .why-item h3 {
        font-size: 15px;
    }

    .why-item p {
        font-size: 12px;
        line-height: 1.7;
    }


    /* WHY VISUAL */

    .why-visual {
        min-height: 270px;
    }

    .why-visual-card {
        min-height: 270px;
        padding: 25px;
        border-radius: 20px;
    }

    .why-visual-card strong {
        font-size: 29px;
    }

    .why-visual-card p {
        font-size: 12px;
        line-height: 1.7;
    }


    /* OUTCOMES */

    .business-outcomes {
        padding: 28px 0;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcome-item {
        min-height: 105px;
        padding: 18px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--yb-border);
    }

    .outcome-item:last-child {
        border-bottom: 0;
    }

    .outcome-item strong {
        font-size: 30px;
    }

    .outcome-item span {
        max-width: 220px;
        font-size: 12px;
    }


    /* CTA */

    .industry-cta {
        padding: 28px 0 35px;
    }

    .industry-cta-box {
        padding: 24px 18px;
        border-radius: 15px;
    }

    .industry-cta-content h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .industry-cta-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .industry-cta-action {
        margin-top: 18px;
    }

    .industry-cta-button {
        padding: 13px 18px;
        font-size: 12px;
    }

}