/* Supreme Synth Chem - Premium Industrial Theme */
:root {
    --black: #111111;
    --orange: #f37021;
    --orange-dark: #d85f10;
    --topbar-height: 38px;
    --nav-height: 104px;
    --header-stack: calc(var(--topbar-height) + var(--nav-height));
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #333333;
    --glass: rgba(17, 17, 17, 0.75);
    --glass-light: rgba(255, 255, 255, 0.08);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --header-height: 72px;
    --mobile-gutter: 1.125rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.7;
    position: relative;
}
main {
    overflow-x: hidden;
    max-width: 100%;
}
img, video, svg {
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; color: var(--black); }
.text-orange { color: var(--orange) !important; }
.bg-orange { background: var(--orange) !important; }
.bg-dark-premium { background: var(--black) !important; }

/* Buttons */
.btn-orange {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: var(--white);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.35);
}
.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
}
.btn-outline-light:hover { background: var(--orange); border-color: var(--orange); }

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff9a44);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s;
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
/* Failsafe: if main.js fails to load, do not leave the loader stuck forever */
@keyframes pageLoaderFailsafeHide {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.page-loader {
    animation: pageLoaderFailsafeHide 0.4s ease 4s forwards;
}
.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 4px;
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin-top: 20px;
    border-radius: 3px;
    overflow: hidden;
}
.loader-bar span {
    display: block;
    height: 100%;
    background: var(--orange);
    animation: loadBar 1.2s ease infinite;
}
@keyframes loadBar {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.85) 70%, transparent 100%);
}
.site-header .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.site-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--glass-light);
}
.site-header .navbar { padding: 0; }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.brand-logo {
    height: 52px;
    width: auto;
    max-width: min(240px, 55vw);
    object-fit: contain;
    display: block;
}

.navbar-brand:hover .brand-logo {
    opacity: 0.92;
}
.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--orange);
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Mega Menu */
@media (min-width: 992px) {
    .site-header .navbar {
        position: relative;
    }
    .mega-dropdown.position-static .dropdown-menu.mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        transform: none !important;
        inset: auto !important;
    }
}

.mega-dropdown .dropdown-menu.mega-menu {
    background: var(--black);
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: var(--shadow);
}

.mega-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Products dropdown — vertical card menu */
.products-nav-item {
    position: relative;
}

.products-nav-panel {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.products-nav-dropdown {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    border: 1px solid #e4e8ef;
}

.products-nav-dropdown-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(180deg, #f3f7fc 0%, #e8f0fa 100%);
    border-bottom: 1px solid #dce6f2;
}

.products-nav-dropdown-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(243, 112, 33, 0.12);
    color: var(--orange);
    font-size: 1rem;
}

.products-nav-dropdown-head-text {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a3a5c;
}

.products-nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.products-nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1.1rem;
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.products-nav-dropdown-link:hover {
    background: #f5f8fc;
    color: var(--orange);
}

.products-nav-dropdown-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef4fb;
    color: #2a6eb8;
    font-size: 1.15rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.products-nav-dropdown-link:hover .products-nav-dropdown-icon {
    background: rgba(243, 112, 33, 0.12);
    color: var(--orange);
}

.products-nav-dropdown-text {
    flex: 1;
    min-width: 0;
}

.products-nav-dropdown-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    background: #1a3a5c;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

.products-nav-dropdown-foot:hover {
    background: #0f2844;
    color: var(--white);
}

.products-nav-dropdown-foot i {
    font-size: 1rem;
    opacity: 0.9;
}

.products-nav-toggle[aria-expanded="true"],
.products-nav-item.is-open .products-nav-toggle {
    color: var(--orange) !important;
}

@media (min-width: 992px) {
    .products-nav-item.is-open .products-nav-toggle,
    .products-nav-toggle[aria-expanded="true"] {
        box-shadow: inset 0 0 0 2px var(--orange);
        border-radius: 4px;
    }

    .products-nav-panel {
        position: absolute;
        top: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        width: min(340px, 92vw);
        z-index: 1060;
    }

    .products-nav-panel::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
    }
}

@media (max-width: 991.98px) {
    .products-nav-panel {
        margin-top: 0.35rem;
        margin-bottom: 0.5rem;
    }

    .products-nav-dropdown {
        border-radius: var(--radius);
    }
}

