
:root{
    --orange:#e05c2a;
    --orange-dark:#e8470a;
    --text:#1a1a1a;
    --text-light:#4a463f;
    --border:#e7e3dd;
}

.material-hero{
    position:relative;
    background:#111;
    padding:100px 0 60px;
    min-height:100svh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.material-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('/preview/assets/images/material-selection-guide.webp') center / cover no-repeat;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.10) 4%, rgba(0,0,0,0.0) 100%);
    z-index:1;
}

.material-hero .container{
    position:relative;
    z-index:2;
    width:100%;
}

.hero-left{
    max-width:680px;
}

.material-hero-img--mobile{
    display:none;
}
.header-main,
.navbar {
  background: #fff !important
}

.header-main a,
.navbar a,
header a {
  color: #0b1b2b !important
}

header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}


.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    position:relative;
    z-index:2;
}

.hero-eyebrow{
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#e05c2a;
    margin-bottom:12px;
}

.material-hero h1{
    font-family:'Barlow Condensed',sans-serif;
    font-size:65px;
    font-weight:800;
    line-height:1.05;
    color:#000000;
    margin-bottom:12px;
}

.material-hero h1 span{
    color:#e05c2a;
}

.hero-description{
    font-size:16px;
    line-height:1.7;
    color:#000000;
}

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:18px;
}

.hero-points span{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(135, 122, 122, 0.2);
    border-radius:30px;
    padding:8px 14px;
    font-size:13px;
    font-weight:600;
    color:#000000;
}

.hero-stats{
    display:flex;
    flex-wrap:nowrap;
    gap:2px;
    margin-top:32px;
}

.hero-stat{
    min-width:90px;
}

.stat-number{
    font-family:'Barlow Condensed',sans-serif;
    font-size:36px;
    font-weight:800;
    color:#000000;
    line-height:1;
}

.stat-label{
    margin-top:8px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#7b7272;
    font-weight:600;
}

.hero-tagline{
    margin-top:20px;
    font-size:14px;
color:#e05c2a;
    letter-spacing:0.5px;
    font-style:italic;
}

/* Tablet */

@media(max-width:991px){

    .material-hero{
        padding:100px 0 60px;
        min-height:auto;
        display:block;
    }

    .hero-stats{
        gap:35px;
    }

    .hero-description{
        font-size:17px;
    }
}

/* Mobile */

@media(max-width:767px){

    .material-hero{
        padding:94px 0 0px;
        background:#fff;
    }

    .material-hero::before{
        display:none;
    }

    .hero-overlay{
        display:none;
    }

    .material-hero-img--mobile{
        display:block;
        width:100%;
        border-radius:10px;
        margin:20px 0 24px;
    }

    .material-hero h1{
        font-size:32px;
        color:#1a1a1a;
    }

    .material-hero h1 span{
        color:#e05c2a;
    }

    .hero-eyebrow{
        color:#e05c2a;
        margin-bottom:5px;
    }

    .hero-description{
        color:#4a463f;
    }

    .hero-points span{
        background:#f5f0eb;
        border-color:#e7e3dd;
        color:#1a1a1a;
    }

    .stat-label{
        color:#666;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        margin-top:24px;
    }

    .stat-number{
        font-size:40px;
    }

    .stat-label{
        font-size:11px;
        letter-spacing:1px;
    }
}

