/* ==========================================================================
   PC KUMAR — WHITE THEME WITH STEALTH BLACK HERO SECTION & LOGO RED ACCENTS
   - Header & Page: Clean White Theme (#ffffff / #f8fafc)
   - Hero Section ONLY: Deep Stealth Black Theme (#050505) with Crimson Red (#dc2626)
   - Font Family: Poppins (Sans-Serif) across all elements
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-hero-black: #050505;

    /* Logo Crimson Red Accent: #dc2626 */
    --theme-red: #dc2626;
    --theme-red-dark: #b91c1c;
    --theme-red-bright: #ef4444;
    --theme-red-glow: rgba(220, 38, 38, 0.4);
    
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-red-hover: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);

    /* Secondary Accents */
    --nvsx-green: #059669;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Borders */
    --border-light: #e2e8f0;
    --border-dark: #cbd5e1;
    --border-red: #dc2626;

    /* Fonts — Poppins Sans-Serif */
    --font-impact: 'Poppins', -apple-system, sans-serif;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-mono: 'Poppins', -apple-system, sans-serif;

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background-color: #ffffff;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.section-header-row {
    margin-bottom: 44px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--theme-red);
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.text-red {
    color: var(--theme-red);
    text-shadow: none;
}



a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); border: none; background: none; cursor: pointer; outline: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: rgba(220, 38, 38, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--theme-red-dark); }

/* --------------------------------------------------------------------------
   2. NAVBAR HEADER & CENTERED SUB-NAVBAR (WHITE THEME)
   -------------------------------------------------------------------------- */
.navbar {
    position: relative;
    z-index: 100;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.top-nav-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo Image Styling */
.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/*search*/
.header-search-pill {
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 8px 18px;
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.search-icon {
    color: var(--theme-red);
    font-size: 0.85rem;
}

.search-placeholder {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    flex-grow: 1;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-kbd {
    background: #e2e8f0;
    color: var(--text-secondary);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-body);
}


/* Nav Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}


.cart-btn { position: relative; }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--theme-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.btn-yellow-quote {
    padding: 10px 24px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
}

.btn-yellow-quote:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

.mobile-menu-toggle { display: none; color: var(--text-primary); font-size: 1.2rem; }

/* CENTERED SUB NAV BAR LINKS & PILL BADGES */
.sub-nav-row {
    padding: 12px 0;
    background: var(--bg-surface);
    position: relative; /* Anchor for mega menu positioning */
}

.sub-nav-menu.centered-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    width: 100%;
}

.sub-nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-arrow {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* --------------------------------------------------------------------------
   ELITEHUBS-STYLE 4-COLUMN MEGA DROPDOWN (CLEAN CRISP OPEN ON HOVER)
   -------------------------------------------------------------------------- */
.nav-dropdown-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Hover bridge to keep dropdown open during mouse transition */
.nav-dropdown-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-dropdown-item.has-mega-menu {
    position: static; /* Allows mega dropdown to anchor centrally to sub-nav-row! */
}

.elite-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 92vw;
    max-width: 1380px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 0 0 18px 18px;
    padding: 36px 44px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14), 0 10px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

/* CLEAN INSTANT OPEN ON HOVER */
.nav-dropdown-item:hover .elite-mega-dropdown,
.elite-mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-item:hover .sub-nav-link {
    color: var(--theme-red);
}

.nav-dropdown-item:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--theme-red);
}

.mega-dropdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.mt-24 {
    margin-top: 24px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-list li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-block;
    text-decoration: none;
    line-height: 1.35;
}

.mega-list li a:hover {
    color: var(--theme-red);
    font-weight: 600;
    transform: translateX(3px);
}

.text-red { color: var(--theme-red) !important; }
.font-bold { font-weight: 700 !important; }





/* Hamburger button */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: #f1f5f9;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Smaller desktop screens */
@media (min-width: 1025px) and (max-width: 1280px) {
    .nav-container {
        padding: 0 24px;
    }

    .header-search-pill {
        width: 300px;
    }

    .sub-nav-menu.centered-menu {
        gap: 20px;
    }

    .sub-nav-link {
        font-size: 0.78rem;
        letter-spacing: 0.4px;
    }
}

