.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)
}

/* =========================================
METAL HERO SECTION
========================================= */

.metal-hero{
    padding:70px 0;
    background:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg,#ececec 1px, transparent 1px);
    background-size:48px 48px;
    background-color:#f8f8f8;
    position:relative;
    overflow:hidden;
}

/* GRID */

.metal-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

/* LEFT */

.metal-hero-left{
    padding-right:30px;
    position:relative;
    z-index:2;
}

/* TOPLINE */

.hero-topline{
    font-size:11px;
    letter-spacing:5px;
    color:#d35400;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:16px;
    text-transform:uppercase;
}

.hero-topline span{
    width:40px;
    height:2px;
    background:#d35400;
    display:block;
}

/* TITLE */

.metal-hero-left h1{
    display:flex;
    flex-direction:column;
    line-height:0.95;
    gap:10px;
    margin-bottom:24px;
}

.metal-hero-left h1 span{
    font-size:72px;
    font-weight:900;
    font-family:'Barlow Condensed', sans-serif;
    letter-spacing:-2px;
    text-transform:uppercase;
}

.metal-hero-left h1 .black{
    color:#000;
}

.metal-hero-left h1 .orange{
    color:#d35400;
}

/* DESC */

.hero-desc{
    font-size:16px;
    line-height:1.8;
    color:#566b80;
    margin-bottom:24px;
    max-width:620px;
}

/* TAGS */

.hero-tags{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.hero-tag{
    border:1px solid rgba(211,84,0,0.25);
    background:rgba(211,84,0,0.06);
    color:#d35400;
    padding:7px 14px;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.btn-main{
    background:#d35400;
    color:#fff;
    text-decoration:none;
    padding:15px 32px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    transition:0.3s;
    clip-path:polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

.btn-main:hover{
    background:#c84300;
}

.btn-link{
    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    border-bottom:2px solid #000;
    padding-bottom:5px;
}

/* RIGHT */

.metal-hero-right{
    position:relative;
    overflow:hidden;
    background:#0b0f12;
}

.metal-hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:0.82;
    min-height:620px;
    transition:7s ease;
}

.metal-hero-right:hover img{
    transform:scale(1.04);
}

/* OVERLAY */

.metal-hero-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        130deg,
        rgba(211,84,0,0.25) 0%,
        transparent 55%
    );
}

/* TEMP BADGE */

.temp-badge{
    position:absolute;
    top:40px;
    right:40px;
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.temp-ring{
    width:90px;
    height:90px;
    border-radius:50%;
    border:2px solid rgba(211,84,0,0.45);
    background:rgba(11,15,18,0.88);
    display:flex;
    align-items:center;
    justify-content:center;
}

.temp-value{
    font-size:24px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:900;
    color:#fff;
}

.temp-value span{
    color:#d35400;
    font-size:14px;
}

.temp-label{
    font-size:8px;
    letter-spacing:3px;
    color:rgba(255,255,255,0.6);
    text-transform:uppercase;
}

/* STATS */

.hero-stats{
    position:absolute;
    left:0;
    bottom:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    min-width:75%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    z-index:5;
}

.stat-box{
    padding:12px 7px;
    border-right:1px solid #eee;
}

.stat-box:last-child{
    border-right:none;
}

.stat-box h3{
    font-size:32px;
    font-weight:900;
    line-height:1;
    margin-bottom:8px;
    font-family:'Barlow Condensed', sans-serif;
}

.stat-box h3 span{
    color:#d35400;
}

.stat-box p{
    font-size:10px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#777;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .metal-hero-grid{
        grid-template-columns:1fr;
    }

    .metal-hero-left{
        padding-right:0;
    }

    .metal-hero-left h1 span{
        font-size:58px;
    }

    .metal-hero-right img{
        min-height:500px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .metal-hero{
        padding:50px 0;
    }

    .metal-hero-left h1 span{
        font-size:42px;
    }

    .hero-desc{
        font-size:15px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .btn-main,
    .btn-link{
        width:100%;
        text-align:center;
    }

    .metal-hero-right img{
        min-height:350px;
    }

    .temp-badge{
        top:18px;
        right:18px;
    }

    .temp-ring{
        width:72px;
        height:72px;
    }

    .temp-value{
        font-size:20px;
    }

    .hero-stats{
        position:relative;
        bottom:auto;
        left:auto;
        grid-template-columns:repeat(3,1fr);
        margin-bottom: 5px;
        margin-top: 5px;
        min-width:100%;
    }

    .stat-box{
        border-right:none;
        border-bottom:1px solid #eee;
    }

    .stat-box:last-child{
        border-bottom:none;
    }

}   

/* =========================================
METAL FEATURES STRIP
========================================= */

.metal-features-strip{
    background:#0b0f12;
    padding:17px 0;
}

/* GRID */

.metal-features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

/* BOX */

.metal-feature-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:0 30px;
    border-right:1px solid rgba(255,255,255,0.05);
    transition:0.3s;
}

.metal-feature-box:last-child{
    border-right:none;
}

.metal-feature-box:hover{
    background:#11161b;
}

/* ICON */

.feature-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(211,84,0,0.10);
    border:1px solid rgba(211,84,0,0.35);
    flex-shrink:0;
}