@media (min-width: 992px) {
    .mega-menu-inner:not(.mega-menu-row) {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    .mega-menu-categories {
        flex: 0 0 280px;
        max-width: 280px;
        padding-right: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .mega-menu-products {
        flex: 1;
        min-width: 0;
    }
    .mega-products-inline {
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: visible;
    }
}

.mega-title {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem;
    line-height: 1.2;
    display: block;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: var(--transition);
    font-size: 0.95rem;
}

.mega-list li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.mega-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
}

@media (min-width: 576px) {
    .mega-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mega-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

.mega-product-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 0;
}

.mega-product-link i {
    flex-shrink: 0;
    color: var(--orange);
    font-size: 1rem;
}

.mega-product-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mega-product-link:hover {
    background: var(--glass-light);
    color: var(--orange);
}

/* Header Search */
.header-search {
    display: flex;
    background: var(--glass-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.header-search input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.4rem 0.75rem;
    width: 140px;
    font-size: 0.85rem;
}
.header-search input::placeholder { color: rgba(255,255,255,0.5); }
.header-search input:focus { outline: none; }
.header-search button {
    background: transparent;
    border: none;
    color: var(--orange);
    padding: 0.4rem 0.6rem;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    width: 100%;
    max-width: 100vw;
}
.hero-section .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img, .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.5) 50%, rgba(255,107,0,0.15) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--orange); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Section Common */
.section-padding {
    padding: 90px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Compact CTA banner */
.cta-banner-compact {
    padding: 2.25rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.cta-banner-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .cta-banner-actions {
        justify-content: flex-end;
    }
}

.cta-banner-actions .btn {
    padding: 0.5rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 2rem;
}
.section-label {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,0,0.3);
    box-shadow: 0 20px 50px rgba(255,107,0,0.1);
}
.glass-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ff9a44);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.glass-card h4 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.glass-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* Feature Cards (light bg) */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}
.feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--orange), #ff9a44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}
.product-card .img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-light);
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .badge-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}
.product-card .card-body { padding: 1.5rem; }
.product-card h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.product-card .card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Stats */
.stats-section {
    background: var(--black);
    padding: 70px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: calc(var(--header-height) + 1.75rem) 0 2rem;
    background: var(--black);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    text-align: center;
    isolation: isolate;
}
.page-banner .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 3;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 80% at 20% 40%, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 70% at 80% 60%, rgba(255, 107, 0, 0.08) 0%, transparent 45%),
        #0a0a0a;
    pointer-events: none;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.82) 100%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.5) 0%, transparent 20%, transparent 80%, rgba(17, 17, 17, 0.5) 100%);
    pointer-events: none;
}
.page-banner-fx {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.page-banner-network {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.92;
}
@media (prefers-reduced-motion: reduce) {
    .page-banner-network {
        display: none;
    }
    .page-banner::before {
        background:
            linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px),
            #111111;
        background-size: 40px 40px, 40px 40px, auto;
    }
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    justify-content: center;
}
.breadcrumb-custom li { color: rgba(255,255,255,0.6); }
.breadcrumb-custom li a { color: var(--orange); text-decoration: none; }
.breadcrumb-custom li::after { content: '/'; margin-left: 0.5rem; color: rgba(255,255,255,0.4); }
.breadcrumb-custom li:last-child::after { display: none; }
.breadcrumb-custom li:last-child { color: var(--white); }

/* About Image Grid */
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-img-grid img {
    border-radius: var(--radius);
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.about-img-grid .main-img {
    grid-column: 1 / -1;
    height: 280px;
}

/* Infrastructure */
.infra-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
}
.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.infra-card:hover img { transform: scale(1.1); }
.infra-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(17,17,17,0.9));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.infra-card h5 { color: var(--white); margin: 0; }

/* Industries */
.industry-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.industry-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,0,0.1);
}
.industry-item-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto 0.75rem;
    display: block;
}
.industry-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { font-size: 2rem; color: var(--white); }
.gallery-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

/* Gallery page — photos & videos */
.gallery-page .gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.35rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--gray-dark);
    background: #f0f0f0;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-tab:hover {
    color: var(--orange);
    background: rgba(243, 112, 33, 0.08);
}
.gallery-tab.is-active {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}
.gallery-video-card {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    background: #111;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s, box-shadow 0.35s;
}
.gallery-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(243, 112, 33, 0.25);
}
.gallery-video-thumb,
.gallery-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-video-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: rgba(255, 255, 255, 0.35);
    font-size: 3.5rem;
}
.gallery-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s;
}
.gallery-video-play i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(243, 112, 33, 0.5);
}
.gallery-video-card:hover .gallery-video-play {
    background: rgba(243, 112, 33, 0.25);
}
.gallery-video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.gallery-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--gray);
    background: #f8f8f8;
    border-radius: var(--radius);
}
.gallery-empty i {
    font-size: 3rem;
    color: var(--orange);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.7;
}
.gallery-video-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-video-player-wrap iframe,
.gallery-video-player-wrap video {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    margin: 1rem;
    border-left: 4px solid var(--orange);
}
.testimonial-card .stars { color: var(--orange); margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; color: var(--gray-dark); }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

/* Client Logos */
.client-logo {
    padding: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    text-align: center;
}
.client-logo:hover { filter: none; opacity: 1; }
.client-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Contact */
.contact-section-compact {
    padding: 2.5rem 0;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 100%;
    border: 1px solid #eee;
}

.contact-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--black);
}

.contact-form-wrap .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-dark);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
}

.contact-form-wrap textarea.form-control {
    min-height: 72px;
    resize: vertical;
}

.contact-form-wrap .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.contact-form-actions .btn {
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-feedback-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.form-feedback-modal .modal-body {
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
}

.form-feedback-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
}