/* Tablet and mobile navigation */
@media (max-width: 1024px) {
    .navbar {
        position: relative;
    }

    .top-nav-row {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 24px;
        gap: 20px;
    }

    .brand-logo-img {
        height: 40px;
    }

    .header-search-pill {
        width: auto;
        max-width: 320px;
        flex: 1;
    }

    .nav-actions {
        gap: 10px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /*
     * Mobile navigation remains hidden until
     * .menu-open is added to .navbar.
     */
    .sub-nav-row {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        background: #ffffff;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);

        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .navbar.menu-open .sub-nav-row {
        max-height: calc(100dvh - 80px);
        padding: 8px 0 20px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        pointer-events: auto;
    }

    .sub-nav-row .nav-container {
        display: block;
        padding: 0 24px;
    }

    .sub-nav-menu.centered-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .sub-nav-menu > .sub-nav-link,
    .nav-dropdown-item > .sub-nav-link {
        width: 100%;
        min-height: 50px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
        justify-content: space-between;
        font-size: 0.84rem;
    }

    .nav-dropdown-item,
    .nav-dropdown-item.has-mega-menu {
        position: relative;
        width: 100%;
        display: block;
    }

    /* Remove desktop hover bridge */
    .nav-dropdown-item::after {
        display: none;
    }

    /*
     * Reset desktop mega-menu styling.
     * It will open underneath its parent link.
     */
    .elite-mega-dropdown {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        transform: none;
        display: none;
        padding: 14px 0 20px 16px;
        border: 0;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        background: #f8fafc;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* Disable desktop hover opening on touch screens */
    .nav-dropdown-item:hover > .elite-mega-dropdown,
    .nav-dropdown-item > .elite-mega-dropdown:hover {
        display: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* Opened mobile dropdown */
    .nav-dropdown-item.dropdown-open > .elite-mega-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown-item:hover > .sub-nav-link .nav-arrow {
        transform: none;
    }

    .nav-dropdown-item.dropdown-open > .sub-nav-link {
        color: var(--theme-red);
    }

    .nav-dropdown-item.dropdown-open > .sub-nav-link .nav-arrow {
        color: var(--theme-red);
        transform: rotate(180deg);
    }

    .mega-dropdown-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Smaller tablets and phones */
@media (max-width: 767px) {
    .top-nav-row .nav-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand-logo {
        order: 1;
    }

    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    .header-search-pill {
        order: 3;
        flex-basis: 100%;
        max-width: none;
        width: 100%;
    }

    .navbar.menu-open .sub-nav-row {
        max-height: calc(100dvh - 120px);
    }

    .mega-dropdown-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .nav-container,
    .sub-nav-row .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-logo-img {
        height: 36px;
        max-width: 130px;
    }

    .nav-actions {
        gap: 7px;
    }

    .icon-btn,
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    /* Contact button can be shown inside the mobile menu if needed */
    .btn-yellow-quote {
        display: none;
    }

    .header-search-pill {
        padding: 9px 14px;
    }

    .elite-mega-dropdown {
        padding-left: 12px;
    }
}

@media (max-width: 380px) {
    .nav-container,
    .sub-nav-row .nav-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand-logo-img {
        max-width: 115px;
        height: 34px;
    }

    .icon-btn,
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
}


/* --------------------------------------------------------------------------
   3. HERO SECTION ONLY: STEALTH DEEP BLACK (#050505) WITH CRIMSON RED ACCENTS
   -------------------------------------------------------------------------- */
.nvsx-hero-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    padding: 70px 0;
    display: block;
    align-items: center;
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}


.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
    align-items: center;
    gap: 60px;
}

.hero-left-content {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.yellow-dash {
    color: var(--theme-red);
    font-weight: 900;
}

.hero-main-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(48px, 4.2vw, 70px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.text-red {
    color: var(--theme-red-bright);
}

.text-outline {
    color: #ffffff;
}

/* Subtitle Paragraph */
.hero-subtitle {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.65;
    color: #a1a1a1;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

.section-para{
    color : var(--text-secondary);
}

/* CTAs Row */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.btn-yellow-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 0 35px rgba(220, 38, 38, 0.6);
    transition: var(--transition);
}

.btn-yellow-cta:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.8);
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 36px;
    border-radius: 6px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-cta:hover {
    border-color: var(--theme-red-bright);
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-3px);
}

/* Trust Badges Row (Hero Dark Cards) */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
}

.badge-item {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a1a1a1;
    padding: 8px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.badge-item:hover {
    color: #ffffff;
    border-color: var(--theme-red);
}

.green-dot {
    color: #00ff66;
    font-size: 0.6rem;
    text-shadow: 0 0 8px #00ff66;
}

/* --------------------------------------------------------------------------
   5. RIGHT STAGE: PC VISUAL ON DARK HERO
   -------------------------------------------------------------------------- */
.hero-right-stage {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.35));
}

.pc-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pc-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    max-height: 610px;
    display: block;
    object-fit: contain;

    /* Remove this if your image already has a transparent background */
    mix-blend-mode: lighten;
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    z-index: 20;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--theme-red-bright);
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px var(--theme-red-bright);
    animation: pulseHotspot 2s infinite;
}

@keyframes pulseHotspot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--theme-red);
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.hotspot-tooltip strong {
    font-size: 0.8rem;
    color: #fff;
}

.hotspot-tooltip span {
    font-size: 0.7rem;
    color: var(--theme-red-bright);
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hotspots coordinates */
.hs-cooling { top: 24%; left: 47%; }
.hs-purple-gpu { top: 57%; left: 45%; }

/* --------------------------------------------------------------------------
   6. FLOATING AI VOLT WIDGET
   -------------------------------------------------------------------------- */
.ai-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-widget-btn {
    padding: 10px 18px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.ai-widget-btn i {
    color: var(--theme-red);
}

.ai-widget-btn:hover {
    border-color: var(--theme-red);
    color: var(--theme-red);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.ai-lightning-btn {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.ai-lightning-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --------------------------------------------------------------------------
   7. QUOTE MODAL (WHITE THEME CARD)
   -------------------------------------------------------------------------- */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
}

.quote-card {
    position: relative;
    width: 90%;
    max-width: 620px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 36px;
    z-index: 10;
    transform: translateY(-20px) scale(0.95);
    transition: var(--transition);
}

.quote-modal.active .quote-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover { color: var(--text-primary); }

.modal-header h2 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 4px;
}

.yellow-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--theme-red);
    letter-spacing: 2px;
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 24px;
}

#quoteForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--theme-red);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.15);
}

.form-textarea { resize: vertical; }

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}


/* --------------------------------------------------------------------------
   9. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left-content {
        align-items: center;
    }

    .trust-badges-row {
        justify-content: center;
    }

    .sub-nav-menu.centered-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .hero-container { padding: 0 20px; }
    .sub-nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-main-title { font-size: 2.8rem; }
    .hero-btn-group { flex-direction: column; width: 100%; }
    .btn-yellow-cta, .btn-outline-cta { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   6. OVERLAPPING KEY METRICS BOXES (50% IN HERO, 50% OUTSIDE HERO)
   -------------------------------------------------------------------------- */
.metrics-bar-section {
    position: relative;
    z-index: 50;
    margin-top: -65px; /* Pulls boxes 50% inside hero and 50% outside */
    margin-bottom: 40px;
}

.metrics-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Space between individual boxes */
}

.metric-box {
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(220, 38, 38, 0.18);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    opacity: 0.8;
    transition: var(--transition);
}

.metric-box:hover {
    transform: translateY(-8px);
    border-color: var(--theme-red-bright);
    background: #121212;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(220, 38, 38, 0.4);
}

.metric-box:hover::before {
    height: 4px;
    opacity: 1;
    box-shadow: 0 0 15px var(--theme-red-bright);
}

.metric-value {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -1px;
}

.accent-symbol {
    color: var(--theme-red-bright);
    margin-left: 2px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.metric-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a1a1a1;
    margin-top: 10px;
    text-transform: uppercase;
}

.slash-accent {
    color: var(--theme-red-bright);
    font-weight: 900;
    margin: 0 2px;
}

/* Common container */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Small laptops and tablets */
@media screen and (max-width: 1200px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Small mobile */
@media screen and (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* --------------------------------------------------------------------------
   6. GEARNIX DRIBBBLE 2X2 GRID GAMING GEAR SECTION
   -------------------------------------------------------------------------- */
.gearnix-category-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    z-index: 25;
}

.gearnix-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gearnix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gearnix-card {
    background: #f4f5f8;
    border-radius: 10px;
    padding: 20px 0px 20px 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.gearnix-card:hover{
    cursor : pointer;
}

.gearnix-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    z-index: 5;
}

.gearnix-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.8px;
}

.gearnix-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    transition: var(--transition);
}

.gearnix-arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:var( --theme-red) ;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transform: rotate(45deg);
    transition: var(--transition);
}

.gearnix-pill-btn span:last-child {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--theme-red);
    transition: var(--transition);
}

.gearnix-card-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 250px;
}