.feature-icon img{
    width:22px;
    height:22px;
    object-fit:contain;
}

/* CONTENT */

.feature-content h3{
    color:#fff;
    font-size:17px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:10px;
    font-family:'Barlow Condensed', sans-serif;
}

.feature-content p{
    color:rgba(255,255,255,0.70);
    font-size:15px;
    line-height:1.7;
    max-width:240px;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .metal-features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .metal-feature-box{
        padding:25px;
        border-bottom:1px solid rgba(255,255,255,0.05);
    }

    .metal-feature-box:nth-child(2n){
        border-right:none;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .metal-features-grid{
        grid-template-columns:1fr;
    }

    .metal-feature-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.05);
        padding:22px 0;
    }

    .metal-feature-box:last-child{
        border-bottom:none;
    }

    .feature-content p{
        max-width:100%;
    }

}


/* =========================================
WHAT IS METAL 3D PRINTING
========================================= */

.metal-overview-section{
    background:#f4f2ef;
    padding:40px 0;
}

/* GRID */

.metal-overview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT */

.metal-overview-left{
    position:relative;
    overflow:hidden;
}

.metal-overview-left img{
    width:100%;
    height:auto;
    max-height:620px;
    object-fit:cover;
    display:block;
}


/* LABEL */

.overview-label{
    position:absolute;
    bottom:0;
    right:0;
    background:#d35400;
    color:#fff;
    padding:12px 18px;
    font-size:10px;
    letter-spacing:3px;
    text-transform:uppercase;
    z-index:5;
}

/* MINI TITLE */

.mini-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:11px;
    letter-spacing:4px;
    color:#d35400;
    margin-bottom:14px;
    text-transform:uppercase;
}

.mini-title span{
    width:40px;
    height:2px;
    background:#d35400;
    display:block;
}

/* TITLE */

.metal-overview-right h2{
    font-size:56px;
    line-height:1;
    font-weight:700;
    margin-bottom:20px;
    font-family:'Barlow Condensed', sans-serif;
    color:#111;
}

.metal-overview-right h2 span{
    color:#d35400;
}

/* PARAGRAPHS */

.metal-overview-right p{
    color:#566b80;
    font-size:15px;
    line-height:1.9;
    margin-bottom:12px;
}

/* =========================================
OVERVIEW POINTS LIST
========================================= */

.overview-points-list{
    margin:14px 0 34px;
    padding:0;
    list-style:none;

    display:grid;
    grid-template-columns:1fr;
    gap:1px 26px;
}

/* LI */

.overview-points-list li{
    position:relative;
    padding-left:28px;

    color:#566b80;
    font-size:15px;
    line-height:1.8;
}

/* ORANGE DIAMOND */

.overview-points-list li::before{
    content:"";
    position:absolute;

    left:0;
    top:10px;

    width:10px;
    height:10px;

    background:#d35400;

    transform:rotate(45deg);
}


/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .overview-points-list{
        grid-template-columns:1fr;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .overview-points-list{
        gap:12px;
        margin:24px 0 28px;
    }

    .overview-points-list li{
        font-size:14px;
        line-height:1.7;
        padding-left:24px;
    }

    .overview-points-list li::before{
        width:8px;
        height:8px;
        top:8px;
    }

}

.metal-overview-right p strong{
    color:#111;
}

/* FACT GRID */