.form-feedback-icon {
    font-size: 3.25rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.form-feedback-icon--success {
    color: #198754;
}

.form-feedback-icon--error {
    color: #dc3545;
}

.form-feedback-title {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-feedback-message {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.form-feedback-btn {
    min-width: 120px;
    font-weight: 600;
}

.contact-info-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    height: auto;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.contact-info-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.contact-info-card .info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.45;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.15rem;
}

.contact-info-card .info-item i {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card a.text-white {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.875rem;
}

.contact-info-card a.text-white:hover {
    color: var(--orange) !important;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    background: #e8ecf1;
}

.contact-map-img,
.contact-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map-img {
    object-fit: cover;
    z-index: 1;
}

.contact-map-iframe {
    z-index: 2;
    background: transparent;
    height: calc(100% + 36px);
    max-height: none;
    pointer-events: auto;
}

.contact-map-link a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
}

.contact-map-link a:hover {
    text-decoration: underline;
}

/* Downloads */
.download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.download-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}
.download-card .file-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

/* Quality */
.quality-badge {
    background: linear-gradient(135deg, var(--black), #222);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--white);
    text-align: center;
    border: 2px solid var(--orange);
}
.quality-badge i { font-size: 4rem; color: var(--orange); margin-bottom: 1rem; }

/* Product Detail */
.product-detail-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e8ecf1;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    line-height: 0;
}
.product-detail-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 360px;
    display: block;
    margin: 0 auto;
    font-size: 0;
    color: transparent;
    object-fit: contain;
    object-position: center;
}
@media (min-width: 992px) {
    .product-detail-intro .product-detail-img {
        min-height: 0;
        padding: 1.25rem 1.5rem;
    }
    .product-detail-img img {
        width: 100%;
        max-width: 100%;
        max-height: 340px;
        object-fit: contain;
    }
}
@media (max-width: 767.98px) {
    .product-detail-v2 .product-detail-intro > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .product-detail-img {
        min-height: 0;
        padding: 0.75rem;
        margin-bottom: 0.25rem;
    }
    .product-detail-img img {
        width: 100%;
        max-height: none;
        object-fit: contain;
    }
    .product-detail-title {
        font-size: 1.45rem;
        margin-top: 0.25rem;
    }
    .product-detail-desc {
        font-size: 0.95rem;
    }
}

.product-detail-v2 {
    background: var(--white);
}

.product-detail-intro {
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.product-detail-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
    margin: 0;
}

.product-detail-specs-row {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-detail-block-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem;
    padding-bottom: 0.65rem;
    position: relative;
    display: inline-block;
}

.product-detail-block-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.product-detail-plus-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-detail-plus-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #c8862a;
    font-weight: 500;
}

.product-detail-plus-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.65;
}

.product-detail-plus-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .product-detail-specs-row .col-md-6 + .col-md-6 {
        margin-top: 0.5rem;
    }
    .product-detail-specs-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.spec-table { width: 100%; }
.spec-table tr td:first-child { font-weight: 600; width: 35%; color: var(--black); }
.spec-table tr td { padding: 0.75rem; border-bottom: 1px solid #eee; }

/* Filter Bar */
.filter-bar {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-bar-search {
    max-width: 480px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.footer-top { padding: 70px 0 50px; }
.footer-brand {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }
.badge-iso {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating Buttons */
.float-actions {
    position: fixed;
    right: 1.35rem;
    bottom: 5.75rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    pointer-events: none;
}
.float-actions a {
    pointer-events: auto;
}
.float-whatsapp, .float-call {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatFabBob 3s ease-in-out infinite;
}
.float-call {
    background: var(--orange);
    animation-delay: 0s;
}
.float-whatsapp {
    background: #25d366;
    animation-delay: 0.45s;
}
@keyframes floatFabBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.float-whatsapp:hover, .float-call:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    color: var(--white);
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .float-whatsapp, .float-call {
        animation: none;
    }
}
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--black);
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); color: var(--white); }

/* Lightbox */
.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}
.lightbox-modal img { max-height: 85vh; border-radius: var(--radius); }

/* Alert */
.alert-custom {
    border-radius: 8px;
    border: none;
}