@media(max-width:480px){

    
    .material-hero h1{
        font-size:36px;
    }
}
@media(max-width:480px){

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =====================================
   DISCLAIMER
===================================== */

.guide-disclaimer{
    background:#fffbf5;
    border-bottom:1px solid #f0e8df;
    padding:14px 0;
    margin:12px 0;
}

.disclaimer-inner{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.disclaimer-icon{
    font-size:18px;
    color:#e05c2a;
    flex-shrink:0;
    margin-top:1px;
}

.guide-disclaimer p{
    font-size:15px;
    color:#5a5248;
    line-height:1.6;
    margin:0;
}

.guide-disclaimer p strong{
    color:#1a1a1a;
}

.guide-disclaimer a{
    color:#e05c2a;
    font-weight:600;
    text-decoration:none;
}

.guide-disclaimer a:hover{
    text-decoration:underline;
}

.disclaimer-db-link{
    display:inline-block;
    background:#fff3ee;
    border:1px solid #e05c2a;
    border-radius:4px;
    padding:2px 8px;
    color:#e05c2a;
    font-weight:600;
    font-size:12.5px;
    text-decoration:none;
    white-space:nowrap;
    transition:background .15s, color .15s;
}

.disclaimer-db-link:hover{
    background:#e05c2a;
    color:#fff;
    text-decoration:none;
}

/* =====================================
   TECHNOLOGY OVERVIEW
===================================== */

.technology-overview{
    padding:40px 0;
    background:#fff;
}

.section-header{
    margin-bottom:12px;
}

.section-eyebrow{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:3px;
    color:#e8470a;
    font-weight:600;
    margin-bottom:12px;
}

.section-header h2{
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-weight:800;
    color:#1a1a1a;
    line-height:1.1;
    margin-bottom:12px;
}

.section-header p{
    font-size:15px;
    color:#000000;
    line-height:1.7;
}

.technology-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.tech-card{
    background:#fff;
    border:1px solid #e7e3dd;
    border-radius: 14px;
    overflow:hidden;
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
}

.tech-card:hover{
    transform:translateY(-5px);
    border-color:#e05c2a;
}

.tech-card-img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    flex-shrink:0;
}

.tech-card-body{
    padding:24px 24px 26px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.tech-view-link{
    display:inline-block;
    margin-top:auto;
    color:#fff;
    background:#e8470a;
    font-weight:700;
    font-size:13px;
    text-decoration:none;
    letter-spacing:0.5px;
    padding:8px 16px;
    border-radius:5px;
    transition:background .2s, color .2s;
    align-self:flex-start;
}

.tech-view-link:hover{
    background:#c03a00;
    color:#fff;
}

.tech-tag{
    display:inline-block;
    background:#1a1a1a;
    color:#fff;
    padding:5px 12px;
    border-radius:4px;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.tech-card h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:28px;
    margin-bottom:10px;
    color:#1a1a1a;
}

.tech-card p{
    font-size:15px;
    color:#6f6a63;
    margin-bottom:18px;
    line-height:1.6;
}

.tech-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.tech-card ul li{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:10px 0;
    border-top:1px dashed #e7e3dd;
    font-size:14px;
}

.tech-card ul li:first-child{
    border-top:none;
}

.tech-card ul li span:last-child{
    text-align:right;
    font-weight:600;
}

.best-for{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid #e7e3dd;
    color:#e8470a;
    font-weight:600;
    font-size:14px;
}

/* Tablet */

@media(max-width:1024px){

    .technology-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .technology-overview{
        padding:70px 0;
    }

    .technology-grid{
        grid-template-columns:1fr;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-header p{
        font-size:14px;
    }

    .tech-card{
        padding:24px 20px;
    }

}


/* ====================================
   MATERIAL FILTER SECTION
==================================== */

.material-filter-section{
    padding:40px 0;
    background:#f7f4ef;
    border-top:1px solid #e7e3dd;
    border-bottom:1px solid #e7e3dd;
    position:relative;
    z-index:10;
}

.selector-panel{
    background:#fff;
    border:1px solid #e7e3dd;
    padding:35px;
    box-shadow:0 4px 24px rgba(0,0,0,0.04);
}

.selector-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(220px,1fr));
    gap:20px;
    margin-bottom:25px;
}
.selector-panel{
    position:relative;
}
.selector-panel{
    border-radius:16px;
}

.filter-group label{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#6f6a63;
}

.filter-group select{
    width:100%;
    border:1px solid #e7e3dd;
    border-radius:4px;
    background:#fdfcfa;
    padding:0 14px;
    font-size:15px;
    font-weight:600;
    color:#1a1a1a;
    cursor:pointer;
}
.filter-group select{
    height:58px;
    border-radius:10px;
    font-size:15px;
}

.filter-group select:focus{
    outline:none;
    border-color:#e8470a;
}

#results{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

@media(max-width:768px){
    #results{
        grid-template-columns:1fr;
    }
}