.metal-facts-grid{
    margin-top:34px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2px;
    background:#ddd;
    border:1px solid #ddd;
}

/* FACT BOX */

.fact-box{
    background:#fff;
    padding:22px 20px;
    transition:0.3s;
}

.fact-box:hover{
    background:#f8f8f8;
}

.fact-box h3{
    font-size:30px;
    line-height:1;
    color:#d35400;
    margin-bottom:8px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:900;
}

.fact-box span{
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#777;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .metal-overview-grid{
        grid-template-columns:1fr;
    }

    .metal-overview-left img{
        max-height:450px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .metal-overview-right h2{
        font-size:34px;
    }

    .metal-facts-grid{
        grid-template-columns:1fr;
    }

    .fact-box{
        padding:20px;
    }

    .fact-box h3{
        font-size:26px;
    }

}



/* =========================================
HOW METAL 3D PRINTING WORKS
========================================= */

.metal-process-section{
    padding:40px 0;
    background:#fff;
}

/* HEADER */

.process-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:12px;
}

.process-header h2{
    font-size:56px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    color:#111;
    margin:12px 0;
}

.process-header p{
    font-size:14px;
    line-height:1.8;
    color:#566b80;
    text-align:right;
}

/* TIMELINE */

.process-timeline{
    position:relative;
    display:flex;
    flex-direction:column;
}

/* STEP */

.process-step{
    display:grid;
    grid-template-columns:56px 1fr;
    border-bottom:1px solid #ddd;
    background:#fff;
    transition:0.3s;
}

.process-step:last-child{
    border-bottom:none;
}

.process-step:hover{
    background:#f8f8f8;
}

/* LEFT */

.process-left{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:28px 0;
}

/* NODE */

.step-node{
    width:20px;
    height:20px;
    background:#d35400;
    clip-path:polygon(
        50% 0%,
        100% 50%,
        50% 100%,
        0% 50%
    );
    flex-shrink:0;
}

/* LINE */

.step-line{
    flex:1;
    width:2px;
    background:rgba(211,84,0,0.15);
    margin-top:6px;
}

/* RIGHT */

.process-right{
    padding:28px 0 28px 28px;
}

/* NUMBER */

.step-number{
    font-size:10px;
    letter-spacing:3px;
    color:#d35400;
    text-transform:uppercase;
    margin-bottom:10px;
}

/* TITLE */

.process-right h3{
    font-size:20px;
    margin-bottom:10px;
    color:#111;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
}

/* DESC */

.process-right p{
    font-size:14px;
    color:#566b80;
    line-height:1.8;
    max-width:1000px;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .process-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .process-header p{
        text-align:left;
        max-width:100%;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .process-header h2{
        font-size:34px;
    }

    .process-step{
        grid-template-columns:42px 1fr;
    }

    .process-right{
        padding:22px 0 22px 18px;
    }

    .process-right h3{
        font-size:18px;
    }

    .process-right p{
        font-size:14px;
    }

    .step-number{
        line-height:1.7;
    }

}

/* =========================================
SUPPORTED METAL ALLOYS
========================================= */

.metal-materials-section{
    padding:40px 0;
    background:#f4f2ef;
}

/* HEADER */

.materials-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:12px;
}

.materials-header h2{
    font-size:56px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    color:#111;
    margin:12px 0;
}

.materials-note{
    font-size:14px;
    line-height:1.8;
    color:#566b80;
    text-align:right;
}

/* GRID */

.materials-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2px;
    background:#ddd;
}

/* CARD */

.material-card{
    background:#fff;
    padding:32px 28px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.material-card:hover{
    transform:translateY(-4px);
    background:#fafafa;
}

/* TOP BORDER */

.material-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#d35400;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.3s;
}

.material-card:hover::before{
    transform:scaleX(1);
}

/* SYMBOL */

.material-symbol{
    position:absolute;
    top:10px;
    right:14px;
    font-size:52px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:900;
    color:#ececec;
    letter-spacing:-2px;
    pointer-events:none;
}

/* TAG */

.material-tag{
    display:inline-block;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d35400;
    border:1px solid rgba(211,84,0,0.25);
    background:rgba(211,84,0,0.06);
    padding:5px 12px;
    margin-bottom:18px;
}

/* TITLE */

.material-card h3{
    font-size:22px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
    position:relative;
    z-index:2;
}