/* Carousels – contained width (no horizontal page scroll) */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.logo-carousel .carousel-slide {
    flex: 0 0 33.333%;
}
.logo-track .client-logo {
    flex: none;
    width: 100%;
}
@media (min-width: 768px) {
    .logo-carousel .carousel-slide {
        flex: 0 0 33.333%;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .site-header {
        background: var(--black);
        padding: 0.75rem 0;
    }
    .site-header .navbar {
        width: 100%;
    }
    .site-header .navbar-collapse {
        background: var(--black);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        max-width: 100%;
    }
    .navbar-brand {
        font-size: 1rem;
        max-width: calc(100% - 56px);
    }
    .brand-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header-search { display: none; }
    .mega-dropdown .dropdown-menu.mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        inset: auto !important;
    }
    .mega-menu-categories {
        padding-right: 0;
        border-right: none;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .mega-products-grid {
        grid-template-columns: 1fr;
    }
    .mega-products-inline {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem 1rem;
    }
    .mega-product-inline--all {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        margin-top: 0.25rem;
    }
    .hero-section {
        min-height: 0;
        min-height: unset;
        align-items: flex-start;
    }
    .hero-content {
        padding: calc(var(--header-height) + 0.75rem) 0 2rem;
        width: 100%;
    }
    .hero-badge {
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        margin-bottom: 0.85rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }
    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
    }
    .section-padding .container,
    .site-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    [data-aos] {
        max-width: 100%;
    }
}
@media (max-width: 767.98px) {
    :root { --header-height: 64px; }
    .hero-content {
        padding: calc(var(--header-height) + 0.5rem) 0 1.75rem;
    }
    .hero-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1rem; }
    .section-padding { padding: 60px 0; }
    .cta-banner-compact { padding: 1.75rem 0; }
    .cta-banner-actions { width: 100%; }
    .cta-banner-actions .btn { flex: 1; min-width: 140px; text-align: center; }
    .page-banner {
        padding: 1.25rem 0 1.15rem;
    }
    .page-inner .page-banner {
        padding: 1.35rem 0 1.3rem;
        min-height: 128px;
    }
    .page-banner h1 {
        font-size: clamp(1.4rem, 5.2vw, 1.75rem);
        line-height: 1.2;
    }
    .breadcrumb-custom {
        margin-top: 0.45rem;
        font-size: 0.85rem;
        gap: 0.25rem;
    }
    .contact-section-compact { padding: 1.75rem 0; }
    .contact-form-wrap { padding: 1.15rem; }
    .contact-info-card { padding: 1.15rem; }
    .contact-form-actions .btn { flex: 1; min-width: 120px; }
    .contact-map-wrap { height: 220px; }
    .float-actions {
        right: 1rem;
        bottom: 5.25rem;
        gap: 0.75rem;
    }
    .back-to-top { right: 15px; }
    .logo-carousel .carousel-slide {
        flex: 0 0 50%;
    }
}
@media (max-width: 991.98px) {
    .site-header-v2 .brand-logo-frame {
        height: 76px;
        overflow: visible;
    }
    .site-header-v2 .navbar-brand .brand-logo,
    .site-header-v2 .brand-logo-header {
        height: 76px;
        max-height: 76px;
        max-width: min(320px, 78vw);
    }
    .site-header-v2 .brand-logo--custom {
        height: 76px;
        max-height: 76px;
        transform: scale(1.15);
        transform-origin: left center;
        max-width: min(320px, 78vw);
    }
    .site-header-v2 .brand-lockup:hover .brand-logo--custom {
        transform: scale(1.15);
    }
}
@media (max-width: 575.98px) {
    :root {
        --topbar-height: 2.5rem;
        --nav-height: 84px;
        --mobile-gutter: 1rem;
    }
    .brand-logo {
        height: 72px;
        max-width: min(300px, 88vw);
    }
    .site-header-v2 .brand-lockup {
        max-width: calc(100% - 2.85rem);
    }
    .site-header-v2 .brand-logo-frame {
        height: 80px;
        overflow: visible;
    }
    .site-header-v2 .navbar-brand .brand-logo,
    .site-header-v2 .brand-logo-header {
        height: 80px;
        max-height: 80px;
        max-width: min(300px, 88vw);
    }
    .site-header-v2 .brand-logo--custom {
        height: 80px;
        max-height: 80px;
        transform: scale(1.12);
        transform-origin: left center;
        max-width: min(300px, 88vw);
    }
    .site-header-v2 .brand-lockup:hover .brand-logo--custom {
        transform: scale(1.12);
        opacity: 0.92;
    }
    .topbar-iso {
        font-size: 0.58rem;
    }
    .topbar-right {
        gap: 0.4rem;
    }
    .topbar-link-text {
        display: none;
    }
    .topbar-link .bi {
        font-size: 1rem;
    }
    .topbar-social {
        display: flex;
        padding-left: 0.5rem;
        margin-left: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        gap: 0.3rem;
    }
    .topbar-social .site-social-link {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    .btn-lg {
        padding: 0.65rem 1rem;
        font-size: 1rem;
    }
}

/* ========== V2 Redesign (reference layout) ========== */
.site-topbar {
    background: var(--black);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    position: sticky;
    top: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-topbar .container {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
}
.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--topbar-height);
    flex-wrap: wrap;
    padding: 0.35rem 0;
}
.topbar-iso { color: var(--orange); font-weight: 600; }
.topbar-iso i { margin-right: 0.35rem; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.topbar-right a,
.topbar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.topbar-right a:hover,
.topbar-link:hover { color: var(--orange); }
.topbar-social {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-left: 1rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.site-social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    filter: brightness(1.15) saturate(1.25);
}
.site-social-link i {
    color: #fff !important;
    -webkit-font-smoothing: antialiased;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.site-social-link:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.22) saturate(1.35);
    color: #fff !important;
}
.topbar-social .site-social-link {
    width: 30px;
    height: 30px;
    font-size: 0.92rem;
}
.site-social-link--facebook {
    background: #2b88ff;
}
.site-social-link--linkedin {
    background: #0077b5;
}
.site-social-link--instagram {
    background: linear-gradient(135deg, #ffdc40 0%, #ff3d7f 45%, #7b42ff 100%);
}
.site-social-link--x {
    background: #ffffff;
    color: #000 !important;
    border-color: rgba(255, 255, 255, 0.9);
}
.site-social-link--x i {
    color: #000 !important;
    filter: none;
}
.site-social-link--whatsapp {
    background: #34e077;
}
.site-social-link.is-placeholder {
    opacity: 1;
    cursor: default;
    pointer-events: none;
    filter: brightness(1.15) saturate(1.25);
}
.site-social-link.is-placeholder:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.15) saturate(1.25);
}
.footer-social.site-social,
.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.footer-social .site-social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.site-header.site-header-v2 {
    position: sticky;
    top: var(--topbar-height);
    z-index: 1001;
    background: var(--white) !important;
    padding: 0 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #eee;
    backdrop-filter: none;
}
.site-header-v2 .navbar { padding: 0.35rem 0; }
.site-header-v2 .navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
}
.site-header-v2 {
    overflow: visible;
    position: relative;
}
.site-header-v2 .navbar,
.site-header-v2 .navbar-collapse,
.site-header-v2 .header-nav-collapse,
.site-header-v2 .mega-dropdown {
    overflow: visible;
}
.site-header-v2 .products-nav-panel {
    z-index: 1060;
}
.site-header-v2 .header-nav-compact .products-nav-item {
    position: relative;
}
@media (min-width: 992px) {
    .site-header-v2 .header-nav-collapse {
        display: flex !important;
        flex: 1 1 auto;
        justify-content: flex-end;
        align-items: center;
        gap: 0.35rem;
    }
    .site-header-v2 .header-nav-compact {
        flex-direction: row;
        align-items: center;
        gap: 0.1rem;
        margin: 0 !important;
    }
    .site-header-v2 .header-nav-compact .nav-link {
        font-size: 0.72rem;
        font-weight: 600;
        padding: 0.4rem 0.45rem !important;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    .site-header-v2 .header-nav-compact .nav-link.active::after {
        left: 0.4rem;
        right: 0.4rem;
    }
    .site-header-v2 .header-nav-compact .dropdown-toggle::after {
        margin-left: 0.2rem;
        vertical-align: 0.15em;
        scale: 0.85;
    }
}
.site-header-v2 .nav-link {
    color: var(--gray-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.site-header-v2 .nav-link:hover,
.site-header-v2 .nav-link.active { color: var(--orange) !important; }
.site-header-v2 .nav-link.active::after {
    background: var(--orange);
    left: 0.75rem;
    right: 0.75rem;
}
.site-header-v2 .navbar-toggler {
    border-color: #ddd;
}
.site-header-v2 .navbar-toggler {
    padding: 0.35rem 0.55rem;
}
.site-header-v2 .brand-lockup {
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: 1.35rem;
    text-decoration: none;
    flex-shrink: 0;
    max-width: none;
    overflow: visible;
}
@media (min-width: 992px) {
    .site-header-v2 .brand-lockup {
        margin-left: 2rem;
    }
}
.site-header-v2 .brand-logo-frame {
    display: flex;
    align-items: center;
    height: 96px;
    line-height: 0;
    overflow: visible;
}
.site-header-v2 .navbar-brand .brand-logo,
.site-header-v2 .brand-logo-header {
    height: 96px;
    width: auto;
    max-width: min(480px, 75vw);
    max-height: 96px;
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: opacity 0.25s ease;
}
/* Uploaded logos often have extra padding in the image file */
.site-header-v2 .brand-logo--custom {
    height: 88px;
    max-height: 88px;
    max-width: min(520px, 78vw);
    transform: none;
}
.site-header-v2 .brand-lockup:hover .brand-logo-header {
    opacity: 0.92;
}
.site-header-v2 .brand-lockup:hover .brand-logo--custom {
    transform: translateY(-1px);
}
.site-header-v2 .brand-lockup:hover .brand-logo-header:not(.brand-logo--custom) {
    transform: translateY(-1px);
}
.site-footer-v2 .footer-brand-logo {
    height: 64px;
    max-width: 320px;
    filter: none;
}
.btn-header-cta {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.72rem !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 6px !important;
    white-space: nowrap;
}
.btn-header-cta .bi {
    font-size: 0.8em;
}
.site-header-v2 .header-actions {
    margin-left: 0.25rem;
    flex-shrink: 0;
}

/* Inner pages: header/topbar are in document flow — banner uses content padding + min-height */
.page-inner .page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 1.6rem;
    min-height: 118px;
}
.page-inner .page-banner .container {
    width: 100%;
}
.page-inner main > section:first-child:not(.page-banner) {
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .page-inner .page-banner {
        padding: 2rem 0 2.15rem;
        min-height: 168px;
    }
    .page-inner .page-banner h1 {
        font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    }
    .page-inner .breadcrumb-custom {
        margin-top: 0.5rem;
    }
}

/* Hero V2 */
.hero-v2 {
    position: relative;
    min-height: 85vh;
    min-height: max(520px, 85vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}
.hero-v2--animated .hero-v2-fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #0a0a0a;
}
.hero-v2--animated .hero-v2-fx::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(243, 112, 33, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 112, 33, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: heroGridDrift 32s linear infinite;
}
@keyframes heroGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(48px, 48px); }
}
.hero-v2-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-v2-media-img {
    position: absolute;
    top: 0;
    right: 0;
    width: min(65%, 960px);
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.88;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 18%, rgba(0, 0, 0, 0.75) 42%, #000 62%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 18%, rgba(0, 0, 0, 0.75) 42%, #000 62%);
}
.hero-v2-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0.88) 36%, rgba(10, 10, 10, 0.25) 56%, transparent 76%);
    z-index: 1;
    pointer-events: none;
}
.hero-v2-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.9;
}
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 70% 80% at 15% 40%, rgba(243, 112, 33, 0.12) 0%, transparent 55%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.2) 45%, transparent 72%);
    pointer-events: none;
}
.hero-v2-content {
    position: relative;
    z-index: 3;
    padding: 3rem 0 5rem;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
}
.hero-v2-content > .row {
    margin-left: 0;
    margin-right: 0;
}
.hero-v2-content > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    min-width: 0;
    max-width: 100%;
}
.hero-v2-kicker {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.hero-v2-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.hero-v2-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 2rem;
}
.hero-v2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
    background: transparent;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Features strip */