.results-count{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:30px;
    background:#fff4ef;
    color:#e8470a;
    font-weight:700;
    margin-bottom:20px;
}
#no-results{
    display:none;
    border:1px dashed #e7e3dd;
    border-radius:6px;
    text-align:center;
    padding:40px 20px;
    color:#6f6a63;
    font-size:15px;
}

/* Tablet */

@media(max-width:1024px){

    .selector-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .material-filter-section{
        padding:70px 0;
    }

    .selector-panel{
        padding:25px 20px;
    }

    .selector-grid{
        grid-template-columns:1fr;
    }

}

/* ====================================
   MATERIAL RESULT CARDS
==================================== */

.result-card{
    display:grid;
    grid-template-columns:110px 65px 190px minmax(0,1fr) auto;
    column-gap:24px;
    align-items:center;

    background:#fdfcfa;
    border:1px solid #e7e3dd;
    border-radius:8px;

    padding:20px;
}

.result-swatch{
    width:65px;
    height:65px;

    border-radius:6px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-family:'Barlow Condensed',sans-serif;
    font-size:18px;
    font-weight:800;
}

.result-title h4{
    font-family:'Barlow Condensed',sans-serif;
    font-size:24px;
    margin-bottom:3px;
    color:#1a1a1a;
}

.result-tag{
    font-size:12px;
    color:#6f6a63;
    letter-spacing:1px;
    text-transform:uppercase;
}

.result-content{
    width:100%;
}

.result-description{
    font-size:15px;
    color:#4a463f;
    line-height:1.6;
    margin-bottom:12px;
}

.result-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.result-meta-item{
    font-size:12px;
    color:#6f6a63;
}

.result-meta-item strong{
    display:block;
    font-size:15px;
    color:#1a1a1a;
    margin-top:3px;
}

/* Image in same row as card content, leftmost column */
.result-img{
    order:-1;
    width:110px;
    height:80px;
    object-fit:contain;
    object-position:center;
    background:#f5f3f0;
    display:block;
    border-radius:6px;
    flex-shrink:0;
}

.result-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    padding:11px 18px;

    border:1px solid #e8470a;
    border-radius:4px;

    color:#e8470a;

    font-size:13px;
    font-weight:700;

    transition:.3s;
    white-space:nowrap;
}

.result-button:hover{
    background:#e8470a;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .result-card{
        grid-template-columns:80px 55px 1fr auto;
        column-gap:16px;
    }

    .result-content{
        grid-column:2 / -1;
    }

    .result-img{
        width:80px;
        grid-row:1 / 3;
        align-self:stretch;
        height:100%;
        object-fit:contain;
    }

}

/* Mobile */

@media(max-width:768px){

    .result-card{
        grid-template-columns:55px 1fr;
        column-gap:14px;
    }

    .result-img{
        grid-column:1 / -1;
        width:100%;
        height:140px;
        object-fit:contain;
        border-radius:6px;
        order:-1;
        grid-row:auto;
        align-self:auto;
    }

    .result-content{
        grid-column:1 / -1;
    }

    .result-button{
        grid-column:1 / -1;
        width:fit-content;
    }

    .result-swatch{
        width:55px;
        height:55px;
    }

    .result-title h4{
        font-size:20px;
    }

    .result-meta{
        gap:12px;
    }

}


/* ==================================
   QUICK DECISION PATH
================================== */

.decision-path{
    padding:80px 0;
    background:#111;
}