/* DESC */

.material-desc{
    font-size:15px;
    line-height:1.8;
    color:#566b80;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

/* SPECS */

.material-specs{
    border-top:1px solid #ddd;
    padding-top:18px;
}

/* ROW */

.spec-line{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    gap:20px;
}

.spec-line:last-child{
    margin-bottom:0;
}

/* LABEL */

.spec-line span{
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#777;
}

/* VALUE */

.spec-line strong{
    font-size:15px;
    color:#111;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
}

/* USE */

.material-use{
    margin-top:18px;
    padding:12px 14px;
    background:#f4f2ef;
    border-left:2px solid #d35400;
    font-size:10px;
    line-height:1.8;
    letter-spacing:1.5px;
    color:#d35400;
    text-transform:uppercase;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .materials-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .materials-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .materials-note{
        text-align:left;
        max-width:100%;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .materials-grid{
        grid-template-columns:1fr;
    }

    .materials-header h2{
        font-size:34px;
    }

    .material-card{
        padding:24px;
    }

    .material-symbol{
        font-size:42px;
    }

}

/* =========================================
METAL ADVANTAGES SECTION
========================================= */

.metal-advantages-section{
    background:#0b0f12;
    padding:40px 0;
}

/* HEADER */

.advantages-header{
    margin-bottom:12px;
}

.advantages-header .mini-title{
    margin-bottom:16px;
}

.advantages-header h2{
    color:#fff;
    font-size:56px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    margin-bottom:12px;
}

.advantages-desc{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.60);
}

/* GRID */

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:rgba(255,255,255,0.06);
}

/* ITEM */

.advantage-item{
    background:#0b0f12;
    padding:44px 36px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.advantage-item:hover{
    background:rgba(211,84,0,0.06);
}

/* BIG NUMBER */

.adv-number{
    position:absolute;
    right:14px;
    bottom:5px;
    font-size:90px;
    line-height:1;
    font-weight:900;
    font-family:'Barlow Condensed', sans-serif;
    color:rgba(255,255,255,0.04);
    pointer-events:none;
}

/* BAR */

.adv-bar{
    width:36px;
    height:2px;
    background:#d35400;
    margin-bottom:26px;
}

/* TITLE */

.advantage-item h3{
    color:#fff;
    font-size:20px;
    line-height:1.4;
    margin-bottom:14px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    letter-spacing:0.5px;
    max-width:300px;
    position:relative;
    z-index:2;
}

/* DESC */

.advantage-item p{
    font-size:14px;
    line-height:1.8;
    color:rgba(255,255,255,0.55);
    max-width:320px;
    position:relative;
    z-index:2;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .advantages-grid{
        grid-template-columns:1fr;
    }

    .advantages-header h2{
        font-size:34px;
    }

    .advantage-item{
        padding:30px 24px;
    }

    .adv-number{
        font-size:70px;
    }

}


/* =========================================
TECHNICAL SPECIFICATIONS SECTION
========================================= */

.metal-specifications-section{
    padding:40px 0;
    background:#fff;
}

/* LAYOUT */

.spec-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:flex-start;
}

/* LEFT */

.spec-left{
    position:sticky;
    top:120px;
}

/* TITLE */

.spec-left h2{
    font-size:56px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    color:#111;
    margin:14px 0 18px;
}

/* DESC */

.spec-desc{
    font-size:15px;
    line-height:1.9;
    color:#566b80;
    margin-bottom:24px;
}

/* TIP */

.spec-tip{
    background:#f4f2ef;
    border-left:3px solid #d35400;
    padding:20px;
    font-size:14px;
    line-height:1.8;
    color:#566b80;
}

.spec-tip strong{
    color:#111;
}

/* RIGHT */

.spec-right{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px;
    background:#ddd;
}

/* CARD */

.spec-card{
    background:#f8f8f8;
    padding:26px 24px;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.spec-card:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* TOP BORDER */

.spec-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#d35400;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.3s;
}

.spec-card:hover::before{
    transform:scaleX(1);
}

/* LABEL */

.spec-card span{
    display:block;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#777;
    margin-bottom:12px;
    line-height:1.7;
}

/* VALUE */

