:root{

--primary:#155EEF;
--primary-dark:#0A3EA8;

--dark:#101828;
--heading:#111827;

--text: #7fcfff;

--muted:#667085;

--border:#EAECF0;

--surface:#FFFFFF;

--surface-2:#F9FAFB;

--radius:22px;

--transition:.35s cubic-bezier(.4,0,.2,1);

--shadow-sm:0 4px 10px rgba(16,24,40,.04);

--shadow:0 12px 35px rgba(16,24,40,.08);

--shadow-lg:0 25px 70px rgba(16,24,40,.12);

}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; }
a { text-decoration: none; }
img { max-width: 100%; }
.min-vh-75 { min-height: 75vh; }
.section-padding { padding: 40px 0; }

.topbar { background: var(--secondary); color: rgba(255,255,255,.82); font-size: .9rem; }
.topbar a { color: rgba(255,255,255,.86); transition: .2s ease; }
.topbar a:hover { color: #fff; }

.navbar-brand { max-width: 330px; }
.brand-logo { object-fit: contain; }
.brand-name { color: var(--secondary); letter-spacing: -.02em; line-height: 1.1; }
.brand-subtitle { color: var(--muted); font-size: .76rem; }
.navbar .nav-link { color: #3d4b5e; font-weight: 600; padding: .75rem .9rem !important; border-radius: .8rem; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); background: #eef6ff; }
.btn-primary { --bs-btn-bg: var(--primary); --bs-btn-border-color: var(--primary); --bs-btn-hover-bg: var(--primary-dark); --bs-btn-hover-border-color: var(--primary-dark); }
.btn-outline-primary { --bs-btn-color: var(--primary); --bs-btn-border-color: var(--primary); --bs-btn-hover-bg: var(--primary); --bs-btn-hover-border-color: var(--primary); }

.hero-section { background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 55%, #fff 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(8,104,200,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(8,104,200,.09) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-section::after { content: ""; position: absolute; right: -160px; top: -220px; width: 540px; height: 540px; border-radius: 50%; background: rgba(8,104,200,.08); filter: blur(2px); }
.eyebrow { display: inline-flex; align-items: center; color: var(--primary); background: #e9f4ff; border: 1px solid #cfe7ff; border-radius: 999px; padding: .48rem .85rem; text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight: 800; }
.eyebrow-light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.text-gradient { background: linear-gradient(110deg, var(--primary), #0aa0cf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 700px; }
.hero-points span { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: #405169; }
.hero-points i { color: #13a264; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-logo-card { position: relative; width: min(100%, 430px); min-height: 430px; border-radius: 42px; background: rgba(255,255,255,.92); border: 1px solid rgba(8,104,200,.15); box-shadow: var(--shadow); padding: 2.5rem; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.hero-logo-card::before { content: ""; position: absolute; right: -100px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, rgba(8,104,200,.18), rgba(237,28,36,.08)); }
.hero-mark { width: 290px; height: 260px; object-fit: contain; align-self: center; z-index: 1; }
.hero-card-content { position: relative; z-index: 2; }
.floating-card { position: absolute; display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border-radius: 16px; background: #fff; box-shadow: 0 14px 35px rgba(18,55,91,.16); font-weight: 700; font-size: .9rem; animation: float 4s ease-in-out infinite; }
.floating-card i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #eaf5ff; color: var(--primary); font-size: 1.2rem; }
.floating-card-one { left: -10px; top: 20%; }
.floating-card-two { right: -10px; bottom: 16%; animation-delay: 1.2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.brand-pill { display: inline-flex; padding: .5rem .9rem; border: 1px solid rgba(255,255,255,.2); background: red; border-radius: 999px; color: rgba(255,255,255,.85); font-size: .9rem; }
.section-heading { max-width: 760px; }
.section-heading p { font-size: 1.05rem; }
.solution-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 1.8rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; display: flex; flex-direction: column; }
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.solution-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(145deg, #e8f4ff, #f6fbff); color: var(--primary); font-size: 1.75rem; margin-bottom: 1.2rem; border: 1px solid #d7eaff; }
.solution-category { width: fit-content; color: var(--primary); font-weight: 800; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.solution-card h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: .8rem; }
.solution-card p { color: var(--muted); line-height: 1.7; }
.solution-link { margin-top: auto; font-weight: 800; color: var(--primary); }
.solution-link i { transition: .2s ease; }
.solution-card:hover .solution-link i { transform: translateX(5px); }

.about-image-wrap { position: relative; padding: 1.2rem; }
.about-image-wrap::before { content: ""; position: absolute; left: 0; bottom: 0; width: 65%; height: 65%; border-radius: 32px; background: #e8f4ff; z-index: -1; }
.about-badge { position: absolute; right: -5px; bottom: -5px; display: flex; gap: .8rem; align-items: center; background: #fff; padding: 1rem 1.2rem; border-radius: 18px; box-shadow: var(--shadow); }
.about-badge i { color: #13a264; font-size: 1.8rem; }
.about-badge span { font-size: .8rem; color: var(--muted); }
.about-badge strong { color: var(--ink); font-size: .95rem; }
.feature-box { display: flex; gap: .8rem; padding: 1rem; border-radius: 18px; background: #f7faff; border: 1px solid #e4edf7; }
.feature-box i { color: var(--primary); font-size: 1.4rem; }
.feature-box strong, .feature-box span { display: block; }
.feature-box span { color: var(--muted); font-size: .83rem; margin-top: .2rem; }

.partner-section { background: radial-gradient(circle at 85% 15%, rgba(24,133,235,.35), transparent 30%), linear-gradient(135deg, #071c31, #0f365c); }
.partner-card { height: 100%; background: #fff; border-radius: 24px; padding: 1.2rem; display: flex; flex-direction: column; box-shadow: 0 20px 45px rgba(0,0,0,.2); }
.partner-card img { width: 100%; height: 190px; object-fit: contain; border-radius: 16px; background: #fff; margin-bottom: 1rem; }
.partner-card strong { font-size: 1.1rem; }
.partner-card span { color: var(--muted); font-size: .86rem; margin-top: .25rem; }

.process-card { position: relative; height: 100%; padding: 1.5rem; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.process-card > span { position: absolute; top: 1.2rem; right: 1.2rem; color: #d4e8fb; font-weight: 900; font-size: 2.2rem; }
.process-card > i { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: #eef7ff; color: var(--primary); font-size: 1.5rem; margin-bottom: 1.25rem; }
.process-card h4 { font-size: 1.15rem; font-weight: 800; }
.process-card p { color: var(--muted); margin-bottom: 0; }
.cta-section { background: #f4f8fd; }
.cta-box { border-radius: 30px; background: linear-gradient(135deg, #fff, #edf6ff); border: 1px solid #d6e9fa; box-shadow: 0 20px 50px rgba(20,79,131,.09); }

.page-hero { position: relative; background: radial-gradient(circle at 80% 20%, rgba(36,142,240,.35), transparent 32%), linear-gradient(135deg, #071c31, #0e4c83); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 720px; }
.page-hero-small { text-align: left; }
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,.75); }
.breadcrumb-light .breadcrumb-item.active { color: #fff; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.55); }

.contact-highlight { display: flex; align-items: center; gap: 1rem; background: #f0f7ff; border: 1px solid #d7eaff; padding: 1rem 1.2rem; border-radius: 18px; }
.contact-highlight i { font-size: 2rem; color: var(--primary); }
.contact-highlight span, .contact-highlight strong, .contact-highlight a { display: block; }
.contact-highlight span { color: var(--muted); font-size: .8rem; }
.contact-highlight strong { font-size: 1.2rem; }
.contact-highlight a { color: var(--primary); font-weight: 700; }
.value-card { padding: 2rem; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 35px rgba(24,66,105,.06); }
.value-card i { font-size: 2rem; color: var(--primary); }
.value-card h3 { margin: 1rem 0 .6rem; font-weight: 800; }
.value-card p { color: var(--muted); margin: 0; }
.info-list { display: grid; gap: .8rem; }
.info-list > div { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 16px; background: #f7faff; border: 1px solid #e4edf7; }
.info-list i { color: var(--primary); font-size: 1.25rem; margin-top: .15rem; }
.info-list small, .info-list strong { display: block; }
.info-list small { color: var(--muted); }

.filter-panel { padding: 1rem; border: 1px solid var(--border); background: #f8fbff; border-radius: 20px; }
.filter-btn { border: 1px solid #cfe0f1; background: #fff; color: #465a70; border-radius: 999px; font-weight: 700; padding: .55rem 1rem; }
.filter-btn:hover, .filter-btn.active { color: #fff; background: var(--primary); border-color: var(--primary); }
.solution-card-large .solution-icon { margin-bottom: 0; }
.solution-card-large h3 { margin-top: 1.3rem; }
.mini-feature-list { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .5rem; color: #53657a; font-size: .9rem; }
.mini-feature-list i { color: #13a264; margin-right: .5rem; }

.product-detail-visual { min-height: 420px; border-radius: 30px; position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #e9f5ff, #f8fbff); border: 1px solid #d4e7f9; }
.product-detail-icon { display: grid; place-items: center; width: 180px; height: 180px; border-radius: 48px; background: #fff; color: var(--primary); box-shadow: var(--shadow); font-size: 5rem; position: relative; z-index: 2; }
.product-detail-visual > span { position: absolute; bottom: 1.5rem; left: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.machine-lines { position: absolute; inset: -20%; background: repeating-radial-gradient(circle, rgba(8,104,200,.08) 0 1px, transparent 2px 42px); transform: rotate(-12deg); }
.detail-feature { display: flex; gap: .7rem; align-items: center; padding: .9rem 1rem; border-radius: 14px; background: #f8fbff; border: 1px solid #e0ebf5; font-weight: 700; }
.detail-feature i { color: #13a264; }
.notice-box { display: flex; align-items: flex-start; gap: .8rem; padding: 1rem 1.2rem; border-radius: 16px; background: #fff9e8; border: 1px solid #f4dda1; color: #725a1f; }
.notice-box i { font-size: 1.2rem; }
.quote-card { top: 110px; padding: 2rem; border-radius: 26px; border: 1px solid var(--border); box-shadow: var(--shadow); background: #fff; }
.quote-list { list-style: none; padding: 0; display: grid; gap: .7rem; color: #53657a; }
.quote-list i { color: #13a264; margin-right: .5rem; }

.contact-methods { display: grid; gap: .8rem; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 18px; border: 1px solid var(--border); background: #fff; color: var(--ink); transition: .2s ease; }
.contact-methods > a:hover { border-color: #afd2f3; transform: translateY(-2px); }
.contact-methods > a > i, .contact-methods > div > i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: #eef7ff; color: var(--primary); font-size: 1.2rem; flex: 0 0 auto; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: var(--muted); }
.contact-methods strong { word-break: break-word; }
.business-person-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--secondary); color: #fff; border-radius: 18px; }
.business-person-card img { width: 78px; height: 78px; object-fit: contain; background: #fff; border-radius: 18px; padding: .35rem; }
.business-person-card small, .business-person-card strong, .business-person-card span { display: block; }
.business-person-card small, .business-person-card span { color: rgba(255,255,255,.7); }
.business-person-card strong { font-size: 1.35rem; }
.form-card { padding: 2rem; border-radius: 26px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); }
.form-control, .input-group-text { border-color: #cfdae6; }
.form-control:focus { border-color: #7fb9ef; box-shadow: 0 0 0 .25rem rgba(8,104,200,.12); }

/*==================================================
    PREMIUM FOOTER
==================================================*/

.site-footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#071827 0%,#04111d 100%);
    color:rgba(255,255,255,.75);
    padding:90px 0 0;
}

/* Background Glow */

.site-footer::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    top:-220px;
    right:-220px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(15,98,254,.18),
        transparent 70%);
    pointer-events:none;
}

.site-footer::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-220px;
    left:-220px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(0,188,212,.10),
        transparent 70%);
    pointer-events:none;
}

.site-footer .container{
    position:relative;
    z-index:2;
}

/*==================================================
COMPANY CARD
==================================================*/

.footer-company{

    height:100%;

    padding:32px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.footer-company:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,.15);

    box-shadow:0 20px 60px rgba(0,0,0,.20);

}

/*==================================================
LOGO
==================================================*/

.footer-logo{

    width:72px;

    height:72px;

    object-fit:contain;

    background:#fff;

    border-radius:18px;

    padding:10px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.footer-company h5{

    margin:0;

    color:#fff;

    font-size:24px;

    font-weight:700;

}

.footer-copy{

    margin-top:20px;

    line-height:1.9;

    color:rgba(255,255,255,.70);

}

/*==================================================
HEADINGS
==================================================*/

.site-footer h5{

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

}

.site-footer h5::after{

    content:"";

    width:45px;

    height:3px;

    border-radius:20px;

    background:#0F62FE;

    display:block;

    margin-top:10px;

}

/*==================================================
LINKS
==================================================*/

.footer-links{

    display:grid;

    gap:14px;

    margin:0;

    padding:0;

}

.footer-links li{

    list-style:none;

}

.footer-links a{

    color:rgba(255,255,255,.72);

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.footer-links a::before{

    content:"›";

    color:#0F62FE;

    font-size:18px;

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(6px);

}

/*==================================================
CONTACT
==================================================*/

.footer-contact{

    list-style:none;

    margin:0;

    padding:0;

    display:grid;

    gap:18px;

}

.footer-contact li{

    display:flex;

    gap:14px;

    align-items:flex-start;

}

.footer-contact i{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(15,98,254,.15);

    color:#73BAFF;

    font-size:20px;

    flex-shrink:0;

}

.footer-contact a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:#fff;

}

.footer-contact span{

    color:rgba(255,255,255,.72);

    line-height:1.7;

}

/*==================================================
SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:14px;

    margin-top:28px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#0F62FE;

    border-color:#0F62FE;

    transform:translateY(-5px);

}

/*==================================================
BOTTOM BAR
==================================================*/

.footer-bottom{

    margin-top:60px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

    color:rgba(255,255,255,.65);

    font-size:14px;

}

.footer-bottom strong{

    color:#fff;

    font-weight:600;

}

.footer-credit{

    color:#73BAFF;

    text-decoration:none;

    transition:.3s;

}

.footer-credit:hover{

    color:#fff;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.site-footer{

padding-top:20px;

text-align:center;

}

.footer-company{

margin-bottom:10px;

}

.footer-logo{

margin:0 auto;

}

.footer-company .d-flex{

justify-content:center;

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:768px){

.site-footer{

padding-top:60px;

}

.footer-company{

padding:10px;

}

.footer-bottom{

text-align:center;

}

.footer-copy{

font-size:15px;

}

}

.back-to-top, .whatsapp-float { position: fixed; right: 22px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; z-index: 1040; box-shadow: 0 10px 25px rgba(0,0,0,.22); transition: .2s ease; }
.back-to-top { bottom: 82px; background: var(--primary); opacity: 0; pointer-events: none; transform: translateY(12px); }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float { bottom: 22px; background: #17a864; font-size: 1.35rem; }
.back-to-top:hover, .whatsapp-float:hover { color: #fff; transform: translateY(-3px); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
    .section-padding { padding: 72px 0; }
    .navbar-brand { max-width: 250px; }
    .brand-name { font-size: .96rem; }
    .brand-subtitle { display: none; }
    .hero-visual { min-height: 460px; }
    .floating-card-one { left: 0; }
    .floating-card-two { right: 0; }
    .quote-card { position: static !important; }
}
@media (max-width: 575.98px) {
    .section-padding { padding: 58px 0; }
    .hero-section h1 { font-size: 2.55rem; }
    .hero-logo-card { min-height: 380px; padding: 1.5rem; }
    .hero-mark { width: 240px; height: 230px; }
    .hero-visual { min-height: 430px; }
    .floating-card { font-size: .75rem; padding: .65rem .8rem; }
    .floating-card i { width: 32px; height: 32px; }
    .about-badge { position: relative; right: auto; bottom: auto; margin-top: -12px; }
    .form-card { padding: 1.25rem; }
    .product-detail-visual { min-height: 330px; }
    .product-detail-icon { width: 145px; height: 145px; font-size: 4rem; }
}


/* Product visuals and graphics */
.hero-machine-graphic { width: 100%; height: 265px; object-fit: contain; position: relative; z-index: 1; border-radius: 24px; }
.hero-brand-badge { position: absolute; top: 1.3rem; left: 1.3rem; z-index: 3; display: inline-flex; align-items: center; gap: .65rem; padding: .5rem .8rem; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(8,104,200,.15); box-shadow: 0 10px 28px rgba(18,55,91,.12); font-size: .75rem; font-weight: 800; color: var(--secondary); }
.hero-brand-badge img { width: 34px; height: 34px; object-fit: contain; }
.solution-image-wrap { position: relative; display: block; height: 205px; margin: -1rem -1rem 1.15rem; border-radius: 19px; overflow: hidden; background: linear-gradient(145deg,#eff8ff,#f9fcff); border: 1px solid #dceaf7; }
.solution-image-wrap-large { height: 230px; margin: -1rem -1rem .3rem; }
.solution-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.solution-card:hover .solution-image { transform: scale(1.045); }
.solution-image-icon { position: absolute; right: 12px; bottom: 12px; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.94); color: var(--primary); font-size: 1.2rem; box-shadow: 0 10px 25px rgba(17,56,94,.16); }
.machine-gallery-section { background: linear-gradient(180deg,#071c31 0%,#0f365c 100%); color: #fff; }
.machine-gallery-section .section-heading p, .machine-gallery-section p { color: rgba(255,255,255,.62) !important; }
.machine-gallery-section .eyebrow { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); }
.machine-gallery-section .btn-outline-primary { --bs-btn-color:#fff; --bs-btn-border-color:rgba(255,255,255,.5); --bs-btn-hover-bg:#fff; --bs-btn-hover-border-color:#fff; --bs-btn-hover-color:#0f2844; }
.gallery-card { position: relative; display: block; min-height: 280px; border-radius: 26px; overflow: hidden; background: #fff; box-shadow: 0 18px 44px rgba(0,0,0,.2); }
.gallery-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .45s ease; }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(3,17,31,.9) 0%,rgba(3,17,31,.08) 62%); }
.gallery-card:hover img { transform: scale(1.055); }
.gallery-card-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: .15rem 1rem; color: #fff; }
.gallery-card-overlay small { grid-column: 1; text-transform: uppercase; letter-spacing: .09em; color: #72c3ff; font-weight: 800; }
.gallery-card-overlay strong { grid-column: 1; font-size: 1.15rem; }
.gallery-card-overlay i { grid-column: 2; grid-row: 1 / span 2; font-size: 1.75rem; }
.product-detail-image-visual { display: block; background: #f4f9fd; }
.product-detail-image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.product-detail-caption { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2; display: inline-flex; align-items: center; gap: .65rem; padding: .7rem 1rem; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--primary); box-shadow: 0 12px 30px rgba(17,56,94,.14); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .78rem; }
.related-product-card { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; align-items: center; height: 100%; padding: .8rem; border-radius: 22px; background: #fff; border: 1px solid var(--border); color: var(--ink); transition: .25s ease; }
.related-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.related-product-card img { width: 150px; height: 120px; object-fit: cover; border-radius: 16px; background: #edf6ff; }
.related-product-card small, .related-product-card strong, .related-product-card span { display: block; }
.related-product-card small { color: var(--primary); font-size: .72rem; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.related-product-card strong { margin-top: .3rem; font-size: 1rem; }
.related-product-card span { margin-top: .7rem; color: var(--primary); font-weight: 800; font-size: .82rem; }
@media (max-width: 575.98px) {
    .hero-machine-graphic { height: 225px; }
    .hero-brand-badge { position: relative; top: auto; left: auto; align-self: flex-start; margin-bottom: .5rem; }
    .solution-image-wrap { height: 190px; }
    .gallery-card, .gallery-card img { min-height: 235px; height: 235px; }
    .product-detail-image { min-height: 300px; }
    .related-product-card { grid-template-columns: 112px 1fr; }
    .related-product-card img { width: 112px; height: 100px; }
}

/* Advanced product catalogue */
.product-card-flags{position:absolute;top:1rem;left:1rem;z-index:3;display:flex;flex-wrap:wrap;gap:.35rem;max-width:75%}.solution-card{position:relative}.product-card-flags span,.product-status-badge{display:inline-flex;align-items:center;padding:.35rem .65rem;border-radius:999px;background:#fff3cd;color:#765b00;border:1px solid #ffe69c;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.image-count-badge{position:absolute;left:12px;bottom:12px;display:inline-flex;align-items:center;gap:.35rem;padding:.38rem .65rem;border-radius:999px;background:rgba(7,24,41,.82);color:#fff;font-size:.72rem;font-weight:700}.product-card-specs{display:flex;flex-wrap:wrap;gap:.45rem;margin:.65rem 0 1rem}.product-card-specs span{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .55rem;border-radius:9px;background:#f0f6fb;color:#476079;font-size:.75rem;font-weight:700}.product-compare-control{border-top:1px solid #e3ebf2;margin-top:1rem;padding-top:.85rem;color:#4d6277;font-weight:700}.compare-floating-bar{position:fixed;left:50%;bottom:20px;transform:translateX(-50%);width:min(920px,calc(100% - 28px));z-index:1050;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.2rem;border-radius:18px;background:#071c31;color:#fff;box-shadow:0 20px 55px rgba(0,0,0,.32)}.compare-floating-bar strong,.compare-floating-bar small{display:block}.compare-floating-bar small{color:rgba(255,255,255,.62);max-width:620px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-gallery{background:#f3f8fc;border:1px solid #dbe8f3;border-radius:26px;padding:1rem;overflow:hidden}.product-gallery-main{width:100%;height:480px;object-fit:contain;border-radius:18px;background:#fff}.product-gallery .carousel-control-prev,.product-gallery .carousel-control-next{width:48px;height:48px;top:50%;transform:translateY(-50%);border-radius:50%;background:rgba(7,28,49,.75)}.product-gallery .carousel-control-prev{left:24px}.product-gallery .carousel-control-next{right:24px}.product-gallery-thumbs{display:flex;gap:.65rem;overflow-x:auto;padding-top:1rem}.product-gallery-thumbs button{border:2px solid transparent;border-radius:12px;padding:0;background:#fff;flex:0 0 auto}.product-gallery-thumbs button.active{border-color:var(--primary)}.product-gallery-thumbs img{width:76px;height:62px;object-fit:cover;border-radius:9px}.specification-table{border:1px solid #dfe8f0;border-radius:16px;overflow:hidden}.specification-table th{width:34%;background:#f4f8fb;color:#334d66}.specification-table th,.specification-table td{padding:1rem;border-color:#e3ebf2}.product-video{width:100%;height:280px;object-fit:contain;border-radius:18px;background:#071829}.product-video-frame{border-radius:18px;overflow:hidden;background:#071829}.external-video-link{min-height:220px;display:grid;place-items:center;align-content:center;gap:.6rem;border:1px dashed #aac2d8;border-radius:18px;background:#f5f9fc;color:var(--primary);font-weight:800}.external-video-link i{font-size:3rem}.document-download-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.document-download-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem;padding:1rem 1.15rem;border:1px solid #dce6ef;border-radius:16px;background:#fff;color:#233b52;transition:.2s ease}.document-download-card:hover{transform:translateY(-3px);border-color:#a9cfee;box-shadow:0 12px 30px rgba(20,54,85,.08)}.document-download-card>i:first-child{font-size:2rem;color:#dc3545}.document-download-card strong,.document-download-card small{display:block}.document-download-card small{color:#72869a}.quick-machine-info{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem;margin:1.2rem 0}.quick-machine-info div{padding:.8rem;border-radius:12px;background:#f3f8fc;border:1px solid #e0eaf3}.quick-machine-info small,.quick-machine-info strong{display:block}.quick-machine-info small{color:#708397;font-size:.72rem}.quick-machine-info strong{font-size:.9rem;margin-top:.2rem}.compare-picker{padding:1.25rem;border:1px solid #dce6ef;border-radius:20px;background:#fff;box-shadow:0 10px 30px rgba(22,55,86,.05)}.empty-compare-state{text-align:center;padding:5rem 1rem;border:1px dashed #b8cad9;border-radius:24px;background:#f8fbfd}.empty-compare-state i{font-size:4rem;color:#8aa7c0}.empty-compare-state p{color:#6e8294;max-width:560px;margin:0 auto 1.5rem}.compare-table-wrap{border:1px solid #dce6ef;border-radius:20px;overflow:auto;background:#fff}.compare-table{min-width:900px;margin:0}.compare-table th,.compare-table td{padding:1rem;vertical-align:top;border-color:#e3ebf2}.compare-table thead th{background:#f5f9fc;text-align:center;min-width:220px}.compare-table thead th:first-child,.compare-label-column{min-width:170px;text-align:left}.compare-table thead a{display:grid;gap:.55rem;color:#20384f}.compare-table thead img{width:100%;height:150px;object-fit:contain;border-radius:14px;background:#fff}.compare-table thead strong,.compare-table thead small{display:block}.compare-table tbody th{background:#f8fbfd;color:#3b536a}.compare-feature-list{list-style:none;padding:0;margin:0;display:grid;gap:.45rem}.compare-feature-list li{display:flex;gap:.45rem;align-items:flex-start}.compare-feature-list i{color:#17a864;margin-top:.15rem}
@media(max-width:767px){.compare-floating-bar{align-items:stretch;flex-direction:column}.compare-floating-bar>div:last-child{width:100%}.compare-floating-bar .btn{flex:1}.product-gallery-main{height:320px}.document-download-grid{grid-template-columns:1fr}.quick-machine-info{grid-template-columns:1fr}.product-video{height:220px}}

/* Responsive product detail and spare parts catalogue */
.product-page-title { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.08; max-width: 1050px; overflow-wrap: anywhere; }
.product-breadcrumb-wrap { overflow-x: auto; scrollbar-width: none; }
.product-breadcrumb-wrap::-webkit-scrollbar { display: none; }
.product-breadcrumb-wrap .breadcrumb { min-width: max-content; }
.product-main-section { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.product-content-panel { padding: clamp(1.2rem, 3vw, 2rem); border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: 0 14px 42px rgba(17,56,94,.07); }
.product-description { font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.8; overflow-wrap: anywhere; }
.product-quote-card { max-width: 100%; overflow: hidden; }
.product-quote-card .btn { white-space: normal; }
.product-spec-section { min-width: 0; }
.product-spec-table-wrap { border-radius: 16px; }
.mobile-product-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1060; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; padding: .75rem max(.8rem, env(safe-area-inset-left)) calc(.75rem + env(safe-area-inset-bottom)) max(.8rem, env(safe-area-inset-right)); background: rgba(255,255,255,.96); border-top: 1px solid #dbe6ef; box-shadow: 0 -10px 30px rgba(10,39,66,.12); backdrop-filter: blur(12px); }
.mobile-product-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 46px; border-radius: 13px; font-weight: 800; }
.product-detail-page { padding-bottom: 74px; }

.spare-parts-intro { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.spare-parts-intro > div { display: grid; grid-template-columns: auto 1fr; gap: .25rem .8rem; align-items: start; padding: 1rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(20,54,85,.05); }
.spare-parts-intro i { grid-row: 1 / span 2; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: #eaf5ff; color: var(--primary); font-size: 1.25rem; }
.spare-parts-intro strong, .spare-parts-intro span { display: block; }
.spare-parts-intro span { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.spare-part-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.spare-part-card:hover { transform: translateY(-6px); border-color: #b9d9f8; box-shadow: var(--shadow); }
.spare-part-image { position: relative; display: block; height: 245px; overflow: hidden; background: #f1f6fa; }
.spare-part-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.spare-part-card:hover .spare-part-image img { transform: scale(1.04); }
.spare-part-image > span { position: absolute; left: .85rem; bottom: .85rem; display: inline-flex; align-items: center; gap: .4rem; max-width: calc(100% - 1.7rem); padding: .45rem .7rem; border-radius: 999px; background: rgba(7,28,49,.86); color: #fff; font-size: .72rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spare-part-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; min-width: 0; }
.spare-part-body h2 { overflow-wrap: anywhere; }
.spare-part-meta { display: flex; flex-wrap: wrap; gap: .45rem; }
.spare-part-meta span { display: inline-flex; align-items: center; gap: .35rem; max-width: 100%; padding: .38rem .55rem; border-radius: 9px; background: #f0f6fb; color: #476079; font-size: .74rem; font-weight: 700; overflow-wrap: anywhere; }
.home-spare-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--ink); transition: .25s ease; }
.home-spare-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.home-spare-card img { width: 100%; height: 190px; object-fit: cover; background: #f1f6fa; }
.home-spare-card span { margin: 1rem 1rem .35rem; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.home-spare-card strong { margin: 0 1rem; overflow-wrap: anywhere; }
.home-spare-card small { margin: auto 1rem 1rem; padding-top: .8rem; color: var(--primary); font-weight: 800; }

@media (max-width: 1199.98px) {
    .product-gallery-main { height: 430px; }
    .quote-card { padding: 1.5rem; }
}

@media (max-width: 991.98px) {
    .product-main-section { padding-top: 48px; }
    .product-quote-card { position: static !important; }
    .spare-parts-intro { grid-template-columns: 1fr; }
    .navbar-collapse { max-height: calc(100vh - 90px); overflow-y: auto; padding-bottom: .75rem; }
}

@media (max-width: 767.98px) {
    .product-page-hero .container { padding-top: 1.8rem !important; padding-bottom: 1.8rem !important; }
    .product-gallery { padding: .65rem; border-radius: 20px; }
    .product-gallery-main { height: min(68vw, 360px); min-height: 245px; border-radius: 14px; }
    .product-gallery .carousel-control-prev, .product-gallery .carousel-control-next { width: 40px; height: 40px; }
    .product-gallery .carousel-control-prev { left: 12px; }
    .product-gallery .carousel-control-next { right: 12px; }
    .product-gallery-thumbs { gap: .5rem; padding-top: .65rem; }
    .product-gallery-thumbs img { width: 62px; height: 52px; }
    .product-content-panel { border-radius: 18px; }
    .specification-table, .specification-table tbody, .specification-table tr, .specification-table th, .specification-table td { display: block; width: 100%; }
    .specification-table tr { padding: .8rem 0; border-bottom: 1px solid #e3ebf2; }
    .specification-table tr:last-child { border-bottom: 0; }
    .specification-table th { padding: 0 1rem .25rem; border: 0; background: transparent; color: var(--primary); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
    .specification-table td { padding: 0 1rem; border: 0; overflow-wrap: anywhere; }
    .related-product-card { grid-template-columns: 105px minmax(0,1fr); gap: .8rem; }
    .related-product-card img { width: 105px; height: 98px; }
    .related-product-card strong { overflow-wrap: anywhere; }
    .document-download-card { grid-template-columns: auto minmax(0,1fr) auto; padding: .9rem; }
    .spare-part-image { height: 220px; }
    .product-detail-page .whatsapp-float { display: none; }
    .product-detail-page .back-to-top { bottom: 88px; }
}

@media (max-width: 575.98px) {
    .navbar-brand { max-width: calc(100% - 72px); }
    .brand-logo { width: 44px; height: 44px; }
    .brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
    .page-hero .display-4 { font-size: 2.25rem; }
    .filter-panel { padding: .85rem; }
    .filter-panel .form-select-lg, .filter-panel .form-control, .filter-panel .input-group-text { font-size: 1rem; }
    .filter-btn { padding: .48rem .75rem; font-size: .8rem; }
    .solution-card { padding: 1.25rem; border-radius: 20px; }
    .solution-image-wrap-large { height: 220px; }
    .product-card-flags { top: .75rem; left: .75rem; max-width: calc(100% - 1.5rem); }
    .product-card-flags span { font-size: .62rem; padding: .28rem .48rem; }
    .quick-machine-info { grid-template-columns: repeat(2, minmax(0,1fr)); gap: .5rem; }
    .quick-machine-info div { padding: .65rem; min-width: 0; }
    .quick-machine-info strong { overflow-wrap: anywhere; font-size: .82rem; }
    .product-content-panel { padding: 1rem; }
    .detail-feature { align-items: flex-start; padding: .8rem; }
    .related-product-card { grid-template-columns: 90px minmax(0,1fr); padding: .6rem; border-radius: 17px; }
    .related-product-card img { width: 90px; height: 88px; border-radius: 12px; }
    .related-product-card span { margin-top: .4rem; }
    .spare-part-image { height: 205px; }
    .spare-part-body { padding: 1rem; }
    .home-spare-card img { height: 175px; }
}

/* E-commerce product media gallery */
.commerce-product-gallery {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas: "thumbs stage";
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #dce8f2;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(16, 51, 82, .08);
    outline: none;
}
.commerce-product-gallery:focus-visible {
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .14), 0 18px 50px rgba(16, 51, 82, .08);
}
.commerce-gallery-thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    max-height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: .15rem .2rem .15rem 0;
    scrollbar-width: thin;
}
.commerce-gallery-thumb {
    position: relative;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    display: grid;
    place-items: center;
    padding: 4px;
    border: 2px solid #e1e9f0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.commerce-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: #98bddd;
}
.commerce-gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .12);
}
.commerce-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.commerce-gallery-video-thumb {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .15rem;
    border-radius: 9px;
    background: linear-gradient(145deg, #071c31, #123f68);
    color: #fff;
}
.commerce-gallery-video-thumb i { font-size: 1.65rem; }
.commerce-gallery-video-thumb small { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.commerce-gallery-stage {
    grid-area: stage;
    position: relative;
    min-width: 0;
    border-radius: 20px;
    background: #f5f8fb;
    overflow: hidden;
}
.commerce-gallery-viewer {
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 3.8rem 3.6rem 3.2rem;
    touch-action: pan-y;
}
.commerce-gallery-main-image {
    width: 100%;
    height: 490px;
    object-fit: contain;
    cursor: zoom-in;
    user-select: none;
}
.commerce-gallery-main-video,
.commerce-gallery-main-frame {
    width: 100%;
    height: 455px;
    border: 0;
    border-radius: 16px;
    background: #071829;
}
.commerce-gallery-main-video { object-fit: contain; }
.commerce-gallery-external-video {
    width: min(520px, 90%);
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .55rem;
    border: 1px dashed #90adc6;
    border-radius: 22px;
    background: #fff;
    color: var(--primary);
    text-align: center;
}
.commerce-gallery-external-video i { font-size: 4rem; }
.commerce-gallery-external-video strong { font-size: 1.1rem; }
.commerce-gallery-external-video span { color: #6d8295; font-size: .85rem; }
.commerce-gallery-toolbar {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: .55rem;
    pointer-events: none;
}
.commerce-gallery-counter,
.commerce-gallery-kind {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .42rem .72rem;
    border: 1px solid rgba(24, 57, 87, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #2c465f;
    box-shadow: 0 7px 20px rgba(12, 42, 70, .08);
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(7px);
}
.commerce-gallery-expand {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(24, 57, 87, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: #183a58;
    box-shadow: 0 8px 22px rgba(12, 42, 70, .12);
    pointer-events: auto;
}
.commerce-gallery-expand:hover { background: var(--primary); color: #fff; }
.commerce-gallery-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 28, 49, .82);
    color: #fff;
    box-shadow: 0 8px 20px rgba(7, 28, 49, .22);
}
.commerce-gallery-nav:hover { background: var(--primary); }
.commerce-gallery-prev { left: 16px; }
.commerce-gallery-next { right: 16px; }
.commerce-gallery-caption {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .48rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #577086;
    box-shadow: 0 7px 18px rgba(12, 42, 70, .08);
    font-size: .72rem;
    text-align: center;
}
.product-media-modal .modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .28);
}
.product-media-modal .modal-header { border-bottom: 1px solid #e5edf4; }
.product-media-modal .modal-body {
    min-height: min(74vh, 760px);
    display: grid;
    place-items: center;
    padding: 1rem;
    background: #eef3f7;
}
.product-modal-image {
    width: 100%;
    height: min(70vh, 720px);
    object-fit: contain;
}
.product-modal-video,
.product-modal-frame {
    width: min(1100px, 100%);
    height: min(68vh, 680px);
    border: 0;
    border-radius: 16px;
    background: #071829;
}
.product-modal-video { object-fit: contain; }

/* PDF document cards */
.product-documents-section {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f6f9fc);
    box-shadow: 0 14px 42px rgba(17, 56, 94, .07);
}
.product-documents-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}
.product-documents-count {
    min-width: 105px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: .45rem;
    padding: .8rem 1rem;
    border: 1px solid #f0c8cd;
    border-radius: 16px;
    background: #fff5f6;
    color: #b42331;
}
.product-documents-count i { grid-row: 1 / span 2; font-size: 1.9rem; }
.product-documents-count strong { font-size: 1.2rem; line-height: 1; }
.product-documents-count span { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.product-document-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.product-document-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 1.15rem;
    border: 1px solid #dbe5ed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 55, 86, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-document-card:hover {
    transform: translateY(-4px);
    border-color: #a8c9e3;
    box-shadow: 0 18px 38px rgba(22, 55, 86, .11);
}
.product-document-icon {
    width: 58px;
    height: 64px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .1rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #dc3545, #a90f20);
    color: #fff;
    box-shadow: 0 10px 24px rgba(220, 53, 69, .2);
}
.product-document-icon i { font-size: 1.65rem; }
.product-document-icon span { font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.product-document-content { flex: 1; min-width: 0; }
.product-document-type { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.product-document-content h4 { margin: .4rem 0 .55rem; font-size: 1.1rem; font-weight: 800; color: #203b54; }
.product-document-content p { min-height: 3.1em; margin-bottom: .9rem; color: #6b7f91; font-size: .88rem; }
.product-document-meta {
    display: grid;
    gap: .35rem;
    min-width: 0;
    color: #71879a;
    font-size: .73rem;
}
.product-document-meta span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-document-meta i { flex: 0 0 auto; }
.product-document-actions {
    display: grid;
    gap: .55rem;
    margin-top: 1.15rem;
}
.product-document-actions .btn { font-weight: 800; }

@media (max-width: 1199px) {
    .commerce-gallery-viewer { min-height: 500px; }
    .commerce-gallery-main-image { height: 430px; }
    .product-document-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .commerce-product-gallery {
        grid-template-columns: 1fr;
        grid-template-areas: "stage" "thumbs";
        gap: .7rem;
        padding: .65rem;
        border-radius: 20px;
    }
    .commerce-gallery-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: .1rem 0 .2rem;
    }
    .commerce-gallery-thumb {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        border-radius: 12px;
    }
    .commerce-gallery-stage { border-radius: 15px; }
    .commerce-gallery-viewer {
        min-height: min(98vw, 410px);
        padding: 3rem 2.25rem 3.1rem;
    }
    .commerce-gallery-main-image { height: min(72vw, 340px); }
    .commerce-gallery-main-video,
    .commerce-gallery-main-frame { height: min(60vw, 300px); border-radius: 12px; }
    .commerce-gallery-kind { display: none; }
    .commerce-gallery-toolbar { top: 10px; left: 10px; right: 10px; }
    .commerce-gallery-counter { min-height: 31px; padding: .35rem .62rem; }
    .commerce-gallery-expand { width: 34px; height: 34px; }
    .commerce-gallery-nav { width: 38px; height: 38px; }
    .commerce-gallery-prev { left: 8px; }
    .commerce-gallery-next { right: 8px; }
    .commerce-gallery-caption {
        bottom: 8px;
        max-width: calc(100% - 16px);
        border-radius: 12px;
        font-size: .65rem;
    }
    .product-documents-section { padding: 1rem; border-radius: 18px; }
    .product-documents-heading { align-items: flex-start; }
    .product-documents-count { min-width: 92px; padding: .65rem .75rem; }
    .product-document-card-grid { grid-template-columns: 1fr; }
    .product-document-content p { min-height: auto; }
}
@media (max-width: 420px) {
    .product-documents-heading { flex-direction: column; }
    .product-documents-count { width: 100%; grid-template-columns: auto auto auto; grid-template-rows: auto; }
    .product-documents-count i { grid-row: auto; }
}

/* Suote-inspired industrial product details layout */
.suote-inspired-product-page { background: #f5f6f8; }
.suote-breadcrumb-bar { background: #fff; border-top: 1px solid #eef1f4; border-bottom: 1px solid #e5e8ec; }
.suote-breadcrumb-bar .container { padding-top: 1rem; padding-bottom: 1rem; }
.suote-breadcrumb-bar .breadcrumb { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; font-size: .86rem; }
.suote-breadcrumb-bar .breadcrumb::-webkit-scrollbar { display: none; }
.suote-breadcrumb-bar .breadcrumb-item { min-width: max-content; }
.suote-breadcrumb-bar .breadcrumb-item a { color: #667383; }
.suote-breadcrumb-bar .breadcrumb-item.active { color: var(--primary); max-width: min(430px, 45vw); }
.suote-product-main { padding: 42px 0 76px; }
.suote-sidebar-stack { top: 108px; display: grid; gap: 1.25rem; }
.suote-category-card, .suote-contact-card, .suote-showcase-card, .suote-content-card, .suote-inquiry-card { background: #fff; border: 1px solid #e1e5e9; box-shadow: 0 8px 28px rgba(20, 39, 60, .06); }
.suote-category-card { overflow: hidden; }
.suote-sidebar-title { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 1.15rem; border: 0; background: var(--secondary); color: #fff; font-weight: 800; text-align: left; }
.suote-category-list, .suote-category-list ul { list-style: none; margin: 0; padding: 0; }
.suote-category-list > li { border-bottom: 1px solid #ebedf0; }
.suote-category-list > li:last-child { border-bottom: 0; }
.suote-category-list a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .86rem 1rem; color: #2e3c4d; font-size: .9rem; font-weight: 700; transition: .2s ease; }
.suote-category-list a:hover, .suote-category-list li.active > a { color: var(--primary); background: #edf6ff; }
.suote-category-list a small { min-width: 25px; padding: .12rem .38rem; border-radius: 999px; background: #eff2f5; color: #7b8794; text-align: center; font-size: .68rem; }
.suote-category-list li.active > a small { background: #d9edff; color: var(--primary); }
.suote-category-list ul { padding: .15rem 0 .55rem; background: #fafbfc; }
.suote-category-list ul a { padding: .55rem 1rem .55rem 1.7rem; font-size: .8rem; font-weight: 600; }
.suote-category-list ul a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #bcc5ce; margin-right: .15rem; }
.suote-category-list ul a span { margin-right: auto; }
.suote-contact-card { padding: 1.5rem; background: linear-gradient(145deg, var(--secondary), #174d78); color: #fff; }
.suote-contact-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 1rem; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 1.35rem; }
.suote-contact-card > span { color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.suote-contact-card h3 { margin: .45rem 0 1.15rem; font-size: 1.18rem; line-height: 1.4; }
.suote-contact-card a { display: flex; align-items: center; gap: .65rem; margin-top: .65rem; color: #fff; font-size: .88rem; font-weight: 700; }
.suote-showcase-card { overflow: hidden; }
.suote-gallery-wrap { height: 100%; min-height: 580px; padding: 1.25rem; background: #fbfcfd; border-right: 1px solid #e5e9ed; }
.suote-gallery-wrap .commerce-product-gallery { height: 100%; min-height: 535px; box-shadow: none; border: 0; border-radius: 0; background: transparent; }
.suote-gallery-wrap .commerce-gallery-stage { border-radius: 4px; background: #fff; border: 1px solid #e5e8ec; }
.suote-gallery-wrap .commerce-gallery-viewer { min-height: 445px; }
.suote-gallery-wrap .commerce-gallery-main-image { object-fit: contain; }
.suote-gallery-wrap .commerce-gallery-caption { display: none; }
.suote-gallery-wrap .commerce-gallery-toolbar { top: .75rem; left: .75rem; right: .75rem; }
.suote-gallery-wrap .commerce-gallery-thumbs { gap: .55rem; }
.suote-gallery-wrap .commerce-gallery-thumb { border-radius: 3px; }
.suote-product-summary { height: 100%; padding: clamp(1.6rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.suote-product-labels { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.suote-product-labels span { padding: .35rem .58rem; border-radius: 3px; background: #eef5fb; color: var(--primary); font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.suote-product-labels span:not(:first-child) { background: #fff3f3; color: #d62828; }
.suote-product-summary h1 { margin: 0; color: #1c2733; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.18; font-weight: 750; letter-spacing: -.025em; overflow-wrap: anywhere; }
.suote-product-lead { margin: 1.15rem 0; color: #677383; font-size: .98rem; line-height: 1.75; }
.suote-model-line { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; border-top: 1px solid #e7e9ec; border-bottom: 1px solid #e7e9ec; }
.suote-model-line span { color: #788391; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.suote-model-line strong { color: var(--primary); font-size: 1.1rem; }
.suote-quick-specs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; margin: 1rem 0 0; border: 1px solid #e6e9ec; }
.suote-quick-specs div { min-width: 0; padding: .8rem .9rem; border-right: 1px solid #e6e9ec; border-bottom: 1px solid #e6e9ec; }
.suote-quick-specs div:nth-child(2n) { border-right: 0; }
.suote-quick-specs div:nth-last-child(-n+2) { border-bottom: 0; }
.suote-quick-specs dt { margin-bottom: .2rem; color: #84909c; font-size: .67rem; text-transform: uppercase; letter-spacing: .06em; }
.suote-quick-specs dd { margin: 0; color: #263545; font-size: .87rem; font-weight: 750; overflow-wrap: anywhere; }
.suote-price-line { margin-top: 1.1rem; padding: .85rem 1rem; background: #f6f9fc; border-left: 4px solid var(--primary); }
.suote-price-line small, .suote-price-line strong { display: block; }
.suote-price-line small { color: #7e8995; font-size: .74rem; }
.suote-price-line strong { margin-top: .18rem; color: var(--primary); font-size: 1.15rem; }
.suote-product-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.suote-product-actions .btn { border-radius: 3px; font-size: .9rem; font-weight: 750; }
.suote-trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; margin-top: auto; padding-top: 1.4rem; color: #667484; font-size: .75rem; }
.suote-trust-row span { display: inline-flex; align-items: center; gap: .35rem; }
.suote-trust-row i { color: #1b9b5f; }
.suote-section-nav { position: sticky; top: 84px; z-index: 20; display: flex; gap: 0; margin-top: 1.5rem; overflow-x: auto; border: 1px solid #e1e5e9; background: #fff; box-shadow: 0 6px 20px rgba(24,39,55,.06); scrollbar-width: none; }
.suote-section-nav::-webkit-scrollbar { display: none; }
.suote-section-nav a { min-width: max-content; padding: .9rem 1.1rem; border-right: 1px solid #e8ebee; color: #44515f; font-size: .8rem; font-weight: 750; }
.suote-section-nav a:hover { color: #fff; background: var(--primary); }
.suote-content-card { margin-top: 1.5rem; padding: clamp(1.5rem, 3vw, 2.25rem); scroll-margin-top: 150px; }
.suote-content-heading { margin-bottom: 1.35rem; padding-bottom: .9rem; border-bottom: 2px solid #e7eaed; }
.suote-content-heading span { display: inline-block; margin-bottom: .35rem; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.suote-content-heading h2 { margin: 0; color: #1d2935; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 750; }
.suote-content-heading h2::after { content: ""; display: block; width: 58px; height: 3px; margin-top: .8rem; background: var(--primary); }
.suote-description-copy { color: #5e6b78; font-size: 1rem; line-height: 1.9; }
.suote-application-note { display: flex; gap: 1rem; margin-top: 1.4rem; padding: 1.1rem; border: 1px solid #dce9f5; background: #f4f9fe; }
.suote-application-note > i { color: var(--primary); font-size: 1.6rem; }
.suote-application-note strong, .suote-application-note span { display: block; }
.suote-application-note span { margin-top: .25rem; color: #667585; font-size: .88rem; line-height: 1.6; }
.suote-spec-table-wrap { border: 1px solid #e0e4e8; }
.suote-spec-table th, .suote-spec-table td { padding: .9rem 1rem; border-color: #e0e4e8; vertical-align: middle; }
.suote-spec-table th { width: 32%; background: #f4f6f8; color: #2d3b49; font-size: .86rem; }
.suote-spec-table td { color: #606e7b; font-size: .9rem; }
.suote-spec-table tr:nth-child(even) td { background: #fbfcfd; }
.suote-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: #e5e8eb; border: 1px solid #e5e8eb; }
.suote-feature-item { display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: .8rem; padding: 1.1rem; background: #fff; }
.suote-feature-item > span { color: #c2c8ce; font-size: .75rem; font-weight: 800; }
.suote-feature-item i { color: #16a064; }
.suote-feature-item p { margin: 0; color: #536171; font-size: .9rem; line-height: 1.55; }
.suote-document-grid { grid-template-columns: 1fr; }
.suote-inquiry-card { margin-top: 1.5rem; padding: clamp(1.5rem, 3vw, 2.5rem); scroll-margin-top: 150px; background: linear-gradient(135deg, #0d2c48, #0f4f81); color: #fff; }
.suote-inquiry-kicker { color: #70c0ff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.suote-inquiry-card h2 { margin: .55rem 0 .9rem; font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 750; }
.suote-inquiry-card p { color: rgba(255,255,255,.68); line-height: 1.75; }
.suote-inquiry-card ul { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .65rem; }
.suote-inquiry-card li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.88); font-size: .88rem; }
.suote-inquiry-card li i { color: #61db9e; }
.suote-inline-form { padding: 1.3rem; background: #fff; color: #273646; }
.suote-inline-form .form-label { font-size: .78rem; font-weight: 750; }
.suote-inline-form .form-control { min-height: 46px; border-radius: 2px; border-color: #d9dee3; font-size: .9rem; }
.suote-inline-form textarea.form-control { min-height: 130px; }
.suote-inline-form .btn { border-radius: 2px; }
.suote-related-section { padding: 70px 0; background: #fff; }
.suote-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.7rem; }
.suote-related-heading span { color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.suote-related-heading h2 { margin: .35rem 0 0; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 750; }
.suote-related-heading > a { color: var(--primary); font-size: .88rem; font-weight: 750; }
.suote-related-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid #e1e5e9; background: #fff; color: #233140; transition: .22s ease; }
.suote-related-card:hover { transform: translateY(-4px); border-color: #b7d8f4; box-shadow: 0 14px 35px rgba(26,52,78,.1); }
.suote-related-card img { width: 100%; height: 210px; object-fit: contain; padding: .7rem; background: #f7f8fa; border-bottom: 1px solid #e6e9ec; }
.suote-related-card > div { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.suote-related-card small { color: var(--primary); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.suote-related-card strong { margin-top: .45rem; line-height: 1.45; overflow-wrap: anywhere; }
.suote-related-card span { margin-top: auto; padding-top: .8rem; color: #73808d; font-size: .78rem; font-weight: 700; }

@media (max-width: 1199.98px) {
    .suote-gallery-wrap { min-height: auto; border-right: 0; border-bottom: 1px solid #e5e9ed; }
    .suote-gallery-wrap .commerce-product-gallery { min-height: 520px; }
    .suote-product-summary { min-height: 560px; }
}
@media (max-width: 991.98px) {
    .suote-product-main { padding-top: 28px; }
    .suote-sidebar-stack { position: static !important; }
    .suote-category-card { margin-bottom: .2rem; }
    .suote-section-nav { top: 73px; }
    .suote-product-summary { min-height: auto; }
    .suote-inquiry-card { scroll-margin-top: 132px; }
}
@media (max-width: 767.98px) {
    .suote-breadcrumb-bar .breadcrumb-item.active { max-width: 180px; }
    .suote-product-main { padding-bottom: 55px; }
    .suote-gallery-wrap { padding: .7rem; }
    .suote-gallery-wrap .commerce-product-gallery { min-height: auto; }
    .suote-gallery-wrap .commerce-gallery-viewer { min-height: 320px; }
    .suote-product-summary { padding: 1.35rem; }
    .suote-product-summary h1 { font-size: 1.75rem; }
    .suote-product-actions { display: grid; grid-template-columns: 1fr; }
    .suote-product-actions .btn { width: 100%; }
    .suote-section-nav { margin-top: 1rem; }
    .suote-section-nav a { padding: .8rem .9rem; }
    .suote-content-card, .suote-inquiry-card { margin-top: 1rem; border-left: 0; border-right: 0; }
    .suote-feature-grid { grid-template-columns: 1fr; }
    .suote-related-heading { align-items: flex-start; flex-direction: column; }
    .suote-related-card img { height: 190px; }
}
@media (max-width: 575.98px) {
    .suote-breadcrumb-bar .container { padding-top: .75rem; padding-bottom: .75rem; }
    .suote-gallery-wrap .commerce-gallery-viewer { min-height: 275px; }
    .suote-quick-specs { grid-template-columns: 1fr; }
    .suote-quick-specs div, .suote-quick-specs div:nth-child(2n), .suote-quick-specs div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e6e9ec; }
    .suote-quick-specs div:last-child { border-bottom: 0; }
    .suote-spec-table, .suote-spec-table tbody, .suote-spec-table tr, .suote-spec-table th, .suote-spec-table td { display: block; width: 100%; }
    .suote-spec-table tr { border-bottom: 1px solid #e0e4e8; }
    .suote-spec-table tr:last-child { border-bottom: 0; }
    .suote-spec-table th { padding-bottom: .25rem; border: 0; }
    .suote-spec-table td { padding-top: .25rem; border: 0; }
    .suote-inline-form { padding: 1rem; }
}
/*
 * M/S Babu Enterprise industrial home page
 * Scoped to body.home-industrial so the admin and inner pages remain untouched.
 */

body.home-industrial {
    --home-primary: #0868c8;
    --home-primary-deep: #04509d;
    --home-cyan: #13a8ca;
    --home-navy: #061a2d;
    --home-navy-soft: #0b2c47;
    --home-ink: #10243a;
    --home-copy: #566a7e;
    --home-border: rgba(10, 50, 82, .13);
    --home-white: #ffffff;
    --home-soft: #f2f7fb;
    --home-glow: 0 24px 70px rgba(4, 48, 83, .14);
    --home-transition: .42s cubic-bezier(.22, .78, .24, 1);
    background: #f6f9fc;
    color: var(--home-ink);
    overflow-x: hidden;
}

body.home-industrial main {
    overflow: hidden;
}

body.home-industrial .container {
    max-width: 1320px;
}

.home-scroll-progress {
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #08b8d6, #0d6efd, #ffffff);
    box-shadow: 0 0 18px rgba(23, 179, 214, .9);
    pointer-events: none;
}

body.home-industrial [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.22, .78, .24, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.home-industrial [data-reveal][data-reveal-direction="left"] {
    transform: translateX(-38px);
}

body.home-industrial [data-reveal][data-reveal-direction="right"] {
    transform: translateX(38px);
}

body.home-industrial [data-reveal].revealed {
    opacity: 1;
    transform: none;
}

.industrial-section {
    position: relative;
    padding: clamp(82px, 8vw, 126px) 0;
}

.industrial-section-title {
    max-width: 820px;
    margin: 0;
    color: var(--home-ink);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.industrial-section-title span {
    color: var(--home-primary);
}

.industrial-section-title--white {
    color: #fff;
}

.industrial-section-title--white span {
    color: #7edff1;
}

.industrial-section-copy {
    max-width: 760px;
    margin-top: 1.25rem;
    color: var(--home-copy);
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.85;
}

.industrial-section-copy--white {
    color: rgba(255, 255, 255, .72);
}

.section-kicker,
.industrial-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    width: fit-content;
    padding: .58rem .95rem;
    border: 1px solid rgba(8, 104, 200, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .83);
    color: var(--home-primary-deep);
    box-shadow: 0 10px 24px rgba(8, 104, 200, .08);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
}

.section-kicker--dark,
.industrial-kicker {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(5, 33, 56, .58);
    color: #eafaff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 15px 38px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
}

.section-kicker--light {
    border-color: rgba(8, 104, 200, .13);
    background: rgba(255, 255, 255, .9);
}

.industrial-kicker__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #31d6a4;
    box-shadow: 0 0 0 0 rgba(49, 214, 164, .55);
    animation: homePulse 2.2s infinite;
}

.industrial-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 54px;
    padding: .85rem 1.4rem;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: .94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform var(--home-transition), box-shadow var(--home-transition), background var(--home-transition), border-color var(--home-transition);
}

.industrial-btn::before {
    position: absolute;
    top: -100%;
    left: -35%;
    width: 28%;
    height: 300%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    content: "";
    transform: rotate(20deg);
    transition: left .7s ease;
}

.industrial-btn:hover::before {
    left: 120%;
}

.industrial-btn:hover {
    transform: translateY(-3px);
}

.industrial-btn--primary {
    background: linear-gradient(135deg, #0a7bd8, #0758af);
    color: #fff;
    box-shadow: 0 18px 36px rgba(3, 87, 169, .27);
}

.industrial-btn--primary:hover {
    color: #fff;
    box-shadow: 0 24px 48px rgba(3, 87, 169, .36);
}

.industrial-btn--glass {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .11);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 16px 38px rgba(0,0,0,.13);
    backdrop-filter: blur(13px);
}

.industrial-btn--glass:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.industrial-btn--dark {
    background: var(--home-navy);
    color: #fff;
    box-shadow: 0 16px 34px rgba(4, 25, 43, .2);
}

.industrial-btn--dark:hover {
    background: #0b2d48;
    color: #fff;
}

.industrial-outline-link {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--home-primary-deep);
    font-weight: 800;
    text-decoration: none;
    transition: gap var(--home-transition), color var(--home-transition), transform var(--home-transition);
}

.industrial-outline-link:hover {
    gap: 1rem;
    color: var(--home-cyan);
    transform: translateX(3px);
}

.industrial-outline-link--solid {
    padding: .9rem 1.35rem;
    border: 1px solid rgba(8, 104, 200, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 46, 76, .09);
}

/* Hero */
.industrial-hero {
    --parallax-y: 0px;
    position: relative;
    min-height: calc(100svh - 110px);
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: linear-gradient(90deg, rgba(2, 15, 29, .97) 0%, rgba(3, 25, 45, .92) 41%, rgba(3, 39, 65, .48) 100%), var(--hero-bg);
    background-position: center calc(50% + var(--parallax-y));
    background-size: cover;
    color: #fff;
}

.industrial-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 14% 17%, rgba(18, 164, 205, .18), transparent 32%), radial-gradient(circle at 78% 85%, rgba(13, 110, 217, .2), transparent 34%);
    content: "";
    pointer-events: none;
}

.industrial-hero::after {
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -26%;
    width: 680px;
    aspect-ratio: 1;
    border: 1px solid rgba(125, 226, 245, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(68, 190, 222, .03), 0 0 0 160px rgba(68, 190, 222, .02);
    content: "";
    animation: homeSlowSpin 24s linear infinite;
}

.industrial-hero__row {
    min-height: calc(100svh - 110px);
    padding: 6.2rem 0 7rem;
}

.industrial-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 88%);
    pointer-events: none;
}

.industrial-hero__thread {
    position: absolute;
    z-index: 0;
    height: 1px;
    width: 52vw;
    background: linear-gradient(90deg, transparent, rgba(75, 213, 240, .78), transparent);
    filter: drop-shadow(0 0 10px rgba(75, 213, 240, .7));
    transform-origin: center;
    pointer-events: none;
}

.industrial-hero__thread--one {
    top: 25%;
    right: -8%;
    transform: rotate(-11deg);
    animation: threadSlide 7s ease-in-out infinite alternate;
}

.industrial-hero__thread--two {
    right: -2%;
    bottom: 24%;
    transform: rotate(9deg);
    animation: threadSlide 9s ease-in-out infinite alternate-reverse;
}

.hero-copy-panel {
    max-width: 780px;
}

.industrial-hero__title {
    max-width: 880px;
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.industrial-hero__title span {
    display: inline;
    color: transparent;
    background: linear-gradient(100deg, #fff 2%, #6fe2f1 35%, #42a7ff 76%, #fff 100%);
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: titleShimmer 6s linear infinite;
}

.industrial-hero__lead {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(236, 248, 255, .78);
    font-size: clamp(1.03rem, 1.55vw, 1.22rem);
    line-height: 1.86;
}

.industrial-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.1rem;
}

.hero-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .84);
    font-size: .87rem;
    font-weight: 650;
}

.hero-trust-list i {
    color: #52dab1;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 660px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(4, 29, 49, .52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.hero-stat {
    position: relative;
    padding: 1rem 1.05rem;
}

.hero-stat + .hero-stat::before {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: rgba(255,255,255,.14);
    content: "";
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.1;
}

.hero-stat small {
    display: block;
    margin-top: .3rem;
    color: rgba(255,255,255,.6);
    font-size: .72rem;
    line-height: 1.4;
}

.hero-machine-stage {
    position: relative;
    max-width: 520px;
    min-height: 610px;
    margin-left: auto;
    perspective: 1200px;
}

.hero-machine-card {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: min(100%, 440px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 28px;
    background: rgba(242, 250, 255, .93);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255,255,255,.72);
    color: var(--home-ink);
    text-decoration: none;
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .45s ease;
    backdrop-filter: blur(15px);
}

.hero-machine-card:hover {
    color: var(--home-ink);
    box-shadow: 0 44px 110px rgba(0,0,0,.43), 0 0 0 1px rgba(88, 219, 241, .26);
}

.hero-machine-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem .75rem;
    color: #37526c;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-machine-card__top i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--home-primary);
    color: #fff;
}

.hero-machine-card__image-wrap {
    position: relative;
    height: 300px;
    margin: 0 .9rem;
    overflow: hidden;
    border-radius: 19px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(8, 57, 94, .09);
}

.hero-machine-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .7s cubic-bezier(.22,.78,.24,1);
}

.hero-machine-card:hover .hero-machine-card__image {
    transform: scale(1.055);
}

.hero-machine-card__scan {
    position: absolute;
    top: -20%;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #28d1ef, transparent);
    box-shadow: 0 0 16px rgba(40, 209, 239, .9);
    animation: machineScan 4.5s ease-in-out infinite;
}

.hero-machine-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.hero-machine-card__body small {
    color: var(--home-primary);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-machine-card__body h2 {
    margin: .5rem 0 .85rem;
    color: var(--home-ink);
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.27;
}

.hero-machine-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.hero-machine-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .42rem .6rem;
    border: 1px solid rgba(8, 104, 200, .1);
    border-radius: 9px;
    background: #edf6fd;
    color: #3b5b75;
    font-size: .72rem;
    font-weight: 700;
}

.hero-machine-stage__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(113, 221, 242, .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: homeSlowSpin 18s linear infinite;
}

.hero-machine-stage__orbit::after {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #54d8ef;
    box-shadow: 0 0 16px rgba(84, 216, 239, .9);
    content: "";
}

.hero-machine-stage__orbit--outer {
    width: 540px;
    height: 540px;
}

.hero-machine-stage__orbit--inner {
    width: 410px;
    height: 410px;
    animation-direction: reverse;
    animation-duration: 13s;
}

.hero-machine-stage__gear {
    position: absolute;
    right: -20px;
    bottom: 42px;
    color: rgba(139, 226, 242, .18);
    font-size: 8.5rem;
    line-height: 1;
    animation: homeSlowSpin 16s linear infinite;
}

.hero-floating-note {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 190px;
    padding: .8rem .95rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    background: rgba(5, 31, 51, .78);
    color: #fff;
    box-shadow: 0 20px 44px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    animation: floatNote 4.8s ease-in-out infinite;
}

.hero-floating-note > i {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #10a9ce, #0868c8);
    font-size: 1.05rem;
}

.hero-floating-note span {
    display: grid;
}

.hero-floating-note small {
    color: rgba(255,255,255,.58);
    font-size: .67rem;
}

.hero-floating-note strong {
    font-size: .79rem;
    line-height: 1.35;
}

.hero-floating-note--support {
    right: -36px;
    bottom: 105px;
}

.hero-floating-note--quality {
    top: 72px;
    left: -38px;
    animation-delay: -2.2s;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll-cue:hover {
    color: #fff;
}

.hero-scroll-cue i {
    animation: scrollCue 1.8s ease-in-out infinite;
}

/* Marquee */
.technology-marquee {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(8, 54, 90, .14);
    background: #fff;
    box-shadow: 0 14px 36px rgba(5, 34, 57, .08);
}

.technology-marquee__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: marqueeMove 34s linear infinite;
}

.technology-marquee:hover .technology-marquee__track {
    animation-play-state: paused;
}

.technology-marquee__track span {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.55rem;
    color: #29455f;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
}

.technology-marquee__track i {
    color: var(--home-primary);
    font-size: .62rem;
}

/* Featured products */
.featured-machines-section {
    isolation: isolate;
    background: #edf5fb;
}

.featured-machines-section .section-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(239, 247, 253, .97) 0%, rgba(241, 248, 253, .94) 52%, rgba(234, 245, 252, .83) 100%), var(--section-bg);
    background-position: center;
    background-size: cover;
}

.featured-machines-section::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.34), transparent 24%, rgba(255,255,255,.38));
    content: "";
    pointer-events: none;
}

.industrial-gear {
    position: absolute;
    z-index: -1;
    color: rgba(8, 104, 200, .05);
    line-height: 1;
    pointer-events: none;
}

.industrial-gear--one {
    top: 70px;
    right: 4vw;
    font-size: 12rem;
    animation: homeSlowSpin 24s linear infinite;
}

.industrial-gear--two {
    bottom: 30px;
    left: -35px;
    font-size: 8rem;
    animation: homeSlowSpin 18s linear infinite reverse;
}

.industrial-product-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(5, 43, 73, .09);
    transition: transform var(--home-transition), box-shadow var(--home-transition), border-color var(--home-transition);
}

.industrial-product-card:hover {
    border-color: rgba(8, 104, 200, .28);
    box-shadow: 0 30px 70px rgba(5, 49, 82, .16);
    transform: translateY(-10px);
}

.industrial-product-card__media {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(145deg, #f7fbfe, #e8f2f8);
}

.industrial-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform .75s cubic-bezier(.22,.78,.24,1), filter .55s ease;
}

.industrial-product-card:hover .industrial-product-card__media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.07);
}

.industrial-product-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(2, 24, 42, .38));
    opacity: .35;
    transition: opacity var(--home-transition);
}

.industrial-product-card:hover .industrial-product-card__shade {
    opacity: .65;
}

.industrial-product-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 82px);
    padding: .45rem .68rem;
    border: 1px solid rgba(255,255,255,.66);
    border-radius: 999px;
    background: rgba(6, 31, 51, .76);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.industrial-product-card__open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--home-primary);
    box-shadow: 0 14px 30px rgba(4, 31, 53, .18);
    transition: transform var(--home-transition), background var(--home-transition), color var(--home-transition);
}

.industrial-product-card:hover .industrial-product-card__open {
    background: var(--home-primary);
    color: #fff;
    transform: rotate(45deg) scale(1.08);
}

.industrial-product-card__body {
    display: flex;
    min-height: 275px;
    flex-direction: column;
    padding: 1.3rem 1.35rem 1.4rem;
}

.industrial-product-card__model {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .4rem;
    margin-bottom: .75rem;
    color: #668096;
    font-size: .69rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.industrial-product-card h3 {
    margin: 0;
    font-size: 1.27rem;
    font-weight: 800;
    line-height: 1.38;
}

.industrial-product-card h3 a {
    color: var(--home-ink);
    text-decoration: none;
    transition: color var(--home-transition);
}

.industrial-product-card:hover h3 a {
    color: var(--home-primary);
}

.industrial-product-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: .85rem 0 1rem;
    color: var(--home-copy);
    font-size: .89rem;
    line-height: 1.73;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.industrial-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px solid rgba(7, 65, 104, .1);
}

.industrial-product-card__footer > span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #71869a;
    font-size: .75rem;
    font-weight: 700;
}

.industrial-product-card__footer a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--home-primary);
    font-size: .79rem;
    font-weight: 800;
    text-decoration: none;
}

/* Process */
.production-process-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--process-bg);
    background-position: center;
    background-size: cover;
}

.production-process-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(100deg, rgba(3, 19, 34, .96) 0%, rgba(4, 35, 58, .9) 50%, rgba(4, 48, 73, .76) 100%);
}

.production-process-section::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(94, 220, 240, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(80, 211, 235, .025), 0 0 0 120px rgba(80, 211, 235, .018);
    content: "";
    animation: homeSlowSpin 22s linear infinite;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 20px 45px rgba(0,0,0,.12);
    color: #fff;
    backdrop-filter: blur(13px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.process-card:hover {
    border-color: rgba(96, 224, 245, .38);
    background: linear-gradient(145deg, rgba(24,167,202,.2), rgba(255,255,255,.07));
    transform: translateY(-8px);
}

.process-card::after {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
    transition: transform .7s ease;
}

.process-card:hover::after {
    transform: scale(1.3);
}

.process-card__number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255,255,255,.14);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.process-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(31,188,217,.3), rgba(8,104,200,.34));
    color: #91ecf7;
    font-size: 1.3rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin: 1.1rem 0 .6rem;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 800;
}

.process-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: .85rem;
    line-height: 1.72;
}

/* Gallery mosaic */
.machine-showcase-section {
    background: #fff;
}

.machine-showcase-section::before {
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image: radial-gradient(circle at 1px 1px, rgba(8, 104, 200, .12) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000, transparent 84%);
    content: "";
    pointer-events: none;
}

.section-heading-centered {
    max-width: 930px;
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered .section-kicker {
    margin-inline: auto;
}

.section-heading-centered .industrial-section-title,
.section-heading-centered .industrial-section-copy {
    margin-inline: auto;
}

.machine-showcase-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .9fr .9fr;
    grid-template-rows: 260px 260px;
    gap: 1rem;
}

.machine-showcase-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #dceaf3;
    box-shadow: 0 20px 50px rgba(5, 45, 76, .11);
    color: #fff;
    text-decoration: none;
}

.machine-showcase-tile--1 {
    grid-row: 1 / 3;
}

.machine-showcase-tile--4 {
    grid-column: 2 / 4;
}

.machine-showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.22,.78,.24,1), filter .55s ease;
}

.machine-showcase-tile:hover img {
    filter: saturate(1.12) contrast(1.03);
    transform: scale(1.075);
}

.machine-showcase-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,19,32,.08) 24%, rgba(3,22,38,.88) 100%);
    transition: background .5s ease;
}

.machine-showcase-tile:hover .machine-showcase-tile__overlay {
    background: linear-gradient(180deg, rgba(4,55,91,.1) 18%, rgba(3,30,49,.93) 100%);
}

.machine-showcase-tile__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: .32rem;
    padding: 1.4rem;
    transform: translateY(20px);
    transition: transform var(--home-transition);
}

.machine-showcase-tile:hover .machine-showcase-tile__content {
    transform: none;
}

.machine-showcase-tile__content small {
    color: #75e0f0;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.machine-showcase-tile__content strong {
    max-width: 520px;
    color: #fff;
    font-size: clamp(1.02rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.3;
}

.machine-showcase-tile__content > span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.machine-showcase-tile:hover .machine-showcase-tile__content > span {
    opacity: 1;
    transform: none;
}

/* Spare parts */
.spare-parts-industrial-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--spare-bg);
    background-position: center;
    background-size: cover;
}

.spare-parts-industrial-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(95deg, rgba(3, 17, 30, .96), rgba(4, 40, 63, .88) 56%, rgba(4, 49, 70, .78));
}

.spare-parts-industrial-section::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,226,245,.52), transparent);
    content: "";
}

.spare-glass-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 330px;
    flex-direction: column;
    overflow: hidden;
    padding: .75rem .75rem 1.1rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 50px rgba(0,0,0,.17);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.spare-glass-card:hover {
    border-color: rgba(104, 225, 244, .44);
    background: linear-gradient(145deg, rgba(18, 156, 193, .23), rgba(255,255,255,.075));
    color: #fff;
    transform: translateY(-9px);
}

.spare-glass-card__image {
    display: block;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.93);
}

.spare-glass-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .55rem;
    transition: transform .7s ease;
}

.spare-glass-card:hover .spare-glass-card__image img {
    transform: scale(1.08);
}

.spare-glass-card > small {
    margin: .95rem 0 .38rem;
    color: #78dfef;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.spare-glass-card > strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.42;
}

.spare-glass-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    padding-top: .8rem;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    font-weight: 800;
}

/* About */
.company-story-section {
    background: linear-gradient(180deg, #f8fbfd, #eef5fa);
}

.company-story-section__pattern {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient(30deg, rgba(8,104,200,.035) 12%, transparent 12.5%, transparent 87%, rgba(8,104,200,.035) 87.5%, rgba(8,104,200,.035)), linear-gradient(150deg, rgba(8,104,200,.035) 12%, transparent 12.5%, transparent 87%, rgba(8,104,200,.035) 87.5%, rgba(8,104,200,.035));
    background-position: 0 0, 42px 74px;
    background-size: 84px 148px;
    pointer-events: none;
}

.company-story-visual {
    position: relative;
    max-width: 600px;
    min-height: 510px;
}

.company-story-visual__frame {
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(8, 104, 200, .14);
    border-radius: 30px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 35px 80px rgba(4, 45, 76, .14);
    transform: rotate(-2deg);
}

.company-story-visual__frame::before {
    position: absolute;
    z-index: 2;
    top: -70%;
    left: -25%;
    width: 28%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
    content: "";
    transform: rotate(22deg);
    animation: cardShine 6s ease-in-out infinite;
}

.company-story-visual__frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 20px;
}

.company-story-visual__badge {
    position: absolute;
    z-index: 4;
    right: -8px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 310px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 17px;
    background: linear-gradient(135deg, #0868c8, #07529f);
    color: #fff;
    box-shadow: 0 22px 45px rgba(5, 75, 135, .27);
    animation: floatNote 5.2s ease-in-out infinite;
}

.company-story-visual__badge > i {
    font-size: 1.65rem;
}

.company-story-visual__badge span {
    display: grid;
}

.company-story-visual__badge small {
    color: rgba(255,255,255,.7);
    font-size: .67rem;
}

.company-story-visual__badge strong {
    font-size: .88rem;
}

.company-story-visual__line {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 20px;
    width: 230px;
    height: 230px;
    border: 1px dashed rgba(8,104,200,.25);
    border-radius: 50%;
    animation: homeSlowSpin 18s linear infinite;
}

.company-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.company-feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid rgba(6, 78, 127, .1);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 30px rgba(5, 50, 83, .06);
    transition: transform var(--home-transition), border-color var(--home-transition), box-shadow var(--home-transition);
}

.company-feature-list > div:hover {
    border-color: rgba(8,104,200,.23);
    box-shadow: 0 18px 38px rgba(5, 50, 83, .1);
    transform: translateY(-5px);
}

.company-feature-list i {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #e6f3fc;
    color: var(--home-primary);
    font-size: 1.05rem;
}

.company-feature-list span {
    display: grid;
}

.company-feature-list strong {
    color: var(--home-ink);
    font-size: .86rem;
}

.company-feature-list small {
    margin-top: .22rem;
    color: var(--home-copy);
    font-size: .74rem;
    line-height: 1.55;
}

/* Partners */
.partner-industrial-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--partner-bg);
    background-position: center;
    background-size: cover;
}

.partner-industrial-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(95deg, rgba(3, 17, 31, .97) 0%, rgba(4, 33, 54, .91) 54%, rgba(5, 48, 72, .78) 100%);
}

.partner-industrial-grid {
    display: grid;
    gap: 1rem;
}

.partner-industrial-card {
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 50px rgba(0,0,0,.14);
    backdrop-filter: blur(13px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.partner-industrial-card:hover {
    border-color: rgba(107, 223, 241, .38);
    background: linear-gradient(145deg, rgba(16, 149, 187, .22), rgba(255,255,255,.065));
    transform: translateX(-7px);
}

.partner-industrial-card__logo {
    display: grid;
    min-height: 115px;
    overflow: hidden;
    place-items: center;
    padding: .8rem;
    border-radius: 15px;
    background: #fff;
}

.partner-industrial-card__logo img {
    width: 100%;
    max-height: 95px;
    object-fit: contain;
}

.partner-industrial-card small {
    color: #77deef;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.partner-industrial-card h3 {
    margin: .3rem 0 .45rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.partner-industrial-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: .82rem;
    line-height: 1.66;
}

/* Final CTA */
.final-industrial-cta {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #eef5fa, #fff);
}

.final-industrial-cta::before,
.final-industrial-cta::after {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(95px);
    content: "";
    pointer-events: none;
}

.final-industrial-cta::before {
    top: -180px;
    left: -100px;
    background: rgba(8, 104, 200, .16);
}

.final-industrial-cta::after {
    right: -80px;
    bottom: -210px;
    background: rgba(24, 180, 208, .16);
}

.final-industrial-cta__thread {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8,104,200,.25), transparent);
    transform: rotate(-4deg);
}

.final-industrial-cta__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(1.8rem, 4vw, 3.2rem);
    border: 1px solid rgba(8, 84, 137, .13);
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 28px 70px rgba(4, 44, 74, .12);
    backdrop-filter: blur(15px);
}

.final-industrial-cta__box::after {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(8,104,200,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(8,104,200,.035), 0 0 0 90px rgba(8,104,200,.02);
    content: "";
}

.final-industrial-cta h2 {
    max-width: 760px;
    margin: 1rem 0 .7rem;
    color: var(--home-ink);
    font-size: clamp(1.85rem, 3.3vw, 3.2rem);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -.035em;
}

.final-industrial-cta p {
    max-width: 780px;
    margin: 0;
    color: var(--home-copy);
    line-height: 1.75;
}

.final-industrial-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: .75rem;
}

/* Animations */
@keyframes homePulse {
    70% { box-shadow: 0 0 0 9px rgba(49, 214, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(49, 214, 164, 0); }
}

@keyframes homeSlowSpin {
    to { rotate: 360deg; }
}

@keyframes titleShimmer {
    to { background-position: 220% center; }
}

@keyframes threadSlide {
    from { opacity: .25; translate: -60px 0; }
    to { opacity: .85; translate: 70px 0; }
}

@keyframes machineScan {
    0%, 15% { top: -10%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    85%, 100% { top: 110%; opacity: 0; }
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollCue {
    0%, 100% { transform: translateY(0); opacity: .55; }
    50% { transform: translateY(7px); opacity: 1; }
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}

@keyframes cardShine {
    0%, 55% { left: -30%; }
    90%, 100% { left: 125%; }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .industrial-hero__title {
        font-size: clamp(2.8rem, 5.8vw, 4.8rem);
    }

    .hero-machine-stage {
        min-height: 560px;
    }

    .hero-machine-stage__orbit--outer {
        width: 480px;
        height: 480px;
    }

    .hero-machine-stage__orbit--inner {
        width: 360px;
        height: 360px;
    }

    .hero-floating-note--support {
        right: -10px;
    }

    .hero-floating-note--quality {
        left: -10px;
    }

    .machine-showcase-grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: repeat(3, 250px);
    }

    .machine-showcase-tile--1 {
        grid-row: 1 / 3;
    }

    .machine-showcase-tile--4 {
        grid-column: 1 / 2;
    }

    .machine-showcase-tile--5 {
        grid-column: 2 / 3;
    }
}

@media (max-width: 991.98px) {
    .industrial-hero {
        min-height: auto;
        background-position: 64% center;
    }

    .industrial-hero__row {
        min-height: auto;
        padding: 6.3rem 0 5.5rem;
    }

    .hero-copy-panel {
        max-width: 850px;
    }

    .hero-machine-stage {
        max-width: 580px;
        min-height: 610px;
        margin: 0 auto;
    }

    .hero-scroll-cue {
        display: none;
    }

    .process-grid {
        margin-top: 1rem;
    }

    .company-story-visual {
        margin: 0 auto;
    }

    .final-industrial-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-industrial-cta__actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .industrial-section,
    .production-process-section,
    .spare-parts-industrial-section,
    .partner-industrial-section {
        padding: 76px 0;
    }

    .industrial-hero {
        background-image: linear-gradient(180deg, rgba(2,15,29,.98) 0%, rgba(3,25,45,.95) 55%, rgba(3,35,58,.76) 100%), var(--hero-bg);
        background-position: 63% center;
    }

    .industrial-hero__row {
        padding: 5rem 0 4.3rem;
    }

    .industrial-hero__title {
        font-size: clamp(2.45rem, 11vw, 3.7rem);
        line-height: 1.02;
    }

    .industrial-hero__lead {
        font-size: 1rem;
        line-height: 1.75;
    }

    .industrial-hero__actions,
    .industrial-hero__actions .industrial-btn {
        width: 100%;
    }

    .hero-trust-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .hero-stat + .hero-stat::before {
        top: 0;
        right: 1rem;
        bottom: auto;
        left: 1rem;
        width: auto;
        height: 1px;
    }

    .hero-stat small {
        margin: 0;
        text-align: right;
    }

    .hero-machine-stage {
        min-height: 530px;
    }

    .hero-machine-card {
        width: min(92%, 430px);
        transform: translate(-50%, -50%);
    }

    .hero-machine-card__image-wrap {
        height: 255px;
    }

    .hero-machine-stage__orbit--outer {
        width: 420px;
        height: 420px;
    }

    .hero-machine-stage__orbit--inner {
        width: 320px;
        height: 320px;
    }

    .hero-floating-note {
        min-width: 165px;
        padding: .7rem .78rem;
    }

    .hero-floating-note--quality {
        top: 35px;
        left: 0;
    }

    .hero-floating-note--support {
        right: 0;
        bottom: 62px;
    }

    .process-grid,
    .company-feature-list {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .machine-showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .machine-showcase-tile,
    .machine-showcase-tile--1,
    .machine-showcase-tile--4,
    .machine-showcase-tile--5 {
        grid-column: auto;
        grid-row: auto;
        min-height: 280px;
    }

    .company-story-visual {
        min-height: 410px;
    }

    .company-story-visual__frame {
        top: 20px;
    }

    .partner-industrial-card {
        grid-template-columns: 1fr;
    }

    .partner-industrial-card__logo {
        min-height: 130px;
    }

    .final-industrial-cta__actions {
        flex-direction: column;
    }

    .final-industrial-cta__actions .industrial-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .industrial-kicker,
    .section-kicker {
        font-size: .65rem;
        line-height: 1.35;
    }

    .industrial-section-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hero-machine-stage {
        min-height: 490px;
    }

    .hero-machine-card__top {
        font-size: .62rem;
    }

    .hero-machine-card__image-wrap {
        height: 225px;
    }

    .hero-machine-card__body {
        padding: 1rem;
    }

    .hero-machine-stage__orbit--outer {
        width: 355px;
        height: 355px;
    }

    .hero-machine-stage__orbit--inner {
        width: 270px;
        height: 270px;
    }

    .hero-floating-note {
        display: none;
    }

    .industrial-product-card__media {
        height: 235px;
    }

    .company-story-visual {
        min-height: 340px;
    }

    .company-story-visual__badge {
        right: 0;
        bottom: 0;
        left: 16px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-industrial *,
    body.home-industrial *::before,
    body.home-industrial *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    body.home-industrial [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