.features-strip {
    position: relative;
    z-index: 10;
    margin-top: -3.5rem;
    margin-bottom: 2rem;
}
.features-strip-inner {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    overflow: hidden;
}
.features-strip-item {
    padding: 1.35rem 1rem;
    text-align: center;
    border-right: 1px solid #eee;
    transition: var(--transition);
}
.features-strip-item:last-child { border-right: none; }
.features-strip-item:hover { background: #fffaf6; }
.features-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.65rem;
    border: 2px solid var(--orange);
    border-radius: 50%;
    color: var(--orange);
    font-size: 1.25rem;
}
.features-strip-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    line-height: 1.35;
}

/* About V2 */
.about-v2-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.btn-link-read {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}
.btn-link-read:hover { color: var(--orange-dark); }
.about-v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-v2-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--gray-dark);
}
.about-v2-list li i {
    color: var(--orange);
    font-size: 1.15rem;
    width: 28px;
}
.about-v2-visual {
    position: relative;
    padding: 1.25rem;
    background: #141414;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.about-v2-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #2a2a2a;
}
.about-v2-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.about-v2-deco-bars {
    top: -6px;
    left: 1.25rem;
    width: 12px;
    height: 52px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 22px 0 0 var(--orange), 44px -10px 0 var(--orange);
}
.about-v2-deco-bars::after {
    content: '';
    position: absolute;
    left: 58px;
    top: -4px;
    width: 38px;
    height: 28px;
    border: 3px solid var(--orange);
    border-radius: 3px;
    background: transparent;
}
.about-v2-deco-ring {
    display: none;
}
.about-v2-main {
    width: 100%;
    display: block;
    min-height: 340px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    background: #1a1a1a;
}
.about-v2-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 1.35rem;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(243, 112, 33, 0.45);
    z-index: 3;
}
.about-v2-badge strong {
    display: block;
    font-size: 1.75rem;
    font-family: var(--font-display);
    line-height: 1;
}
.about-v2-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stats-section-v2 {
    background: var(--black);
    padding: 3.5rem 0;
}
.stats-section-v2 .stat-number { color: var(--orange); }
.stats-section-v2 .stat-label { color: rgba(255, 255, 255, 0.75); }