.spec-card h3{
    font-size:20px;
    line-height:1.5;
    color:#111;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .spec-layout{
        grid-template-columns:1fr;
    }

    .spec-left{
        position:relative;
        top:auto;
    }

    .spec-right{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .spec-left h2{
        font-size:34px;
    }

    .spec-right{
        grid-template-columns:1fr;
    }

    .spec-card{
        padding:22px 20px;
    }

    .spec-card h3{
        font-size:18px;
    }

}

/* =========================================
POST PROCESSING & FINISHING
========================================= */

.metal-finishing-section{
    padding:40px 0;
    background:#f4f2ef;
}

/* HEADER */

.finishing-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:12px;
}

.finishing-header h2{
    font-size:56px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    color:#111;
    margin:12px 0;
}

.finishing-header p{
    font-size:15px;
    line-height:1.8;
    color:#566b80;
    text-align:right;
}

/* GRID */

.finishing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px;
    background:#ddd;
}

/* CARD */

.finish-card{
    background:#fff;
    padding:34px 30px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.finish-card:hover{
    background:#fafafa;
    transform:translateY(-4px);
}

/* TOP LINE */

.finish-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#d35400;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.3s;
}

.finish-card:hover::before{
    transform:scaleX(1);
}

/* TOP */

.finish-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
}

/* NUMBER */

.finish-number{
    font-size:42px;
    line-height:1;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:900;
    color:#d35400;
}

/* TAG */

.finish-tag{
    font-size:9px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d35400;
    background:rgba(211,84,0,0.07);
    border:1px solid rgba(211,84,0,0.20);
    padding:6px 10px;
}

/* TITLE */

.finish-card h3{
    font-size:22px;
    line-height:1.4;
    color:#111;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    margin-bottom:14px;
    max-width:300px;
}

/* DESC */

.finish-card p{
    font-size:14px;
    line-height:1.9;
    color:#566b80;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .finishing-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .finishing-header p{
        text-align:left;
        max-width:100%;
    }

    .finishing-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .finishing-header h2{
        font-size:34px;
    }

    .finishing-grid{
        grid-template-columns:1fr;
    }

    .finish-card{
        padding:26px 22px;
    }

    .finish-number{
        font-size:34px;
    }

    .finish-card h3{
        font-size:20px;
    }

}

/* =========================================
INDUSTRIES SECTION
========================================= */

.metal-industries-section{
    padding:40px 0;
    background:#0b0f12;
}

/* HEADER */

.industries-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:12px;
}

.industries-header h2{
    font-size:56px;
    line-height:1;
    color:#fff;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    margin:12px 0;
}

.industries-header p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.60);
    text-align:right;
}

/* GRID */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px;
    background:rgba(255,255,255,0.08);
}

/* CARD */

.industry-card{
    background:#0b0f12;
    padding:34px 30px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.industry-card:hover{
    background:rgba(211,84,0,0.06);
}

/* NUMBER */

.industry-number{
    font-size:14px;
    letter-spacing:3px;
    color:#d35400;
    margin-bottom:18px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
}

/* TITLE */

.industry-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:14px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
}

/* DESC */

.industry-card p{
    font-size:14px;
    line-height:1.9;
    color:rgba(255,255,255,0.58);
    margin-bottom:22px;
}

/* LIST */

.industry-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.industry-card ul li{
    position:relative;
    padding-left:18px;
    margin-bottom:12px;
    font-size:13px;
    letter-spacing:1px;
    color:#fff;
    text-transform:uppercase;
}

/* DOT */

.industry-card ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:7px;
    width:7px;
    height:7px;
    background:#d35400;
    transform:rotate(45deg);
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .industries-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .industries-header p{
        text-align:left;
        max-width:100%;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .industries-header h2{
        font-size:34px;
    }

    .industries-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        padding:26px 22px;
    }

    .industry-card h3{
        font-size:21px;
    }

}


/* =========================================
TECHNOLOGY COMPARISON SECTION
========================================= */

.metal-comparison-section{
    padding:40px 0;
    background:#f4f2ef;
}

/* HEADER */

.comparison-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:12px;
}

.comparison-header h2{
    font-size:56px;
    line-height:1;
    color:#111;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    margin:12px 0;
}

.comparison-header p{
    font-size:15px;
    line-height:1.8;
    color:#566b80;
   
}

h2>span{
    color: #d35400;
}
/* TABLE WRAPPER */

