@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    /* Elite Industrial Palette - Iron Edition */
    --iron: #1a1a1a;
    /* Deep Textured Gray */
    --slate: #242424;
    /* Mid Tone Gray */
    --coal: #0e0e0e;
    /* Deepest Accent */
    --silver: #d1d1d1;
    /* Text color */
    --ash: #8e8e8e;
    /* Muted text */
    --silk: #f5f5f5;
    /* Minimal usage */

    /* The Gold Foil Engine - High Vibrancy */
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 70%, #fbf5b7 100%);
    --gold-solid: #bf953f;
    --gold-glow: 0 0 30px rgba(191, 149, 63, 0.4);

    /* Layout */
    --header-h: 100px;
    /* Increased for better logo nesting */
    --container-max: 1320px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.6s var(--ease);

    /* Effects */
    --glass: rgba(15, 15, 15, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
    --card-bg: #222222;
}

/* Texture Pattern Overlay */
.iron-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Global Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--coal);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-solid);
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--iron);
    color: var(--silver);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.serif {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* === ELITE HEADER & NAVIGATION (SCOOPED) === */
header {
    height: var(--header-h);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Removed background from header itself to apply mask to pseudo */
    background: transparent;
    border-bottom: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    overflow: visible !important;
}

/* The Scooped Background - MATCHING REFERENCE IMAGE */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hole centered at 80px vertically. Radius 70px matches 140px logo. */
    /* Creates a 10px bridge at top (80-70) and cuts through bottom (80+70 > 100) */
    background: radial-gradient(circle at 50% 80px, transparent 70px, var(--glass) 71px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    -webkit-mask-image: radial-gradient(circle at 50% 80px, transparent 70px, black 71px);
    mask-image: radial-gradient(circle at 50% 80px, transparent 70px, black 71px);
    z-index: -1;
    transition: var(--transition);
}

header.scrolled::before {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-mask-image: none;
    mask-image: none;
    border-bottom: 1px solid rgba(191, 149, 63, 0.2);
}

header.scrolled {
    height: 75px;
    padding: 0 !important;
}

/* === SCROLLED HEADER STATE (DESKTOP) === */
header.scrolled {
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* RESERVED ZONE STRATEGY: PADDING FORCES SEPARATION */
header.scrolled nav {
    display: flex !important;
    justify-content: center;
    /* CENTERED AS REQUESTED */
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
}

/* LOGO PINS TO RESERVED ZONE (DESKTOP ONLY) */
header.scrolled .logo-seal {
    position: absolute !important;
    left: -250px !important;
    /* PUSHED FURTHER LEFT */
    /* BACK TO EXTREME LEFT AS PER USER FIX */
    top: 50%;
    transform: translateY(-50%);
    width: auto !important;
    max-width: none !important;
    height: 100%;
    /* Full height of header */
    background: transparent !important;
    /* REMOVED GOLD BLOCK */
    padding: 0 40px;
    clip-path: none;
    /* REMOVE SHAPE CUT */
    display: flex !important;
    flex-direction: row !important;
    /* ALL INLINE */
    align-items: baseline !important;
    /* BASELINE ALIGNMENT IS CRITICAL */
    gap: 4px;
    /* Space between words */
    margin: 0;
    box-shadow: none !important;
    border: none !important;
    /* FORCE NO BORDER */
    outline: none !important;
    text-decoration: none;
    border-radius: 0 !important;
    z-index: 500;
    white-space: nowrap !important;
}

header.scrolled .logo-seal::before {
    display: none !important;
}

header.scrolled .logo-seal::after {
    display: none !important;
}

header.scrolled .seal-img {
    display: block !important;
    /* SHOW ICON IN BOTH MODES */
    width: 35px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Wrapper reset for scrolled mode */
header.scrolled .seal-brand-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    /* Align inner items to baseline */
    gap: 2px;
}

header.scrolled .seal-text {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

header.scrolled .seal-sub {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

header.scrolled .seal-year {
    font-size: 14px;
    /* Small year */
    color: #ccc;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 6px;
    display: block !important;
    border: none;
}

header.scrolled .seal-year {
    font-size: 14px;
    /* Small year */
    color: #ccc;
    /* Slightly muted white */
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 5px;
    /* Offset from LER */
    margin-top: 4px;
    /* Slight baseline adjustment */
    display: block !important;
    /* FORCE VISIBILITY */
}

/* === MOBILE LOGO FIX === */
@media screen and (max-width: 1200px) {
    header.scrolled .logo-seal {
        left: 20px !important;
        /* RESET LEFT FOR MOBILE */
        position: relative !important;
        /* Back to relative flow or appropriate absolute */
        padding: 0;
        top: auto;
        transform: none;
        background: transparent !important;
        clip-path: none;
    }

    /* Ensure Header Logo Visuals on Mobile */
    header.scrolled .seal-text {
        font-size: 20px;
    }

    header.scrolled .seal-sub {
        font-size: 20px;
    }

    /* Ensure Drawer Logo Visuals */
    .logo-seal.mini {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        width: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: row;
        /* FORCE INLINE */
        align-items: center;
        gap: 10px;
    }

    .logo-seal.mini .seal-img {
        display: block !important;
        width: 30px;
        height: auto;
        filter: brightness(0) invert(1);
        /* Matches User Image (Silver/White) */
    }

    .logo-seal.mini .seal-brand-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

    .logo-seal.mini .seal-text,
    .logo-seal.mini .seal-sub {
        font-size: 22px;
        font-weight: 900;
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .logo-seal.mini .seal-year {
        display: block !important;
        font-size: 15px;
        /* Visual match */
        color: #fff !important;
        margin-left: 8px;
        font-weight: 900;
        /* Ultra Bold as per Image */
    }
}

/* MENU ITEMS - FORCED RIGHT FLOW */
header.scrolled .nav-side {
    display: flex;
    gap: 30px;
    width: auto !important;
    position: static;
    transform: none;
    justify-content: flex-end;
    align-items: center;
    /* VERTICAL CENTER */
    height: 100%;
    /* Fill header height */
}

header.scrolled .nav-side.left {
    margin-right: 30px;
    margin-left: 0;
    /* No auto margin needed with padding strategy */
    padding-right: 0;
}

/* RESET ANY WEIRD FLEX BASES */
header.scrolled .nav-side a {
    white-space: nowrap;
    display: flex;
    /* Flex helps centering */
    align-items: center;
    /* True center */
    height: 100%;
}

/* === NAVIGATION (DESKTOP DEFAULT) === */
nav {
    display: grid;
    grid-template-columns: 1fr 170px 1fr;
    /* Center column RESERVES space for logo */
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0;
    height: 100%;
}

.nav-side {
    display: flex;
    gap: 40px;
    width: 100%;
}

/* Remove bullets from WordPress menu items */
.nav-side li,
.drawer-nav li {
    list-style: none;
    display: contents;
}

.nav-side.left {
    justify-content: flex-end;
    padding-right: 0;
    /* Grid handles spacing */
    margin: 0;
}

.nav-side.right {
    justify-content: flex-start;
    padding-left: 0;
    /* Grid handles spacing */
    margin: 0;
    align-items: center;
    /* Vertically center badge and menu */
}

.nav-side a {
    text-decoration: none;
    color: var(--ash);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-side a:hover,
.nav-side a.active {
    color: var(--gold-solid);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

/* === THE ROYAL SEAL (STATIC LOGO) === */
.logo-seal {
    /* Positioned in the center grid cell */
    grid-column: 2;
    position: relative;
    /* In flow, but shifted */
    left: auto;
    top: 20px;
    /* Hang half-way down */
    transform: none;
    /* Reset centering hacks */
    width: 140px;
    /* Increased slightly for image and text */
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #222 0%, #000 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    /* STACK IMAGE, BRAND AND YEAR */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 50;
    margin: 0 auto;
    /* Center in grid cell */
    padding-top: 5px;
    gap: 2px;
}

.seal-img {
    width: 45px;
    height: auto;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.seal-brand-row {
    display: flex;
    flex-direction: row;
    /* TÖZEN + LER SIDE BY SIDE */
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.seal-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    letter-spacing: -1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.seal-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-top: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.seal-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* DECORATIVE RINGS (PSEUDO ELEMENTS) */
.logo-seal::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(191, 149, 63, 0.3);
    animation: rotate 60s linear infinite;
}

.logo-seal::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(191, 149, 63, 0.1);
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* RESET ANY WEIRD FLEX BASES */
header.scrolled .nav-side a {
    white-space: nowrap;
}

header.scrolled .nav-side.right {
    padding-left: 0;
}

/* === THE ROYAL SEAL (LOGO - PERFECTLY NESTLED) === */
/* The original .logo-seal and its pseudo-elements were removed as per instruction */

/* === HAMBURGER MENU (MOBILE) === */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--gold-solid);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1003;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: all 0.5s var(--ease);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.mobile-drawer.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-drawer a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-drawer a:hover {
    color: var(--gold-solid);
    transform: scale(1.1);
}

/* === MOBILE STICKY BOTTOM NAV === */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--ash);
    text-decoration: none;
    font-size: 9px;
    letter-spacing: 1px;
    gap: 5px;
    width: 33%;
    text-align: center;
}

.mobile-nav-item i {
    font-size: 18px;
    color: var(--silver);
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--gold-solid);
}

.mobile-nav-item.active i,
.mobile-nav-item:hover i {
    color: var(--gold-solid);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.4);
}

/* === SUPREME SLIDER HERO === */
.hero-slider-container {
    height: 90vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}

/* === LOGO TICKER === */
.logo-ticker {
    background: rgba(15, 15, 15, 0.8);
    border-top: 1px solid rgba(191, 149, 63, 0.2);
    border-bottom: 1px solid rgba(191, 149, 63, 0.2);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    width: calc(250px * 12);
    /* 6 logos * 2 sets */
    animation: scroll 30s linear infinite;
}

.ticker-item {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.ticker-item img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.6;
    transition: var(--transition);
}

.ticker-item:hover img {
    filter: grayscale(0) brightness(1.2);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(34, 34, 34, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
    z-index: 10;
    /* BOOSTED TO ENSURE CLICKABILITY */
    text-align: center;
    position: relative;
    pointer-events: auto !important;
    /* FORCE INTERACTIVITY */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

.hero-actions {
    position: relative;
    z-index: 11;
    pointer-events: auto !important;
}

/* Original Hero Styles */
.hero-iron {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-iron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(34, 34, 34, 0.3) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-tag {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 6px;
    font-size: 13px;
    margin-bottom: 30px;
    display: block;
}

.hero-brand-icon {
    width: 220px;
    /* Maximum size as requested */
    height: auto;
    margin-top: 50px;
    /* Lowered as requested */
    margin-bottom: 35px;
    filter: drop-shadow(0 0 35px rgba(191, 149, 63, 0.6));
    animation: pulseIcon 4s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.hero-content h1,
.hero-iron h1 {
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1;
    margin-bottom: 40px;
    color: #fff;
}

/* === BUTTONS === */
.btn-elite {
    display: inline-flex;
    align-items: center;
    padding: 20px 50px;
    background: var(--gold-gradient);
    color: var(--coal);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border-radius: 0;
    position: relative;
    transition: var(--transition);
    border: none;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-elite:hover {
    transform: scale(1.02);
    box-shadow: var(--gold-glow);
}

/* === TECH SHAPES & FRAMES === */
.tech-frame {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(191, 149, 63, 0.1);
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    transition: var(--transition);
    max-width: 450px;
    max-height: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.tech-frame img {
    width: 100%;
    height: auto;
    max-height: 530px;
    object-fit: contain;
    display: block;
    clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
    filter: grayscale(0.5) brightness(0.8);
    transition: var(--transition);
}

.tech-frame:hover {
    border-color: var(--gold-solid);
}

.tech-frame:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

/* === SECTIONS === */
section {
    padding: 80px 0;
    /* Reduced from 120px */
}

.section-title-wrap {
    margin-bottom: 80px;
    text-align: center;
}

.section-num {
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.section-title {
    font-size: 48px;
    margin-top: -30px;
    color: #fff;
}

/* === PROFESSIONAL STATS INSTRUMENT === */
.stats-instrument {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 40px 0;
    /* Reduced from 80px */
    margin-bottom: 20px;
    /* Reduced from 80px */
    position: relative;
}

.stat-box {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Vertical Dividers */
.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(191, 149, 63, 0.3), transparent);
}

.stat-val {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 10px;
    color: var(--gold-solid);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.8;
}

/* === ELITE GRID === */
.elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.elite-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30% 100%, 0 100%);
}

.elite-card:hover {
    transform: translateY(-10px);
    border-color: rgba(191, 149, 63, 0.3);
}

.elite-card i {
    font-size: 32px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    display: block;
}

.elite-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

/* === CONTACT PAGE SPECIFIC === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-block {
    background: var(--coal);
    padding: 60px;
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.contact-form-block {
    padding-top: 20px;
}

.field-group {
    margin-bottom: 25px;
}

.field-group label {
    display: block;
    font-size: 10px;
    color: var(--gold-solid);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-solid);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h4 {
    font-size: 10px;
    color: var(--gold-solid);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* === PRODUCT TECH LIST (Listing Cards) === */
.product-tech-list {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row i {
    width: 32px;
    height: 32px;
    background: rgba(191, 149, 63, 0.1);
    color: var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 9px;
    color: var(--ash);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.spec-value {
    font-size: 13px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.elite-card p {
    font-size: 14px;
    color: var(--ash);
}

/* === IMPACT BLOCK === */
.impact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-content {
    padding-right: 40px;
}

/* === FOOTER IRON REDESIGN === */
footer {
    background: var(--coal);
    padding: 100px 0 0;
    /* Standardized start */
    border-top: 1px solid rgba(191, 149, 63, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Footer Tech Frame - Direct Page-Level Coverage */
.footer-wrapper {
    position: relative;
    padding: 80px 5%;
    /* Expansive internal padding */
    width: 100%;
    /* Spans full parent width */
    box-sizing: border-box;
    border: 1px solid rgba(191, 149, 63, 0.1);
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(60px 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0 60px);
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(191, 149, 63, 0.2);
    clip-path: polygon(40px 0, 80px 0, 80px 1px, 40px 1px, 1px 40px, 1px 80px, 0 80px, 0 40px);
    pointer-events: none;
}

.footer-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(191, 149, 63, 0.2);
    clip-path: polygon(calc(100% - 40px) 100%, calc(100% - 80px) 100%, calc(100% - 80px) calc(100% - 1px), calc(100% - 40px) calc(100% - 1px), calc(100% - 1px) calc(100% - 40px), calc(100% - 1px) calc(100% - 80px), 100% calc(100% - 80px), 100% calc(100% - 40px));
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Equal, wider distribution */
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 14px;
    /* Increased from 11px */
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 900;
}

.footer-links {
    list-style: none;
    /* Remove bullets */
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--ash);
    font-size: 15px;
    /* Increased from 13px */
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-solid);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    /* Increased from 10px */
    color: var(--ash);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.netoxi-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ash);
    font-size: 11px;
    text-decoration: none;
    transition: var(--transition);
}

.netoxi-credit:hover {
    color: var(--gold-solid);
}

.netoxi-credit span {
    color: var(--gold-solid);
    font-weight: 900;
}

/* === BACK TO TOP BUTTON === */
.tech-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--coal);
    border: 1px solid rgba(191, 149, 63, 0.4);
    color: var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s var(--ease);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.tech-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tech-top-btn:hover {
    background: var(--gold-solid);
    color: #000;
    box-shadow: var(--gold-glow);
    transform: scale(1.1);
}

.tech-top-btn i {
    font-size: 20px;
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--iron);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease-out;
}

.thread-spool {
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(191, 149, 63, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thread-winding {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--gold-solid);
    border-radius: 50%;
    animation: spinThread 1s linear infinite;
}

.thread-core {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
    animation: pulseCore 1.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold-solid);
    text-transform: uppercase;
    animation: pulseCore 2s ease-in-out infinite;
}

@keyframes spinThread {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseCore {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

/* ANIMATIONS */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE & MOBILE === */
@media (max-width: 1200px) {
    .elite-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .nav-side {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats-instrument {
        gap: 50px;
    }

    .stat-box:not(:last-child)::after {
        right: -25px;
    }
}

@media (max-width: 768px) {

    /* MOBILE HEADER - NO SCOOP, SOLID BAR */
    header::before {
        -webkit-mask-image: none !important;
        mask-image: none !important;
        background: #0a0a0a !important;
        height: 70px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header,
    header.scrolled {
        height: 70px !important;
    }

    header .container nav {
        display: flex;
        justify-content: space-between;
        /* CRITICAL: SEPARATES LOGO AND HAMBURGER */
        align-items: center;
        position: relative;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .nav-side {
        display: none;
    }

    /* LOGO: RELATIVE POSITIONING TO PARTICIPATE IN FLEX LAYOUT */
    .logo-seal {
        position: relative !important;
        /* No longer absolute */
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
        align-items: center;
        padding: 0 !important;
        z-index: 1011;
        margin-right: auto;
        /* Push everything else right if needed */
    }

    .seal-text {
        font-size: 22px !important;
        font-weight: 900 !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        line-height: 1;
    }

    .seal-sub {
        font-size: 13px !important;
        color: var(--gold-solid) !important;
        -webkit-text-fill-color: var(--gold-solid) !important;
        letter-spacing: 2px !important;
        font-weight: 700;
        margin-top: 2px;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 1012;
        font-size: 24px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        /* Hit area */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* STATS STACKING */
    .stats-instrument {
        flex-direction: column;
        gap: 40px;
        padding: 50px 0;
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }

    .stat-val {
        font-size: 50px;
    }

    /* HERO ADJUSTMENTS */
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    section {
        padding: 60px 0;
    }

    /* ENABLE MOBILE NAV ONLY HERE */
    .mobile-bottom-nav {
        display: flex !important;
    }

    body {
        padding-bottom: 60px !important;
    }
}

/* === MOBILE DRAWER THEME - PREMIUM DARK === */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    /* Reset left/right logic */
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateY(-100%);
    /* Slide down from top */
    opacity: 0;
    pointer-events: none;
}

/* === TECH-STYLE MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(15px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.tech-modal-frame {
    width: 90%;
    max-width: 600px;
    background: #111111;
    position: relative;
    padding: 60px 40px 40px;
    border: 1px solid rgba(191, 149, 63, 0.1);
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    transform: scale(0.95);
    transition: all 0.5s var(--ease);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .tech-modal-frame {
    transform: scale(1);
}

/* Modal Decorative Accents */
.tech-modal-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(191, 149, 63, 0.4);
    clip-path: polygon(40px 0, 80px 0, 80px 1px, 40px 1px, 1px 40px, 1px 80px, 0 80px, 0 40px);
    pointer-events: none;
}

.tech-modal-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(191, 149, 63, 0.4);
    clip-path: polygon(calc(100% - 40px) 100%, calc(100% - 80px) 100%, calc(100% - 80px) calc(100% - 1px), calc(100% - 40px) calc(100% - 1px), calc(100% - 1px) calc(100% - 40px), calc(100% - 1px) calc(100% - 80px), 100% calc(100% - 80px), 100% calc(100% - 40px));
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--gold-solid);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.quote-title {
    margin-bottom: 30px;
}

.quote-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quote-title p {
    color: var(--gold-solid);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-form label {
    font-size: 10px;
    font-weight: 700;
    color: var(--ash);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--gold-solid);
    background: rgba(191, 149, 63, 0.05);
}

.quote-form .btn-elite {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }

    .tech-modal-frame {
        padding: 50px 25px 30px;
    }
}

.mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* === SINGER NAV BADGE === */
.singer-nav-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid var(--gold-solid);
    background: rgba(191, 149, 63, 0.05);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
    min-width: 140px;
    margin-top: 5px;
    /* Nudge down as requested */
}

.singer-nav-badge:hover {
    background: var(--gold-solid);
    transform: translateY(-2px);
}

.singer-nav-badge .badge-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold-solid);
    letter-spacing: 2px;
    margin-bottom: 3px;
    transition: var(--transition);
}

.singer-nav-badge .badge-sub {
    font-size: 8px;
    font-weight: 600;
    color: #fff;
    opacity: 0.7;
    letter-spacing: 1px;
}

.singer-nav-badge:hover .badge-sub {
    color: #000;
    opacity: 1;
}

/* === ELITE LANGUAGE DROPDOWN === */
.elite-lang-dropdown {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
    z-index: 1100;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(191, 149, 63, 0.3);
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.current-lang .active-code {
    font-size: 11px;
    font-weight: 900;
    color: var(--gold-solid);
    letter-spacing: 1px;
}

.current-lang i {
    font-size: 8px;
    color: var(--ash);
    transition: var(--transition);
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    width: 140px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--gold-solid);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.elite-lang-dropdown:hover .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.elite-lang-dropdown:hover .current-lang {
    border-color: var(--gold-solid);
    background: rgba(191, 149, 63, 0.1);
}

.elite-lang-dropdown:hover i {
    transform: rotate(180deg);
    color: var(--gold-solid);
}

.lang-link {
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    text-align: left;
    display: block;
}

.lang-link:last-child {
    border-bottom: none;
}

.lang-link:hover,
.lang-link.active {
    background: var(--gold-solid) !important;
    color: #000 !important;
}

/* HIDE GOOGLE TOP BAR & UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value span {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* === BRAND SLOT SLIDER (MARQUEE) === */
.brand-slot-section {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(191, 149, 63, 0.1);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.brand-slot-track {
    display: flex;
    width: calc(250px * 12);
    /* Double for seamless loop */
    animation: scroll-brands 40s linear infinite;
}

.brand-slot-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.brand-slot-item img {
    height: 35px;
    width: auto;
    filter: grayscale(1) brightness(0.7) contrast(1.2);
    transition: var(--transition);
    opacity: 0.6;
}

.brand-slot-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

#main-header {
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(191, 149, 63, 0.2);
    padding: 25px 0;
    /* Equal top and bottom spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-drawer {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-drawer:hover {
    background: var(--gold-solid);
    color: #000;
    border-color: var(--gold-solid);
    transform: rotate(90deg);
}

/* === NUCLEAR OPTION: EMERGENCY MOBILE OVERRIDE === */
/* Placing this at the end to ensure it beats all specificity */
/* INCREASED BREAKPOINT TO 1200PX TO FIX TABLET/LAPTOP OVERLAP */
@media screen and (max-width: 1200px) {

    /* FORCE HEADER RESET */
    header,
    header.scrolled {
        height: 70px !important;
        padding: 0 !important;
    }

    header .container {
        padding: 0 20px !important;
        width: 100% !important;
        height: 100% !important;
    }

    header .container nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
    }

    /* FORCE LOGO RESET */
    header .logo-seal,
    header.scrolled .logo-seal {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        order: 0 !important;
        /* Start */
        flex: 0 1 auto !important;
    }

    .seal-text {
        font-size: 20px !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .seal-sub {
        font-size: 13px !important;
        letter-spacing: 2px !important;
        color: var(--gold-solid) !important;
        -webkit-text-fill-color: var(--gold-solid) !important;
    }

    /* FORCE HAMBURGER VISIBILITY */
    .mobile-menu-btn {
        display: flex !important;
        position: relative !important;
        order: 2 !important;
        /* End */
        z-index: 1020 !important;
        margin: 0 !important;
        top: auto !important;
        right: auto !important;
    }

    .nav-side {
        display: none !important;
    }

    header::after {
        display: none !important;
    }

    /* Kill spacers */
    header nav::after {
        display: none !important;
    }

    /* Kill spacers */

    /* FORCE CONTENT STACKING */
    .elite-grid,
    .contact-grid,
    .footer-top,
    .impact-block {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* TYPOGRAPHY UNDO OVERSIZE */
    h1,
    h2,
    .section-title,
    .hero-content h1 {
        font-size: 32px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.2 !important;
        margin-left: 0 !important;
        /* Fix potential negatives */
    }

    .section-num {
        font-size: 60px !important;
    }

    .hero-tag {
        font-size: 10px !important;
    }

    /* CARD SPACING & RESET */
    .elite-card,
    .contact-info-block,
    .impact-block {
        width: 100% !important;
        margin: 0 !important;
        /* RESET ANY NEGATIVE MARGINS */
        left: 0 !important;
        transform: none !important;
        padding: 30px !important;
        box-sizing: border-box !important;
    }

    /* BUTTON RESET */
    .btn-elite {
        margin-left: 0 !important;
        scale: 1 !important;
        width: 100% !important;
        justify-content: center !important;
        clip-path: none !important;
        /* REMOVE SKEWED SHAPE */
        border-radius: 4px !important;
        /* SIMPLE RADIUS */
    }

    /* LOGO PURITY */
    .logo-seal::before,
    .logo-seal::after {
        display: none !important;
        content: none !important;
    }

    /* GENERAL CONTAINER SAFETY */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        overflow: hidden !important;
        /* Prevent side scroll */
    }

    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}

/* Mini logo in drawer: horizontal, no circle */
.mobile-drawer .logo-seal {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.drawer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

.drawer-nav a:hover,
.drawer-nav a.active {
    color: var(--gold-solid);
    transform: translateX(10px);
}

.drawer-footer {
    margin-top: auto;
    font-size: 11px;
    color: var(--ash);
    letter-spacing: 2px;
}

/* === PRODUCT LISTING SYSTEM (DUAL HORIZONTAL ROW) === */
.product-listing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.product-item-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}

.product-item-card:hover {
    border-color: var(--gold-solid);
    background: rgba(30, 30, 30, 0.9);
    transform: translateY(-3px);
}

.product-visual {
    width: 100px;
    height: 80px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(191, 149, 63, 0.2);
    clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info h3 {
    font-size: 15px;
    margin: 0;
    letter-spacing: 0px;
}

.product-info p {
    font-size: 11px;
    margin: 0;
    opacity: 0.5;
    line-height: 1.3;
}

.product-tech-list {
    margin-top: 2px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-row i {
    width: 28px;
    height: 28px;
    background: #2a2a2a;
    /* Coal background from image */
    color: var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 6px;
    /* Rounded from image */
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 8px;
    color: var(--ash);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.spec-value {
    font-size: 11px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.product-item-card .btn-elite {
    margin: 0 !important;
    width: 100% !important;
    padding: 12px 5px;
    font-size: 10px;
    justify-content: center;
}

@media (max-width: 1400px) {
    .product-listing-grid {
        grid-template-columns: 1fr 1fr;
        /* Keep 2 columns but maybe stack? */
    }
}

@media (max-width: 1100px) {
    .product-listing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-item-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .product-visual {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .product-item-card .btn-elite {
        width: 100% !important;
        margin-top: 15px !important;
    }
}

/* === PRODUCT CODE STICKER BADGE === */
.product-code-badge {
    display: inline-flex;
    align-items: center;
    background: #e0e0e0;
    color: #2c3e50;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8), 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* === FOOTER PRODUCT MARQUEE (SLIM) === */
.footer-product-marquee {
    width: 100%;
    overflow: hidden;
    background: #080808;
    position: relative;
    border-top: 1px solid rgba(191, 149, 63, 0.1);
    padding: 20px 0;
    /* Add Breathing room */
}

.footer-product-track {
    display: flex;
    width: max-content;
    animation: footerMarquee 60s linear infinite;
    /* Slower for readability */
    gap: 30px;
    /* Space between cards */
    padding-left: 30px;
}

.footer-product-item {
    width: 300px;
    /* Slim but wide */
    height: 70px;
    /* Slim height */
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.fp-card-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 8px;
    box-sizing: border-box;
    gap: 15px;
}

.footer-product-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-solid);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.fp-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

.fp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.footer-product-item:hover .fp-thumb img {
    transform: scale(1.1);
}

.fp-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.fp-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.fp-action {
    color: var(--gold-solid);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-product-item:hover .fp-action {
    opacity: 1;
}

@keyframes footerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-330px * 10));
    }

    /* (300px width + 30px gap) * 10 items */
}

/* === PRODUCT GALLERY & LIGHTBOX === */
.tech-frame-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-frame #main-product-img {
    cursor: zoom-in;
    transition: var(--transition);
}

.tech-frame #main-product-img:hover {
    transform: scale(1.02);
}

.product-gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    background: var(--coal);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 4px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--gold-solid);
    box-shadow: var(--gold-glow);
}

/* Lightbox Content */
.lightbox-content {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    max-width: 90vw;
    max-height: 90vh;
    border: 1px solid var(--gold-solid);
    box-shadow: var(--gold-glow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .product-gallery-thumbnails {
        justify-content: center;
    }

    .thumb-item {
        width: 60px;
        height: 60px;
    }
}