.decision-path .section-header{
    color:#fff;
}

.decision-path .section-eyebrow{
    color:#e05c2a;
}

.decision-path .section-header h2{
    color:#fff;
}

.decision-path .section-header p{
    color:#888;
}

.flow-steps{
    margin-top:32px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.flow-step{
    background:#1c1c1c;
    border-radius:6px;
    border:1px solid #2a2a2a;
    border-top:3px solid #2a2a2a;
    overflow:hidden;
    transition:border-top-color 0.25s, background 0.25s;
}

.flow-step.active{
    border-top-color:#e05c2a;
    background:#202020;
}

.flow-number{
    font-family:'Barlow Condensed',sans-serif;
    font-size:13px;
    font-weight:700;
    color:#e05c2a;
    letter-spacing:2px;
    text-transform:uppercase;
}

.flow-toggle{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    text-align:left;
    padding:22px 24px;
    cursor:pointer;
}

.flow-toggle-left{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.flow-q{
    font-family:'Barlow Condensed',sans-serif;
    font-size:22px;
    font-weight:700;
    color:#e0dbd4;
    line-height:1.2;
    transition:color 0.2s;
}

.flow-step.active .flow-q{
    color:#fff;
}

.flow-icon{
    flex-shrink:0;
    width:34px;
    height:34px;
    border-radius:4px;
    border:1.5px solid #3a3a3a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    line-height:1;
    color:#e05c2a;
    transition:all 0.25s ease;
}

.flow-step.active .flow-icon{
    background:#e05c2a;
    border-color:#e05c2a;
    color:#fff;
    transform:rotate(45deg);
}

.flow-body{
    display:none;
    padding:0 24px 24px;
    border-top:1px solid #2a2a2a;
}

.flow-step.active .flow-body{
    display:block;
}

.flow-content p,
.flow-body p{
    font-size:15px;
    line-height:1.75;
    color:#fff;
    padding-top:20px;
}

.flow-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:16px;
}

.flow-tags span{
    border:1px solid #e05c2a;
    color:#e05c2a;
    background:transparent;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:500;
    letter-spacing:.5px;
}

/* Tablet */

@media(max-width:991px){

    .flow-q{
        font-size:20px;
    }

}

/* Mobile */

@media(max-width:768px){

    h2{
        font-size: 30px;
    }
    .decision-path{
        padding:60px 0;
    }

    .flow-toggle{
        padding:18px 16px;
    }

    .flow-body{
        padding:0 16px 20px;
    }

    .flow-q{
        font-size:18px;
    }

    .flow-content p{
        font-size:14px;
    }

    .flow-tags span{
        font-size:11px;
    }

}

/* ==================================
   FFF MATERIALS SECTION
================================== */

.bg-alt{
    background:#f7f4ef;
}

.material-family-section{
    padding:40px 0;
}

.family-block{
    display:grid;
    grid-template-columns:1fr 1.7fr;
    gap:50px;
    align-items:start;
}

.family-subtitle{
    color:#e8470a;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.family-intro h2{
    font-family:'Barlow Condensed',sans-serif;
    font-size:56px;
    font-weight:800;
    margin-bottom:18px;
    color:#1a1a1a;
}

.family-intro p{
    font-size:16px;
    line-height:1.8;
    color:#5d5d5d;
    margin-bottom:18px;
}

.family-link{
    display:inline-block;
    margin-top:8px;
    color:#e8470a;
    font-weight:700;
    text-decoration:none;
    border-bottom:2px solid #e8470a;
    padding-bottom:2px;
}

.materials-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.material-card{
    background:#fff;
    border:1px solid #e7e3dd;
    border-radius:8px;
    padding:28px;
    transition:.3s ease;
}

.material-card:hover{
    border-color:#e8470a;
    transform:translateY(-3px);
}

.material-top{
    display:flex;
    justify-content:space-between;
    gap:15px;
    align-items:flex-start;
    margin-bottom:10px;
}

.material-top h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:24px;
    font-weight:700;
    color:#1a1a1a;
}