/* Products dark section */
.section-products-v2 {
    background: #1a1a1a;
    padding: 4.5rem 0;
}
.section-title-v2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    text-transform: uppercase;
}
.section-subtitle-v2 {
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0.75rem auto 0;
}
.products-slider-wrap {
    position: relative;
    padding: 0 3rem;
}
.products-slider-viewport {
    overflow: hidden;
}
.products-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.product-card-v2 {
    flex: 0 0 calc(25% - 0.95rem);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.product-card-v2-img {
    height: 180px;
    background: var(--gray-light);
    overflow: hidden;
}
.product-card-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-v2-body {
    padding: 1.25rem;
}
.product-card-v2-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.product-card-v2-body p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}
.product-card-v2-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
}
.product-card-v2-link:hover { color: var(--orange-dark); }
.products-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: var(--white);
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(243, 112, 33, 0.45);
    transition: var(--transition);
}
.products-slider-btn:hover { background: var(--orange-dark); }
.products-slider-prev { left: 0; }
.products-slider-next { right: 0; }

/* Capabilities grid */
.section-capabilities {
    padding: 0;
}
.cap-card {
    position: relative;
    min-height: 320px;
    border-radius: 0;
    overflow: hidden;
    background: var(--black) var(--cap-bg) center/cover no-repeat;
}
.cap-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.88) 100%);
}
.cap-card-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}
.cap-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.cap-card-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.cap-card-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}
.cap-card-content a {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
}

/* Industries row */
.section-industries-v2 { background: var(--gray-light); }
.industries-icon-row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.25rem 0.75rem;
    max-width: 1140px;
    margin: 0 auto;
}
.industry-icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.industry-icon-circle {
    width: 76px;
    height: 76px;
    margin: 0 auto 0.75rem;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--orange);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.12);
}
.industry-icon-circle i {
    font-size: 1.85rem;
    line-height: 1;
    display: block;
}
.industry-icon-circle img,
.industry-icon-circle .industry-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}
.industry-icon-circle .industry-icon-fallback {
    font-size: 1.85rem;
    line-height: 1;
}
.industry-icon-circle .industry-icon-fallback[hidden] {
    display: none !important;
}
.industry-icon-item:hover .industry-icon-circle {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(243, 112, 33, 0.28);
}
.industry-icon-item:hover .industry-icon-circle img {
    filter: brightness(0) invert(1);
}
.industry-icon-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-dark);
    line-height: 1.35;
    max-width: 7.5rem;
}

/* CTA V2 (legacy pages) */
.cta-banner-v2 {
    padding: 3rem 0;
    background: var(--gray-light);
}
.cta-banner-v2-inner {
    background: linear-gradient(135deg, var(--black) 0%, #2a1810 100%);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--white);
}
.cta-banner-v2-inner h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}
.cta-banner-v2-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.cta-banner-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Footer V2 — partner CTA + columns + trust bar */
.site-footer-v2 {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #121212;
    color: rgba(255, 255, 255, 0.72);
}
.footer-bg-fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #121212;
}
.footer-bg-fx::before {
    content: '';
    position: absolute;
    inset: -50%;
    z-index: 0;
    background-image:
        linear-gradient(rgba(243, 112, 33, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 112, 33, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    animation: footerGridDrift 36s linear infinite;
}
.footer-bg-fx::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(243, 112, 33, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 90% 80%, rgba(243, 112, 33, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(10, 10, 10, 0.55) 100%);
    pointer-events: none;
}
@keyframes footerGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(42px, 42px); }
}
.footer-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.55;
}