.comparison-table-wrapper{
    overflow-x:auto;
    border:1px solid #ddd;
}

/* TABLE */

.comparison-table{
    width:100%;
    border-collapse:collapse;
    min-width:1100px;
    background:#fff;
}

/* HEAD */

.comparison-table thead{
    background:#0b0f12;
}

.comparison-table thead th{
    padding:22px 20px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.75);
    text-align:left;
    border-right:1px solid rgba(255,255,255,0.08);
    font-weight:600;
}

.comparison-table thead th:last-child{
    border-right:none;
}

/* HIGHLIGHT */

.comparison-table thead .highlight{
    background:#d35400;
    color:#fff;
}

/* BODY */

.comparison-table tbody tr{
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.comparison-table tbody tr:hover{
    background:#fafafa;
}

.comparison-table tbody td{
    padding:18px 20px;
    font-size:14px;
    color:#566b80;
    line-height:1.7;
    border-right:1px solid #eee;
}

.comparison-table tbody td:first-child{
    color:#111;
    font-weight:600;
}

.comparison-table tbody td:last-child{
    border-right:none;
}

/* HIGHLIGHT CELL */

.highlight-cell{
    background:rgba(211,84,0,0.05);
    color:#d35400 !important;
    font-weight:700;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .comparison-header{
        gap:16px;
        margin-bottom:24px;
    }

    .comparison-header h2{
        font-size:42px;
        line-height:1.1;
    }

    .comparison-header p{
        font-size:14px;
        line-height:1.8;
    }

    .comparison-table-wrapper{
        overflow-x:visible !important ;
        -webkit-overflow-scrolling:touch;
    }

    .comparison-table{
        min-width:900px;
    }

    .comparison-table thead th{
        padding:18px 16px;
        font-size:11px;
    }

    .comparison-table tbody td{
        padding:16px;
        font-size:13px;
    }


}




@media(max-width:768px){

    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr{
        display:block;
        width:100%;
    }

    .comparison-table{
        min-width:100%;
        border:none;
    }

    .comparison-table thead{
        display:none;
    }

    .comparison-table tbody{
        display:flex;
        flex-direction:column;
        gap:18px;
    }

    .comparison-table tbody tr{
        background:#fff;
        border:1px solid #ddd;
        padding:18px;
    }

    .comparison-table tbody td{
        border:none;
        padding:10px 0;
        position:relative;
        padding-left:48%;
        text-align:left;
        min-height:44px;
    }

    .comparison-table tbody td::before{
        position:absolute;
        left:0;
        top:10px;
        width:42%;
        font-weight:700;
        color:#111;
        font-size:12px;
        text-transform:uppercase;
        line-height:1.5;
    }

    /* COLUMN NAMES */

    .comparison-table tbody td:nth-child(1)::before{
        content:"Feature";
    }

    .comparison-table tbody td:nth-child(2)::before{
        content:"SLM / DMLS";
    }

    .comparison-table tbody td:nth-child(3)::before{
        content:"Binder Jetting";
    }

    .comparison-table tbody td:nth-child(4)::before{
        content:"Metal FDM";
    }

    .comparison-table tbody td:nth-child(5)::before{
        content:"CNC";
    }

    .comparison-header h2{
        font-size:34px;
    }

}



/* =========================
   GALLERY WRAPPER (SIDE SPACE)
========================= */
.gallery-wrapper {
  position: relative;
  padding: 0 60px;
  /* desktop spacing */
}

/* =========================
   TRACK (SCROLL AREA)
========================= */
.gallery-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   ROW
========================= */
.gallery-row {
  display: flex;
  gap: 24px;
}

/* =========================
   IMAGES (DESKTOP)
========================= */
.gallery-row img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-row {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* =========================
   BUTTONS
========================= */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #152515;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-weight: 500;
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background: var(--orange);
}

.gallery-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .gallery-wrapper {
    padding: 0 40px;
  }

  .gallery-row img {
    width: 260px;
    height: 300px;
  }

  .gallery-btn {
    width: 38px;
    height: 38px;
  }
}


/* =========================
   SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-row img {
    width: 180px;
    height: 240px;
  }

  /* cleaner UI */
  .gallery-btn {
    display: flex;
  }
}

.feat-card {
  min-height: 220px;
}