.material-top span{
    font-size:11px;
    color:#6f6a63;
    text-align:right;
}

.material-card p{
    font-size:14px;
    color:#4a463f;
    line-height:1.7;
    margin-bottom:14px;
}

.material-specs{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.material-specs div{
    font-size:11px;
    color:#6f6a63;
}

.material-specs strong{
    display:block;
    font-size:14px;
    color:#1a1a1a;
    margin-bottom:2px;
}

/* Tablet */

@media(max-width:991px){

    .family-block{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media(max-width:768px){

    .material-family-section{
        padding:70px 0;
    }

    .family-intro h2{
        font-size:40px;
    }

    .materials-grid{
        grid-template-columns:1fr;
    }

}
/* SLA section uses same layout as FFF section */

.material-family-section{
    padding:40px 0;
}

.materials-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

@media(max-width:768px){

    .materials-grid{
        grid-template-columns:1fr;
    }

}

/* ==================================
   COMPARISON TABLE
================================== */

.comparison-section{
    padding:40px 0;
    background:#fff;
}

.comparison-table-wrapper{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    border:1px solid #e7e3dd;
    border-radius:12px;
    background:#fff;
}

.comparison-table{
    width:100%;
    min-width:1200px;
    border-collapse:collapse;
}

.comparison-table thead th{
    background:#f7f4ef;
    padding:16px;
    text-align:left;

    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    color:#6f6a63;
    border-bottom:1px solid #e7e3dd;

    position:sticky;
    top:0;
    z-index:2;
}

.comparison-table td{
    padding:16px;
    border-bottom:1px solid #e7e3dd;
    font-size:14px;
    vertical-align:top;
}

.comparison-table tbody tr:hover{
    background:#faf7f2;
}

.material-name{
    font-family:'Barlow Condensed',sans-serif;
    font-size:20px;
    font-weight:700;
    color:#1a1a1a;
    min-width:180px;
}

.material-name span{
    display:block;
    margin-top:4px;
    font-family:'Barlow',sans-serif;
    font-size:11px;
    font-weight:500;
    color:#6f6a63;
}

.pill {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 20px;
}
.pill.medium{
    color: #b9831f;
    background-color: #fbf2e1;
}

.pill.high{
    color: #3f7a4f;
    background-color: #eaf3ec;
}
.pill.low{
    color:#c0432f;
    background-color: #fbeae6;
}
.pill.very-high{
    color: #1e5a3a;
    background-color: #c8e6d0;
}
.pill.extreme{
    color: #2c4a8c;
    background-color: #dce8f8;
}
.pill.flexible{
    color: #7a4f9e;
    background-color: #f0e8fb;
}
/* Tablet */

@media(max-width:991px){

    .comparison-table{
        min-width:1000px;
    }

    .comparison-table td,
    .comparison-table th{
        padding:14px;
    }

}

/* Mobile */

@media(max-width:768px){

    .comparison-table{
        min-width:850px;
    }

    .comparison-table td,
    .comparison-table th{
        padding:12px;
        font-size:13px;
    }

    .material-name{
        font-size:18px;
        min-width:150px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .comparison-table{
        min-width:750px;
    }

    .comparison-table td,
    .comparison-table th{
        padding:10px;
        font-size:12px;
    }

    .material-name{
        font-size:16px;
    }

}
/* ==================================
   APPLICATION SECTION
================================== */

.applications-section{
    padding:40px 0;
    background:#f7f4ef;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.application-card{
    background:#fff;
    border:1px solid #e7e3dd;
    border-radius:8px;
    overflow:hidden;
    height:100%;
    transition:.3s ease;
    display:flex;
    flex-direction:column;
}

.application-card:hover{
    transform:translateY(-4px);
    border-color:#e8470a;
}

.app-card-img-wrap{
    position:relative;
    overflow:hidden;
    flex-shrink:0;
}

.app-card-img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.application-card:hover .app-card-img{
    transform:scale(1.05);
}

.app-card-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:12px 16px;
    background:linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
    display:flex;
    flex-direction:column;
    gap:4px;
}

.app-card-overlay .tech-tag{
    align-self:flex-start;
    font-size:11px;
    padding:2px 8px;
    background:rgba(224,92,42,.9);
    color:#fff;
    border-radius:4px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.app-card-overlay h3{
    color:#fff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:20px;
    font-weight:700;
    margin:0;
    text-transform:uppercase;
    letter-spacing:.02em;
}

.app-card-body{
    padding:24px 26px 26px;
    flex:1;
}


.application-card h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:26px;
    margin-bottom:10px;
    color:#ffffff;
}

.application-card p{
    color:#6f6a63;
    font-size:15px;
    line-height:1.7;
    margin-bottom:14px;
}

.recommended-material{
    border-top:1px dashed #e7e3dd;
    padding-top:12px;

    color:#e8470a;

    font-size:13px;
    font-weight:600;
}

/* Tablet */

@media(max-width:1024px){

    .application-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .applications-section{
        padding:70px 0;
    }

    .application-grid{
        grid-template-columns:1fr;
    }

}


/* ==================================
   FAQ SECTION
================================== */

.faq-section{
    padding:40px 0;
    background:#fff;
}

.faq-item{
    border-bottom:1px solid #e7e3dd;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    padding:14px 0;
    cursor:pointer;
    font-family:'Barlow',sans-serif;
    font-size:18px;
    font-weight:500;
    color:#1a1a1a;
}

.faq-icon{
    font-size:28px;
    color:#e8470a;
    transition:.3s ease;
}
.faq-answer p{
    padding:0 0 24px;
    font-size:15px;
    line-height:1.8;
    color:#6f6a63;
}

.faq-answer{
    display:none;
}

.faq-item.active .faq-answer{
    display:block;
}



.faq-item.active .faq-icon{
    transform:rotate(45deg);
}


.faq-item.active .faq-icon{
    transform:rotate(45deg);
}
/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-question{
        font-size:16px;
        gap:20px;
    }

}

@media(max-width:991px){

    .container{
        padding:0 30px;
    }

}

/* ==================================
   CTA BAND
================================== */

.material-cta-section{
    padding:40px 0;
}

.cta-band{
    background:#1a1a1a;
    color:#fff;
    border-radius:10px;

    padding:48px 44px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:24px;

    position:relative;
    overflow:hidden;
}

.cta-band::after{
    content:"";
    position:absolute;

    right:-80px;
    bottom:-80px;

    width:280px;
    height:280px;
    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(224,92,42,.25) 0%,
        transparent 70%
    );
}

.cta-content{
    position:relative;
    z-index:1;
}

.cta-content h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:30px;
    font-weight:700;

    margin-bottom:8px;
    max-width:480px;
}