/* Partner CTA band */
.footer-partner-cta {
    position: relative;
    z-index: 3;
    padding: 2.25rem 0 0;
}
.footer-partner-cta-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding: 1.65rem 1.75rem;
    border-radius: 16px;
    background:
        linear-gradient(105deg, #1a120e 0%, #141414 42%, #1c100a 100%);
    border: 1px solid rgba(243, 112, 33, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.footer-partner-cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 40% 80% at 88% 50%, rgba(243, 112, 33, 0.28) 0%, transparent 60%),
        repeating-linear-gradient(
            -32deg,
            transparent 0,
            transparent 14px,
            rgba(243, 112, 33, 0.07) 14px,
            rgba(243, 112, 33, 0.07) 16px
        );
    opacity: 0.95;
}
.footer-partner-cta-glow::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 0 12px rgba(243, 112, 33, 0.9),
        62px 28px 0 0 rgba(243, 112, 33, 0.55),
        118px -18px 0 -2px rgba(243, 112, 33, 0.4),
        170px 36px 0 -1px rgba(243, 112, 33, 0.65);
    top: 28%;
    right: 18%;
    animation: footerPartnerPulse 3.2s ease-in-out infinite;
}
@keyframes footerPartnerPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
.footer-partner-cta-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex: 1 1 320px;
    min-width: 0;
}
.footer-partner-hex {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: 1.55rem;
    background: rgba(243, 112, 33, 0.08);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    border: 1.5px solid rgba(243, 112, 33, 0.55);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.footer-partner-copy {
    min-width: 0;
}
.footer-partner-title {
    color: var(--white);
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    margin: 0 0 0.3rem;
    line-height: 1.25;
    font-weight: 700;
}
.footer-partner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}
.footer-partner-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}
.footer-btn-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.15rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(243, 112, 33, 0.28);
}
.footer-btn-inquiry .bi-chevron-right {
    font-size: 0.85em;
    opacity: 0.9;
}
.footer-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    transition: var(--transition);
}
.footer-btn-whatsapp:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.site-footer-v2 .footer-top {
    background: transparent;
    padding: 2.75rem 0 2.25rem;
    position: relative;
    z-index: 3;
}
.site-footer-v2 .footer-heading {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1.15rem;
    position: relative;
    padding-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.site-footer-v2 .footer-heading > .bi {
    color: var(--orange);
    font-size: 1.05em;
}
.site-footer-v2 .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: var(--orange);
}
.site-footer-v2 .footer-about {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}
.footer-follow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}
.footer-follow-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}
.footer-follow-wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}
.footer-follow-wa:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.05);
}

.site-footer-v2 .footer-links-ruled {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer-v2 .footer-links-ruled li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer-v2 .footer-links-ruled li:last-child {
    border-bottom: none;
}
.site-footer-v2 .footer-links-ruled a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.72rem 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}
.site-footer-v2 .footer-links-ruled a:hover {
    color: var(--orange);
    padding-left: 4px;
}
.site-footer-v2 .footer-links-ruled a .bi-chevron-right {
    color: var(--orange);
    font-size: 0.75rem;
    opacity: 0.9;
}
.site-footer-v2 .footer-downloads a {
    justify-content: flex-start;
}
.site-footer-v2 .footer-downloads a .bi-file-earmark-text {
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.site-footer-v2 .footer-downloads a span {
    line-height: 1.35;
}

.footer-contact-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-v3 li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}
.footer-contact-v3 li:last-child {
    margin-bottom: 0;
}
.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 112, 33, 0.14);
    border: 1px solid rgba(243, 112, 33, 0.35);
    color: var(--orange);
    font-size: 0.95rem;
}
.footer-contact-v3 a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.footer-contact-v3 a:hover {
    color: var(--orange);
}

.footer-touch-card {
    position: relative;
    padding: 1.15rem 1.1rem 1.2rem;
    border-radius: 12px;
    border: 1.5px solid rgba(243, 112, 33, 0.55);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.06) 0 1.5px, transparent 2px),
        radial-gradient(circle at 72% 64%, rgba(255, 255, 255, 0.05) 0 1.5px, transparent 2px),
        radial-gradient(circle at 40% 88%, rgba(255, 255, 255, 0.04) 0 1px, transparent 2px),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.15));
    background-size: 18px 18px, 22px 22px, 16px 16px, auto;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.site-footer-v2 .footer-touch-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.footer-touch-card .footer-btn-inquiry {
    font-size: 0.85rem;
    padding: 0.65rem 0.85rem;
}

.site-footer-v2 .footer-bottom {
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(243, 112, 33, 0.45);
    position: relative;
    z-index: 3;
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    padding: 1.05rem 0;
}
.footer-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}
.footer-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1.25rem;
    margin: 0;
    padding: 0;
}
.footer-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.footer-trust .bi {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
}
.footer-legal a:hover { color: var(--orange); }
.footer-legal span { color: rgba(255, 255, 255, 0.25); margin: 0 0.5rem; }