.gallery-track {
  align-items: stretch;
  /* instead of center */
}

.gallery-row img {
  height: 300px;
}

.gallery-track {
  scroll-snap-type: x mandatory;
}

.gallery-row img {
  scroll-snap-align: start;
}



@media (max-width: 480px) {

  .gallery-row img {
    height: 100%;
  }

  .gallery-btn.prev {
    left: 8px;
  }

  .gallery-btn.next {
    right: 8px;
  }
}

@media (max-width: 768px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-track {
    overflow: hidden;
    position: relative;
  }

  .gallery-row {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
  }

  .gallery-row img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    flex-shrink: 0;
  }

  .gallery-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(18, 39, 5, 0.9);
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
}



/* =========================================
FAQ SECTION
========================================= */

.metal-faq-section{
    padding:40px 0;
    background:#0b0f12;
    overflow:hidden;
}

/* LAYOUT */

.faq-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:flex-start;
}

/* LEFT */

.faq-left{
    position:sticky;
    top:120px;
}

.faq-left h2{
    font-size:56px;
    line-height:1;
    color:#fff;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    margin:14px 0 18px;
}

.faq-left p{
    font-size:15px;
    line-height:1.9;
    color:rgba(255,255,255,0.60);
    margin-bottom:30px;
}

/* CTA BOX */

.faq-cta-box{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    padding:28px;
}

.faq-cta-box h3{
    font-size:24px;
    line-height:1.2;
    color:#fff;
    font-family:'Barlow Condensed', sans-serif;
    margin-bottom:18px;
}

.faq-cta-box a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#d35400;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    transition:0.3s;
}

.faq-cta-box a:hover{
    color:#fff;
}

/* RIGHT */

.faq-right{
    border-top:1px solid rgba(255,255,255,0.08);
}

/* ITEM */

.faq-item{
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

/* QUESTION */

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    padding:24px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    cursor:pointer;
    text-align:left;
}

/* QUESTION TEXT */

.faq-question span{
    font-size:22px;
    line-height:1.5;
    color:#fff;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    transition:0.3s;
}

.faq-item.active .faq-question span{
    color:#d35400;
}

/* ICON */

.faq-icon{
    width:42px;
    height:42px;
    min-width:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    font-size:24px;
    transition:0.3s;
}

.faq-item.active .faq-icon{
    background:#d35400;
    border-color:#d35400;
    transform:rotate(45deg);
}

/* ANSWER */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.45s ease;
}

/* ACTIVE */

.faq-item.active .faq-answer{
    max-height:1200px;
}

/* INNER */

.faq-answer-inner{
    padding:0 0 28px;
    color:rgba(255,255,255,0.62);
    font-size:15px;
    line-height:1.9;
}

/* STRONG */

.faq-answer-inner strong{
    color:#fff;
    font-weight:600;
}

/* UL */

.faq-answer-inner ul{
    margin:14px 0;
    padding-left:18px;
}

/* LI */

.faq-answer-inner ul li{
    margin-bottom:10px;
    color:rgba(255,255,255,0.62);
    line-height:1.8;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

    .faq-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .faq-left{
        position:relative;
        top:auto;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .metal-faq-section{
        padding:40px 0;
    }

    .faq-left h2{
        font-size:34px;
    }

    .faq-question{
        padding:20px 0;
        align-items:flex-start;
    }

    .faq-question span{
        font-size:18px;
        line-height:1.5;
    }

    .faq-icon{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:18px;
    }

    .faq-answer-inner{
        font-size:14px;
        line-height:1.8;
        padding-bottom:22px;
    }

    .faq-cta-box{
        padding:22px;
    }

    .faq-cta-box h3{
        font-size:20px;
    }

}
@media(max-width:768px){

    .metal-hero-grid{
        display:flex;
        flex-direction:column;
        gap:0px;
        margin-top: 43px;
    }

    .metal-hero-left{
        display:contents;
    }

    .hero-topline{
        order:1;
    }

    .metal-hero-left h1{
        order:2;
        margin-bottom:0;
        margin-top: -29px;
    }

    .metal-hero-right{
        order:3;
        width:100%;
    }

    .hero-desc{
        margin-top: 20px;
        order:4;
    }

    .hero-tags{
        order:5;
    }

    .hero-btns{
        order:6;
    }

}