.gearnix-img {
    height: 270px;
    width: auto;
    max-width: 130%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transform: scale(1.08) translateX(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.gearnix-card:hover .gearnix-arrow-icon {
    background: var(--theme-red);
    transform: rotate(45deg) scale(1.1);
}

.gearnix-card:hover .gearnix-pill-btn span:last-child {
    color: var(--theme-red);
}

/* Laptop */
@media screen and (max-width: 1200px) {
    .gearnix-category-section .container {
        padding: 0 30px;
    }

    .gearnix-grid {
        gap: 22px;
    }

    .gearnix-card {
        grid-template-columns: 1fr 1fr;
        min-height: 250px;
    }

    .gearnix-card-right {
        height: 220px;
    }

    .gearnix-img {
        width: 100%;
        height: 230px;
        max-width: 100%;
    }
}

/* Tablet */
@media screen and (max-width: 768px) {
    .gearnix-grid {
        grid-template-columns: 1fr;
    }

    .gearnix-card {
        grid-template-columns: 0.8fr 1.2fr;
        min-height: 260px;
    }

    .gearnix-card-right {
        height: 230px;
    }

    .gearnix-img {
        height: 240px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .gearnix-category-section {
        padding: 40px 0;
    }

    .gearnix-category-section .container {
        padding: 0 16px;
    }

    .gearnix-grid {
        gap: 16px;
    }

    .gearnix-card {
        grid-template-columns: 0.8fr 1.2fr;
        min-height: 210px;
        padding: 18px 0 18px 16px;
    }

    .gearnix-title {
        font-size: 21px;
    }

    .gearnix-card-right {
        height: 180px;
    }

    .gearnix-img {
        width: 100%;
        height: 190px;
        max-width: 100%;
        transform: scale(1.05) translateX(8px);
    }

    .gearnix-pill-btn {
        gap: 7px;
        margin-top: 25px;
    }

    .gearnix-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .gearnix-card {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 190px;
        padding-left: 14px;
    }

    .gearnix-title {
        font-size: 18px;
    }

    .gearnix-card-right {
        height: 160px;
    }

    .gearnix-img {
        height: 170px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 10px;
    }
}


/* --------------------------------------------------------------------------
   6. FEATURED PROMOTIONAL BANNER SECTION (COMPACT HEIGHT UNCROPPED BANNER)
   -------------------------------------------------------------------------- */
.promo-banner-section {
    padding: 0 40px;
    position: relative;
    z-index: 22;
    width: 100%;
    background : #ffffff;
}

.banner-container {
    max-width: 1600px;
    margin: 0 auto;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    max-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    display: block;
    object-fit: fill;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    bottom: 20px;
    right: 28px;
    z-index: 10;
}

.banner-cta-btn {
    padding: 10px 22px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    transition: var(--transition);
}

.banner-cta-btn:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
}


/* --------------------------------------------------------------------------
   6. FEATURED PRODUCTS HORIZONTAL SLIDER (TRANSFORM TRANSLATE NO BLANK SPACE)
   -------------------------------------------------------------------------- */
.nvsx-products-section {
    padding: 65px 0;
    background: #ffffff;
    position: relative;
    z-index: 22;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.nvsx-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.slider-overlay-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    z-index: 35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* REVEAL NAV BUTTONS ON HOVER OVER THE SLIDER TRACK / CARDS */
.categories-slider-wrapper:hover .slider-overlay-btn,
.nvsx-product-slider-wrapper:hover .slider-overlay-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

/* FLOATING DIRECTLY OVER THE FIRST PRODUCT CARD VISIBLE ON SCREEN */
.slider-overlay-btn.btn-prev {
    left: 12px;
}

/* FLOATING DIRECTLY OVER THE LAST PRODUCT CARD VISIBLE ON SCREEN */
.slider-overlay-btn.btn-next {
    right: 12px;
}

.slider-overlay-btn:hover {
    background: var(--theme-red);
    border-color: var(--theme-red);
    color: #ffffff;
    transform: translateY(-50%) scale(1.14) !important;
}



 /*Horizontal Slider Wrapper & Inner Track */
.nvsx-product-slider-wrapper {
    width: 100%;
    position: relative;
    margin-top: 36px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 6px;
}

.nvsx-product-grid.slider-track {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    margin-top: 0;
    width: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* EXACTLY 4 CARDS PER SLIDE VIEW FORMULA: calc((100% - (3 * 24px)) / 4) */
.nvsx-product-grid.slider-track .nvsx-prod-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    cursor : pointer;
}

/* Featured Gold/Yellow Border Accent Card */

.nvsx-prod-card.featured-card:hover {
    border-color: #eab308;
    box-shadow: 0 20px 45px rgba(234, 179, 8, 0.3);
}

/* Top Image Container — Product takes FULL HEIGHT & WIDTH of container */
.prod-img-box {
    background: #ffffff;
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.nvsx-prod-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nvsx-prod-card:hover .nvsx-prod-img {
    transform: scale(1.06);
}

/* Bottom White Theme Info Container */
.prod-info-box {
    background: #ffffff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.prod-cat-tag {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.prod-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.prod-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #3d3d3d;
    letter-spacing: -0.5px;
}


.prod-view-btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--theme-red);
    transition: all 0.2s ease;
    text-decoration: none;
}

.prod-view-btn:hover {
    color: var(--theme-red-dark);
    transform: translateX(4px);
}

/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .nvsx-product-grid.slider-track {
        gap: 20px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);
    }

    .prod-img-box {
        height: 260px;
    }

    .prod-info-box {
        padding: 18px;
    }
}