@media (prefers-reduced-motion: reduce) {
    .footer-bg-fx::before,
    .footer-network-canvas,
    .footer-partner-cta-glow::after {
        animation: none !important;
    }
    .footer-network-canvas {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .footer-partner-cta-card {
        padding: 1.4rem 1.25rem;
    }
    .footer-partner-actions {
        width: 100%;
    }
    .footer-partner-actions .btn {
        flex: 1 1 auto;
    }
}
@media (max-width: 767.98px) {
    .footer-partner-cta {
        padding-top: 1.5rem;
    }
    .footer-partner-cta-main {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-trust {
        justify-content: center;
    }
}

/* Mega menu on white header */
.site-header-v2 .mega-dropdown .dropdown-menu.mega-menu {
    z-index: 1055;
    overflow: visible;
}
.site-header-v2 .mega-menu {
    background: var(--white) !important;
    border-top: 1px solid #eee;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}
.site-header-v2 .mega-title {
    color: var(--orange) !important;
}
.site-header-v2 .mega-list a,
.site-header-v2 .mega-product-link {
    color: var(--gray-dark) !important;
}
.site-header-v2 .mega-list a:hover,
.site-header-v2 .mega-product-link:hover {
    color: var(--orange) !important;
    border-bottom-color: var(--orange);
}
.site-header-v2 .mega-product-link:hover {
    background: rgba(243, 112, 33, 0.08);
}
.site-header-v2 .products-nav-dropdown-head-text {
    color: #1a3a5c;
}
.site-header-v2 .products-nav-dropdown-foot {
    background: #1a3a5c;
}
.site-header-v2 .products-nav-dropdown-foot:hover {
    background: #0f2844;
}
.page-inner .page-banner {
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .product-card-v2 { flex: 0 0 calc(33.333% - 0.85rem); }
    .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
    .features-strip-item:nth-child(3) { border-right: none; }
    .industries-icon-row { grid-template-columns: repeat(5, 1fr); }
    .industry-icon-circle {
        width: 68px;
        height: 68px;
    }
    .industry-icon-circle img {
        width: 38px;
        height: 38px;
    }
}
@media (max-width: 991.98px) {
    :root {
        --topbar-height: 2.75rem;
        --nav-height: 72px;
    }
    .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .product-card-v2 { flex: 0 0 calc(50% - 0.65rem); }
    .site-header-v2 .navbar > .container {
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        row-gap: 0.5rem;
    }
    .site-header-v2 .navbar {
        padding: 0.35rem 0;
    }
    .site-header-v2 .brand-lockup {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 2.85rem);
        order: 1;
        margin-left: 0;
    }
    .site-header-v2 .navbar-toggler {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
        z-index: 1010;
        position: relative;
    }
    .site-header-v2 .header-nav-collapse {
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    .site-header-v2 .navbar-collapse,
    .site-header-v2 .navbar-collapse.show,
    .site-header-v2 .navbar-collapse.collapsing {
        background: var(--white);
        padding: 0.85rem 0.25rem 1rem;
        border-radius: var(--radius);
        margin-top: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--admin-border, #e8ecf1);
    }
    .site-header-v2 .header-nav-compact {
        width: 100%;
    }
    .site-header-v2 .header-nav-compact .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0 !important;
    }
    .site-header-v2 .header-actions {
        margin-top: 0.75rem;
        width: 100%;
    }
    .site-header-v2 .header-actions .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
    .site-topbar-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.35rem 0;
    }
    .topbar-iso {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 0.62rem;
        line-height: 1.3;
        padding-right: 0.35rem;
    }
    .topbar-right {
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.68rem;
        flex-wrap: nowrap;
    }
    .topbar-link-text {
        max-width: 38vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-v2--animated .hero-v2-fx::before {
        animation: none;
    }
    .hero-v2-network {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .site-header-v2 .brand-lockup {
        margin-left: 0;
    }
    .site-header-v2 .brand-logo-frame {
        height: 80px;
        overflow: visible;
    }
    .site-header-v2 .navbar-brand .brand-logo,
    .site-header-v2 .brand-logo-header {
        height: 80px;
        max-height: 80px;
        max-width: min(320px, 85vw);
    }
    .site-header-v2 .brand-logo--custom {
        height: 80px;
        max-height: 80px;
        transform: scale(1.12);
        transform-origin: left center;
        max-width: min(320px, 85vw);
    }
    .site-header-v2 .brand-lockup:hover .brand-logo--custom {
        transform: scale(1.12);
    }
    .hero-v2 {
        min-height: clamp(480px, 72vh, 620px);
        padding: 1.25rem 0 2.75rem;
        overflow-x: hidden;
    }
    .hero-v2-media-img {
        width: 100%;
        opacity: 0.55;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, #000 70%);
        mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, #000 70%);
    }
    .hero-v2-media::after {
        background: linear-gradient(180deg, #0a0a0a 0%, rgba(10, 10, 10, 0.75) 45%, transparent 85%);
    }
    .hero-v2-content {
        padding-top: 2rem;
        padding-bottom: 2.75rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-v2-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.55rem;
    }
    .hero-v2-title {
        font-size: clamp(1.15rem, 5.2vw, 1.55rem);
        line-height: 1.22;
        margin-bottom: 0.75rem;
        letter-spacing: 0.01em;
    }
    .hero-v2-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    .hero-v2-cta {
        flex-direction: column;
        gap: 0.55rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-v2-cta .btn {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
        box-sizing: border-box;
    }
    .hero-v2-cta .btn-lg {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    .float-actions {
        right: 0.85rem;
        bottom: 4.85rem;
        gap: 0.7rem;
    }
    .float-whatsapp, .float-call {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .features-strip { margin-top: -1.5rem; }
    .features-strip-inner { grid-template-columns: 1fr; }
    .features-strip-item { border-right: none; border-bottom: 1px solid #eee; }
    .product-card-v2 { flex: 0 0 85%; min-width: 0; }
    .products-slider-wrap { padding: 0 2.5rem; }
    .industries-icon-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.5rem;
    }
    .industry-icon-circle {
        width: 64px;
        height: 64px;
    }
    .industry-icon-circle i {
        font-size: 1.5rem;
    }
    .industry-icon-circle img {
        width: 36px;
        height: 36px;
    }
    .industry-icon-label {
        font-size: 0.62rem;
        max-width: 100%;
    }
    .cta-banner-v2-inner { padding: 1.75rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* CMS content from admin → Pages */
.cms-page-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body, #4a5568);
}
.cms-page-content > *:last-child {
    margin-bottom: 0;
}
.cms-page-content h2,
.cms-page-content h3,
.cms-page-content h4 {
    color: var(--dark, #111);
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
.cms-page-content h2 { font-size: 1.75rem; }
.cms-page-content h3 { font-size: 1.35rem; }
.cms-page-content p {
    margin-bottom: 1rem;
}
.cms-page-content ul,
.cms-page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.35rem;
}
.cms-page-content ul li {
    margin-bottom: 0.5rem;
}
.cms-page-content a {
    color: var(--orange, #F37021);
    text-decoration: underline;
}
.cms-page-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}
.cms-page-content table td,
.cms-page-content table th {
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
}
.cms-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