.cta-content p{
    color:#bdb8b1;
    font-size:15px;
    max-width:440px;
    line-height:1.6;
}

.cta-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
}

.btn-primary{
    background:#e8470a;
    color:#fff;

    padding:14px 28px;
    border-radius:4px;

    text-decoration:none;
    font-size:14px;
    font-weight:700;

    letter-spacing:.03em;
    text-transform:uppercase;

    transition:.3s ease;
}

.btn-primary:hover{
    background:#e05c2a;
}

.btn-secondary{
    border:1px solid #565656;
    color:#fff;

    padding:14px 28px;
    border-radius:4px;

    text-decoration:none;
    font-size:14px;
    font-weight:700;

    letter-spacing:.03em;
    text-transform:uppercase;

    transition:.3s ease;
}

.btn-secondary:hover{
    border-color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .cta-band{
        padding:40px 32px;
    }

}

/* Mobile */

@media(max-width:768px){

    .material-cta-section{
        padding:60px 0;
    }

    .cta-band{
        padding:36px 24px;
        text-align:center;
        justify-content:center;
    }

    .cta-content h3,
    .cta-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .cta-buttons{
        justify-content:center;
        width:100%;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .cta-content h3{
        font-size:26px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

}


/* ==================================
   RELATED RESOURCES
================================== */

.related-resources{
    padding:24px 0;
    background:#f7f4ef;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.related-card{
    display:block;
    text-decoration:none;

    background:#fff;
    border:1px solid #e7e3dd;
    border-radius:6px;

    padding:14px;

    color:#1a1a1a;

    transition:
    border-color .3s ease,
    transform .3s ease;
}

.related-card:hover{
    border-color:#e05c2a;
    transform:translateY(-3px);
}

.rtag{
    display:block;

    font-family:'Barlow',sans-serif;
    font-size:11px;
    font-weight:600;

    color:#e8470a;

    text-transform:uppercase;
    letter-spacing:.1em;

    margin-bottom:10px;
}

.related-card h4{
    font-family:'Barlow Condensed',sans-serif;
    font-size:22px;
    font-weight:700;

    margin-bottom:8px;
    line-height:1.1;
}

.related-card p{
    font-size:14px;
    color:#6f6a63;
    line-height:1.6;
}

/* Tablet */

@media(max-width:991px){

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .related-resources{
        padding:40px 0;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

    .related-card{
        padding:14px;
    }

}

@media(max-width:768px){

    .container{
        padding:0 20px;
    }
    .section-header h2{
font-size: 35px;
    }

}

@media(max-width:480px){

    .container{
        padding:0 15px;
    }

}

.table-scroll-note{
    display:none;
    margin-bottom:12px;
    font-size:13px;
    color:#6f6a63;
}

@media(max-width:768px){

    .table-scroll-note{
        display:block;
    }

}

.filter-actions{
    display:flex;
    justify-content:flex-end;
    margin-bottom:15px;
}



.start-message{
    text-align:center;
    padding:40px;
    background:#fff;
    border:1px dashed #ddd;
    border-radius:10px;
    color:#666;
    font-size:16px;
}

/* ================================
   MOBILE COLLAPSIBLE MATERIAL GRIDS
================================ */

.materials-toggle {
    display: none;
}

@media (max-width: 991px) {

    .materials-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin: 20px 0 4px;
        padding: 13px 20px;
        background: transparent;
        border: 2px solid #e05c2a;
        border-radius: 4px;
        color: #e05c2a;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .materials-toggle.is-open {
        background: #e05c2a;
        color: #fff;
    }

    .materials-grid {
        display: none;
    }

    .materials-grid.is-open {
        display: grid;
    }

}
/* ================================
   INLINE CTAs
================================ */

.inline-cta-wrap{background:#fff;padding:0 0 40px}

.inline-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;background:#fff8f5;border:1px solid #f0d5c8;border-left:5px solid #e05c2a;border-radius:10px;padding:28px 36px}

.inline-cta span{font-family:'Barlow Condensed',sans-serif;font-size:26px;font-weight:700;color:#1a1a1a;line-height:1.2}

.inline-cta a{flex-shrink:0;display:inline-flex;align-items:center;gap:8px;background:#e05c2a;color:#fff;font-size:14px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:14px 26px;border-radius:6px;text-decoration:none;transition:background .2s,transform .2s;white-space:nowrap}

.inline-cta a:hover{background:#c94e22;transform:translateY(-2px)}

.inline-cta-wrap--dark{background:#fff;padding:10px 0 10px}

@media(max-width:768px){
.inline-cta-wrap,.inline-cta-wrap--dark{padding:0 0 28px}
.inline-cta{flex-direction:column;align-items:flex-start;padding:20px;gap:16px}
.inline-cta span{font-size:20px}
.inline-cta a{width:100%;justify-content:center}
}