/* Tablets: 2 cards */
@media screen and (max-width: 768px) {
    .nvsx-products-section {
        padding: 50px 0;
    }

    .nvsx-product-slider-wrapper {
        margin-top: 28px;
    }

    .nvsx-product-grid.slider-track {
        gap: 16px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .prod-img-box {
        height: 230px;
    }

    .prod-info-box {
        padding: 16px;
    }

    .prod-cat-tag {
        font-size: 17px;
    }

    .prod-price {
        font-size: 16px;
    }

    .prod-view-btn {
        font-size: 13px;
    }

    /* Keep slider arrows visible on touchscreens */
    .slider-overlay-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

    .slider-overlay-btn.btn-prev {
        left: 8px;
    }

    .slider-overlay-btn.btn-next {
        right: 8px;
    }
}

/* Mobile: 1 card */
@media screen and (max-width: 576px) {
    .nvsx-products-section {
        padding: 40px 0;
    }

    .nvsx-product-slider-wrapper {
        margin-top: 22px;
        padding-top: 4px;
        padding-bottom: 15px;
    }

    .nvsx-product-grid.slider-track {
        gap: 14px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .prod-img-box {
        height: 280px;
    }

    .prod-info-box {
        padding: 18px;
    }

    .prod-cat-tag {
        font-size: 18px;
    }

    .prod-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .prod-price {
        font-size: 17px;
    }

    .prod-view-btn {
        font-size: 14px;
    }

    .slider-overlay-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .slider-overlay-btn.btn-prev {
        left: 6px;
    }

    .slider-overlay-btn.btn-next {
        right: 6px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .prod-img-box {
        height: 240px;
    }

    .prod-info-box {
        padding: 15px;
    }

    .prod-price-row {
        gap: 8px;
    }

    .prod-price {
        font-size: 15px;
    }

    .prod-view-btn {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}



/*SSD PRODUCT SECTION CSS*/

.ssd-products-section {
    padding: 0px 0px 65px 0px; 
    background: #ffffff;
    position: relative;
    z-index: 22;
}

.ssd-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* REVEAL NAV BUTTONS ON HOVER OVER THE SLIDER TRACK / CARDS */
.categories-slider-wrapper:hover .slider-overlay-btn,
.ssd-product-slider-wrapper:hover .slider-overlay-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}


 /*Horizontal Slider Wrapper & Inner Track */
.ssd-product-slider-wrapper {
    width: 100%;
    position: relative;
    margin-top: 36px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 6px;
}

.ssd-product-grid.slider-track {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    margin-top: 0;
    width: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* EXACTLY 4 CARDS PER SLIDE VIEW FORMULA: calc((100% - (3 * 24px)) / 4) */
.ssd-product-grid.slider-track .ssd-prod-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor : pointer;
}


/* Featured Gold/Yellow Border Accent Card */

.ssd-prod-card.featured-card:hover {
    border-color: #eab308;
    box-shadow: 0 20px 45px rgba(234, 179, 8, 0.3);
}

/* Top Image Container — Product takes FULL HEIGHT & WIDTH of container */
.prod-img-box {
    background: #ffffff;
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.ssd-prod-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ssd-prod-card:hover .nvsx-prod-img {
    transform: scale(1.06);
}


/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .ssd-product-grid.slider-track {
        gap: 20px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);
    }

    .ssd-prod-card .prod-img-box {
        height: 260px;
    }
}

/* Tablets: 2 cards */
@media screen and (max-width: 768px) {
    .ssd-products-section {
        padding-bottom: 50px;
    }

    .ssd-product-slider-wrapper {
        margin-top: 28px;
    }

    .ssd-product-grid.slider-track {
        gap: 16px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .ssd-prod-card .prod-img-box {
        height: 230px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 16px;
    }

    .ssd-prod-card .prod-cat-tag {
        font-size: 17px;
    }

    .ssd-prod-card .prod-price {
        font-size: 16px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 13px;
    }

    /* Keep slider arrows visible on touchscreens */
    .ssd-product-slider-wrapper .slider-overlay-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

    .ssd-product-slider-wrapper .btn-prev {
        left: 8px;
    }

    .ssd-product-slider-wrapper .btn-next {
        right: 8px;
    }
}

/* Mobile: 1 card */
@media screen and (max-width: 576px) {
    .ssd-products-section {
        padding-bottom: 40px;
    }

    .ssd-product-slider-wrapper {
        margin-top: 22px;
        padding-top: 4px;
        padding-bottom: 15px;
    }

    .ssd-product-grid.slider-track {
        gap: 14px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .ssd-prod-card .prod-img-box {
        height: 280px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 18px;
    }

    .ssd-prod-card .prod-cat-tag {
        font-size: 18px;
    }

    .ssd-prod-card .prod-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .ssd-prod-card .prod-price {
        font-size: 17px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 14px;
    }

    .ssd-product-slider-wrapper .slider-overlay-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .ssd-product-slider-wrapper .btn-prev {
        left: 6px;
    }

    .ssd-product-slider-wrapper .btn-next {
        right: 6px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .ssd-prod-card .prod-img-box {
        height: 240px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 15px;
    }

    .ssd-prod-card .prod-price-row {
        gap: 8px;
    }

    .ssd-prod-card .prod-price {
        font-size: 15px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}


  /*6C. NEW STATIC GRID PRODUCT SECTION WITH IMAGE HOVER SWAP EFFECT (NO SLIDER)*/
.static-grid-products-section {
    padding-bottom: 65px;
    background: #ffffff;
    position: relative;
    z-index: 26;
}

.static-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.static-grid-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


/* DUAL IMAGE HOVER CROSS-FADE SWAP STYLING */
.swap-img-box {
    background: #ffffff;
    height: 280px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.prod-img-primary,
.prod-img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-img-primary {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.prod-img-hover {
    opacity: 0;
    z-index: 2;
    transform: scale(1.08);
}

/* ON CARD HOVER -> SWAP IMAGE WITH ZOOM EFFECT */
.swap-img-box:hover .prod-img-primary {
    opacity: 0;
    transform: scale(0.95);
}

.swap-img-box:hover .prod-img-hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .static-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .swap-img-box {
        height: 250px;
    }
}

/* Tablets: 2 cards */
@media screen and (max-width: 900px) {
    .static-grid-products-section {
        padding-bottom: 50px;
    }

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 28px;
    }

    .swap-img-box {
        height: 260px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .static-grid-products-section {
        padding-bottom: 40px;
    }

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .static-grid-card {
        border-radius: 12px;
    }

    .swap-img-box {
        height: 170px;
    }

    .static-grid-card .prod-info-box {
        padding: 14px 12px;
    }

    .static-grid-card .prod-cat-tag {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .static-grid-card .prod-title {
        min-height: 40px;
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .static-grid-card .prod-price-row {
        gap: 8px;
        padding-top: 10px;
    }

    .static-grid-card .prod-price {
        font-size: 14px;
        white-space: nowrap;
    }

    .static-grid-card .prod-view-btn {
        font-size: 11px;
        letter-spacing: 0;
        white-space: nowrap;
    }
}

/* Extra-small mobile: 1 card */
@media screen and (max-width: 380px) {
    .static-product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .swap-img-box {
        height: 260px;
    }

    .static-grid-card .prod-info-box {
        padding: 17px;
    }

    .static-grid-card .prod-cat-tag {
        font-size: 17px;
    }

    .static-grid-card .prod-title {
        font-size: 14px;
    }

    .static-grid-card .prod-price {
        font-size: 17px;
    }

    .static-grid-card .prod-view-btn {
        font-size: 13px;
    }
}



 /*AMD Processor Section*/
 
.amd-processors-section {
    padding-bottom: 65px;
    background: #ffffff;
    position: relative;
    z-index: 28;
}

.amd-dark-panel {
    background: #000000;
    border-radius: 24px;
    padding: 44px;
}

.amd-section-heading {
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amd-main-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

/* LEFT HERO SPOTLIGHT CARD */
.amd-hero-card {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a140b 100%);
    border: 1.5px solid var(--theme-red-dark);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(245, 158, 11, 0.05);
}

.amd-hero-img-box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    border-radius: 12px;
}

.amd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.amd-hero-details {
    margin-top: 18px;
}

.amd-hero-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffcc00;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.amd-hero-sub {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 4px;
}

.amd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 18px 0;
}

.amd-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amd-specs-list li {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.amd-specs-list li::before {
    content: "•";
    color: #ffcc00;
    font-weight: 900;
}

.btn-amd-buy {
    width: 100%;
    padding: 14px 0;
    border-radius: 8px;
    background: var(--theme-red);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 24px;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-amd-buy:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.5);
}

/* RIGHT 8-CARD GRID */
.amd-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.amd-proc-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}


.amd-card-img-box {
    background: #ffffff;
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.amd-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amd-proc-card:hover .amd-card-img {
    transform: scale(1.08);
}

.amd-card-info {
    padding: 16px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.amd-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.25;
}

.amd-card-sub {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

.btn-amd-view {
    width: 100%;
    padding: 12px 0;
    background: var(--theme-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 0 0 16px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Large laptops */
@media screen and (max-width: 1400px) {
    .amd-dark-panel {
        padding: 36px;
    }

    .amd-section-heading {
        font-size: 42px;
    }

    .amd-main-grid {
        grid-template-columns: 300px 1fr;
        gap: 20px;
    }

    .amd-cards-grid {
        gap: 14px;
    }

    .amd-card-img-box {
        height: 140px;
    }
}

/* Small laptops */
@media screen and (max-width: 1200px) {
    .amd-main-grid {
        grid-template-columns: 1fr;
    }

    .amd-hero-card {
        height: 350px;
    }

    .amd-hero-img-box {
        height: 100%;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablets */
@media screen and (max-width: 992px) {
    .amd-processors-section {
        padding-bottom: 50px;
    }

    .amd-dark-panel {
        padding: 30px;
        border-radius: 20px;
    }

    .amd-section-heading {
        margin-bottom: 28px;
        font-size: 36px;
    }

    .amd-hero-card {
        height: 320px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .amd-card-img-box {
        height: 180px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .amd-processors-section {
        padding-bottom: 40px;
    }

    .amd-dark-panel {
        padding: 20px;
        border-radius: 14px;
    }

    .amd-section-heading {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .amd-main-grid {
        gap: 18px;
    }

    .amd-hero-card {
        height: 260px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .amd-proc-card {
        border-radius: 12px;
    }

    .amd-card-img-box {
        height: 130px;
    }

    .amd-card-info {
        padding: 12px 10px 10px;
    }

    .amd-card-title {
        font-size: 14px;
    }

    .amd-card-sub {
        font-size: 0.7rem;
    }

    .btn-amd-view {
        min-height: 40px;
        padding: 10px 4px;
        border-radius: 0 0 12px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.3px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .amd-dark-panel {
        padding: 16px;
    }

    .amd-section-heading {
        font-size: 24px;
    }

    .amd-hero-card {
        height: 220px;
    }

    .amd-cards-grid {
        grid-template-columns: 1fr;
    }

    .amd-card-img-box {
        height: 190px;
    }

    .amd-card-title {
        font-size: 15px;
    }

    .btn-amd-view {
        font-size: 0.75rem;
    }
}






/*4B. FOUR RULES WE DON'T BEND SECTION (ULTRA-MODERN LUXURY PREMIUM LOOK)*/
 
.four-rules-section {
    padding: 0px 0px 65px 0px;
    background: #ffffff;
    color: var(--text-primary);
    position: relative;
    z-index: 25;
    overflow: visible;
}

.four-rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.four-rules-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
}

.four-rules-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: start; /* Critical for CSS sticky element alignment */
}

.rules-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--theme-red);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.text-red-highlight {
    color: var(--theme-red);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ULTRA-MODERN BOTTOM BORDER DIVIDER ITEM WITH GLOW ACCENT */
.rule-item {
    position: relative;
    padding: 28px 12px;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-light);
    cursor: pointer;
}

/*.rule-item::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -1.5px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2.5px;*/
/*    background: var(--gradient-red);*/
/*    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);*/
/*    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);*/
/*}*/

/*.rule-item:hover::before,*/
/*.rule-item.active::before {*/
/*    width: 100%;*/
/*}*/

/*.rule-item:hover {*/
/*    background: linear-gradient(90deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);*/
/*    transform: translateX(8px);*/
/*}*/

/*.rule-item.active {*/
/*    background: linear-gradient(90deg, rgba(220, 38, 38, 0.04) 0%, transparent 100%);*/
/*}*/

.rule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rule-title-group {
    display: flex;
    align-items: center;
    gap: 22px;
}


/*.rule-item:hover .rule-num,*/
/*.rule-item.active .rule-num {*/
/*    color: #ffffff;*/
/*    background: var(--theme-red);*/
/*    border-color: var(--theme-red);*/
/*    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);*/
/*}*/

.rule-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #0f172a;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.rule-item:hover .rule-name,
.rule-item.active .rule-name {
    color: var(--theme-red);
}

.rule-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

/*.rule-item:hover .rule-toggle-icon {*/
/*    border-color: var(--theme-red);*/
/*    color: var(--theme-red);*/
/*    background: rgba(220, 38, 38, 0.08);*/
/*    transform: scale(1.08);*/
/*}*/

.rule-item.active .rule-toggle-icon {
    background: var(--gradient-red);
    border-color: var(--theme-red);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
    transform: rotate(180deg) scale(1.08);
}

.rule-description {
    max-height: 0;
    overflow: hidden;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.68;
    padding-left: 68px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.3s ease;
}

.rule-item.active .rule-description {
    max-height: 160px;
    padding-top: 18px;
}

.rule-summary-badge {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--theme-red);
    background: rgba(220, 38, 38, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--theme-red);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-left-width: 3px;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.05);
}

/* RIGHT COLUMN LUXURY GLASS STICKY VISUAL CONTAINER */
.rules-visual-col {
    position: sticky;
    top: 110px;
    z-index: 20;
}

.rules-visual-wrapper {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
}

.rules-img-box {
    position: relative;
    width: 100%;
    height: 640px; /* TALL MODERN HEIGHT */
    overflow: hidden;
    background: #f8fafc;
}

.rules-feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rules-feature-img.active-feature-img {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.rules-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 34px 34px 34px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 5;
    color: #ffffff;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.visual-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.visual-subtitle {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-top: 6px;
    line-height: 1.5;
}

.rules-visual-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 85px rgba(220, 38, 38, 0.2);
    border-color: var(--theme-red);
}


/*FOOTER SECTION CSS*/

.footer-section {
    background: var(--bg-hero-black);
    color: #cbd5e1;
    position: relative;
    z-index: 30;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    font-family: var(--font-body);
}

.footer-top-strip {
    background: linear-gradient(132deg, #000000 0%, #202121 100%);
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 540px;
}

.newsletter-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.newsletter-sub {
    font-size: 0.85rem;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 480px;
    max-width: 100%;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--theme-red);
    background: rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    padding: 12px 26px;
    border-radius: 8px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    white-space: nowrap;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
}

.footer-trust-perks {
    display: flex;
    align-items: center;
    gap: 36px;
}

.trust-perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.perk-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.perk-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.perk-text span {
    font-size: 0.72rem;
    color: #94a3b8;
}

.footer-main-body {
    padding: 70px 0 50px 0;
}

.footer-main-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--theme-red);
    width: 16px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link-btn:hover {
    background: var(--theme-red);
    border-color: var(--theme-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col-heading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-red);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--theme-red);
    transform: translateX(4px);
}

.footer-bottom-bar {
    background:var(--bg-hero-black);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #64748b;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #94a3b8;
}

.payment-badge-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}





/* Prevent footer elements from overflowing */
.footer-section,
.footer-section * {
    box-sizing: border-box;
}

.footer-brand-col,
.footer-col,
.newsletter-box,
.footer-trust-perks,
.trust-perk-item {
    min-width: 0;
}

.footer-contact-item {
    align-items: flex-start;
}

.footer-contact-item span,
.footer-brand-desc,
.copyright-text {
    overflow-wrap: anywhere;
}

/* Medium desktop */
@media (max-width: 1400px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-top-container {
        align-items: flex-start;
    }

    .footer-trust-perks {
        gap: 24px;
    }

    .footer-main-container {
        gap: 30px;
    }

    .footer-links-list li a {
        font-size: 0.78rem;
    }
}

/* Small desktop and tablet */
@media (max-width: 1200px) {
    .footer-top-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .newsletter-box {
        width: 100%;
        max-width: 700px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 650px;
    }

    .footer-trust-perks {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .trust-perk-item {
        padding: 16px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .perk-icon {
        flex-shrink: 0;
    }

    /*
     * Brand section takes the full first row.
     * Four footer link columns appear below.
     */
    .footer-main-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 800px;
        margin-bottom: 15px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .footer-top-strip {
        padding: 38px 0;
    }

    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-main-body {
        padding: 55px 0 40px;
    }

    .footer-main-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        row-gap: 45px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .copyright-text {
        max-width: 100%;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-top-strip {
        padding: 34px 0;
    }

    .newsletter-title {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .newsletter-sub {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-trust-perks {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-perk-item {
        width: 100%;
    }

    .footer-main-body {
        padding: 45px 0 35px;
    }

    .footer-logo-img {
        height: 42px;
        max-width: 180px;
    }

    .footer-social-row {
        flex-wrap: wrap;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .payment-badges {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Small mobile */
@media (max-width: 560px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .newsletter-input,
    .btn-subscribe {
        width: 100%;
        min-height: 46px;
    }

    .btn-subscribe {
        text-align: center;
    }

    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand-col {
        grid-column: auto;
    }

    .footer-col-heading {
        margin-bottom: 16px;
    }

    .footer-contact-item {
        line-height: 1.5;
    }

    .footer-social-row {
        gap: 9px;
    }

    .social-link-btn {
        width: 36px;
        height: 36px;
    }

    .footer-bottom-container {
        align-items: center;
        text-align: center;
    }

    .payment-badges {
        justify-content: center;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .newsletter-title {
        font-size: 1.05rem;
    }

    .trust-perk-item {
        padding: 13px;
        gap: 10px;
    }

    .perk-icon {
        width: 40px;
        height: 40px;
    }

    .perk-text strong {
        font-size: 0.76rem;
    }

    .perk-text span {
        font-size: 0.68rem;
    }

    .payment-badge-tag {
        width: 100%;
        text-align: center;
    }
}


/*ZERO COMPROMISE SECTION*/

.zero-compromises-section {
    padding-bottom : 75px;
    background: #ffffff;
    color: var(--text-primary);
    position: relative;
    z-index: 24;
    width: 100%;
}

.zero-compromises-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.zero-header-box {
    margin-bottom: 44px;
}

.zero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--theme-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.zero-main-title {
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #0f172a;
}

/* 1 LINE ME 2 BOXES (2 COLUMNS GRID) */
.zero-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.zero-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/*.zero-box::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 3.5px;*/
/*    background: transparent;*/
/*    transition: background 0.35s ease;*/
/*}*/

.zero-box:hover {
    background: #ffffff;
    /*border-color: var(--theme-red);*/
    /*transform: translateY(-8px);*/
}

.zero-box:hover::before {
    background: var(--gradient-red);
}

.zero-box.active-highlight {
    background: #ffffff;
}

.zero-box.active-highlight::before {
    background: var(--gradient-red);
}

.zero-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.zero-num {
    font-size: clamp(3rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 1;
     color: #dcdddff7;
    letter-spacing: -2px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.zero-box:hover .zero-num {
  transform: scale(1.05);
  color: var(--theme-red);
}


.zero-box-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}


.zero-box-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 24px;
}

.zero-badge-row {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.zero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.zero-pill-badge i {
    color: var(--theme-red);
}

.zero-pill-badge.red-pill {
    background: rgba(220, 38, 38, 0.08);
    color: var(--theme-red);
    border-color: rgba(220, 38, 38, 0.25);
}


/* SECTION 17 RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .zero-grid-2x2 {
        gap: 20px;
    }
    .zero-box {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .zero-compromises-container {
        padding: 0 20px;
    }
    .zero-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .zero-main-title {
        font-size: 2.8rem;
    }
}

/*CLIENT REVIEWS*/

.client-reviews-section {
    padding: 75px 0;
    background: #f4f5f8;
    color: #0f172a;
    position: relative;
    z-index: 24;
    width: 100%;
    overflow: hidden;
    margin-bottom : 60px;
}

.client-reviews-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.client-reviews-header {
    text-align: left;
    margin: 0 0 44px 0;
}

.client-reviews-title {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.client-reviews-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0 25px 0;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marqueeAutoSlide 24s linear infinite;
    will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeAutoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 14px)); }
}

.reviews-marquee-track .client-review-card {
    width: 420px;
    min-width: 420px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    flex-shrink: 0;
}

/*.client-review-card:hover {*/
/*    background: #ffffff;*/
/*    transform: translateY(-8px);*/
/*    border-color: var(--theme-red);*/
/*    box-shadow: 0 20px 45px rgba(220, 38, 38, 0.12), 0 4px 20px rgba(0, 0, 0, 0.04);*/
/*}*/

.client-review-quote {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 28px;
}

.client-user-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.client-avatar-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: #0f172a;
    border: 1.5px solid var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar-img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

.client-user-info {
    display: flex;
    flex-direction: column;
}

.client-user-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.client-user-role {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 3px;
}

/* SECTION 18 RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .reviews-marquee-track .client-review-card {
        width: 310px;
        min-width: 310px;
        max-width: 310px;
        padding: 28px 22px;
    }
    .client-reviews-title { font-size: 2.2rem; }
}







