:root {
    --neon-red: #ff003c;
    --neon-blue: #00f3ff;
    --neon-green: #0aff0a;
    --bg-dark: #050505;
    --card-bg: #111;
    --text-main: #fff;
    --font-heading: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-mono);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #222;
}

.logo {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a.nav-highlight {
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 5px 15px;
    border-radius: 4px;
    background: rgba(10, 255, 10, 0.1);
}

.nav-links a.nav-highlight:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    /* Default hidden */
    font-family: var(--font-heading);
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: absolute;
    bottom: 8%;
    /* Raised slightly */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    padding: 30px 20px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.hero-badge {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.4;
    /* Condensed line spacing */
    margin-bottom: 5px;
    text-transform: uppercase;
    display: inline-block;
    text-shadow: none;
}

.glitch-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--neon-red);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.4);
    text-transform: uppercase;
}

.hero-scroll-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #000;
    /* Black text */
    background: var(--neon-red);
    /* Solid Red BG */
    border: none;
    padding: 10px 25px;
    /* Similar solid padding */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.hero-scroll-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: none;
    transform: translateY(-2px);
}

@keyframes glitch-anim {
    0% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
        transform: skew(0deg);
    }

    2% {
        text-shadow: -2px -2px 0px var(--neon-red), 2px 2px 0px var(--neon-blue);
        transform: skew(-2deg);
    }

    4% {
        text-shadow: 2px -2px 0px var(--neon-red), -2px 2px 0px var(--neon-blue);
        transform: skew(2deg);
    }

    6% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
        transform: skew(0deg);
    }

    100% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Mission Section - List Layout (Restored & Military Style) */
.mission-section {
    background: transparent;
    border-top: 1px solid #222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-image-container {
    position: relative;
    border-radius: 4px;
    border: 1px solid #333;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) grayscale(20%) contrast(110%);
}

.mission-text-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-subtitle {
    font-family: 'Share Tech Mono', monospace;
    color: #ccc;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.mission-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mission-feature-icon-col {
    flex-shrink: 0;
    width: 24px;
    padding-top: 3px;
    display: flex;
    justify-content: center;
}

.mission-feature-text-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mission-feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.mission-feature p {
    font-family: 'Share Tech Mono', monospace;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
}

.text-hazard {
    color: var(--neon-red);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.4);
}

.feature-icon-img {
    width: 24px;
    height: auto;
}

.mission-closing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.mission-closing .highlight {
    color: var(--neon-red);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Mobile: Compact Single Page View with Background */
/* Mobile Styles Applied Globally for "Centralized" Desktop View */
@media screen {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    /* Restore Image Container for 900px view */
    .mission-image-container {
        display: block;
        /* SHOW IMAGE */
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-image {
        width: 100%;
        height: auto;
        border-radius: 4px;
        border: 1px solid #333;
    }

    .mission-section {
        padding: 60px 0;
        min-height: auto;
        /* Remove full height constraint */
        display: block;
    }

    /* Background Image Removed */

    .mission-section .container {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    /* Show Icons again for better visual */
    .mission-feature-icon-col {
        display: flex;
        /* Restore icons */
        justify-content: center;
        padding-top: 5px;
    }

    /* Ultra Compact Typography & Centering */
    .mission-text-content {
        text-align: center;
        /* Revert to center matching mobile */
        padding: 0 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Fix video modal overflow */
    .video-wrapper {
        max-width: 100% !important;
        /* Override vw units */
        width: auto;
    }

    /* GLOBAL CENTERING FIX for all internal blocks */
    .container,
    .store-layout,
    .unified-info-layout,
    .footer-grid {
        max-width: 900px;
        /* Match body constraint */
        margin: 0 auto;
        /* Center horizontally */
        width: 100%;
        text-align: center;
        /* Ensure text is centered by default */
    }

    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .mission-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        /* Reduced from 25px */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .mission-features {
        gap: 10px;
        /* Reduced from 20px */
        margin-bottom: 10px;
        /* Reduced margin after features */
    }

    .mission-feature {
        gap: 0;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5px;
    }

    .mission-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 2px;
        /* Tighter title */
        color: #fff;
        width: 100%;
    }

    .mission-feature p {
        font-size: 0.9rem;
        line-height: 1.3;
        /* Tighter line height */
        color: #ddd;
        max-width: 95%;
        /* Wider text block to save vertical lines */
        margin: 0 auto;
    }

    .mission-closing {
        margin-top: 5px;
        /* Significant reduction */
        padding-top: 5px;
        border-top: none;
        /* Remove border to save space/clutter */
    }

    .mission-closing .highlight {
        font-size: 0.95rem;
        display: block;
        margin-top: 5px;
    }
}

/* Col 1: Brand */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #777;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    text-decoration: none;
    border: none;
    display: inline-flex;
    /* Ensures proper sizing */
}

.social-icon img,
.social-icon i {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Override height for font icons */
.social-icon i {
    height: auto;
    width: auto;
}

.social-icon:hover img,
.social-icon:hover i {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--neon-red));
    /* Add glow */
    text-shadow: 0 0 5px var(--neon-red);
    /* For icons */
}

/* Cols 2 & 3: Nav & Legal */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-list a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--neon-red);
    padding-left: 5px;
    /* Subtle movement */
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #050505;
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tnsc-text {
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-body);
}

.tnsc-text i {
    color: var(--neon-red);
    font-style: normal;
    font-weight: bold;
}

.tnsc-link {
    color: var(--neon-red);
    font-weight: bold;
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.tnsc-link:hover {
    text-shadow: none;
}

.stay-secure {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Mobile Footer */
@media screen {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col {
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* Mobile Footer */
@media screen {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- New Store Layout Styles (One Screen Concept) --- */
.store-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Ensure title doesn't overflow width */
}

/* Reduce Arsenal Title Size specifically */
.store-section .section-title {
    font-size: 1.5rem;
    /* Smaller than global 2rem */
    margin-bottom: 30px;
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ghost-block {
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
}

.bandido-block {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
}

.comparison-block {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.buttons-block {
    grid-column: 1 / -1;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* Image controls for tight layout */
.full-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 35vh;
    /* Fit within screen height */
    object-fit: contain;
}

.buttons-mapper-container {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.buttons-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 15vh;
    /* Compact buttons */
    object-fit: contain;
    margin: 0 auto;
}

.map-area {
    position: absolute;
    top: 5%;
    height: 90%;
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s;
    border-radius: 8px;
}

.map-area:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.area-how {
    left: 0;
    width: 50%;
}

.area-tech {
    left: 50%;
    width: 50%;
}

/* --- Carousel Section Styles --- */
.carousel-section {
    background-color: #000;
    padding: 80px 0 0 0;
    /* Added spacing from previous block */
    position: relative;
    border-top: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.carousel-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: none;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 5px;
    /* Flush to side */
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    transform: rotate(45deg);
}

.indicator.active {
    background: var(--neon-red);
    box-shadow: none;
}

.indicator:hover {
    border-color: var(--neon-red);
}

/* --- Mobile Responsiveness --- */
@media screen {
    .navbar {
        padding: 1rem;
        background: rgba(5, 5, 5, 0.9);
    }

    .hamburger-menu {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--neon-red);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
    }

    .glitch-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .mobile-cta {
        .mission-feature .feature-icon-img {
            width: 36px;
            height: auto;
            margin: 0;
        }

        .mission-feature p {
            font-size: 1rem;
            /* More readable body text */
            line-height: 1.5;
            max-width: 90%;
            /* Widen text block to reduce short lines */
            margin: 0 auto;
            text-align: center;
            color: #ddd;
        }

        .mission-closing {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mission-closing p {
            font-size: 0.85rem;
            margin-bottom: 3px;
        }

        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .full-img,
    .buttons-img {
        max-height: none;
        /* Reset height limit for scroll */
    }

    .buttons-mapper-container {
        max-width: 95%;
    }

    /* Carousel Mobile Redesign */
    .carousel-btn {
        padding: 4px 8px;
        /* Smaller padding */
        font-size: 1rem;
        /* Smaller icon */
        bottom: 5px;
        /* Lower position */
    }

    .prev-btn {
        left: 5px;
        /* Closer to edge */
    }

    .next-btn {
        right: 5px;
        /* Closer to edge */
    }
}

/* --- FAQ Section --- */
.faq-section {
    background-color: #000;
    padding: 60px 20px;
    border-top: 1px solid #111;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--neon-red);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.1);
}

.faq-item[open] {
    border-color: var(--neon-red);
    background: rgba(255, 0, 60, 0.05);
}

.faq-question {
    list-style: none;
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-red);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media screen {
    .section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 15px;
    }
}

.faq-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-qm-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 0, 60, 0.5));
}

/* --- New Layout Structures --- */

/* Separator Line */
.section-separator {
    width: 100%;
    height: 4px;
    /* Thin line */
    background: url('public/assets/images/separator_line.webp') center center no-repeat;
    background-size: cover;
    opacity: 0.8;
    margin: 0;
    box-shadow: none;
}

/* Unified Section (Carousel + FAQ) */
.unified-info-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.unified-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Adjust Carousel for Unified Layout */
.unified-carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #000;
    /* Match background */
}

.unified-carousel-wrapper .carousel-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    /* Remove fixed aspect ratio to allow full image height if needed, or use contain */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* CRITICAL: Ensure full image is visible, no cropping */
    max-height: 500px;
    /* Prevent it from getting too tall on desktop */
}

/* Adjust FAQ for Unified Layout */
.unified-faq-wrapper {
    width: 100%;
}

.faq-inner-container {
    max-width: 100%;
    margin: 0;
}

/* Compact text for unified view */
.small-title {
    font-size: 0.9rem !important;
    /* Very small reference title */
    color: #666;
    /* Subtle */
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}

.faq-question {
    padding: 10px 0;
    /* Minimal padding */
    font-size: 0.8rem;
    /* Small text */
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media (max-width: 900px) {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .store-section .section-title {
        font-size: 1.2rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        /* Side padding for images */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
        object-fit: contain;
        /* Ensure full image is visible */
        max-height: 400px;
        /* Cap height just in case */
        border-radius: 4px;
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--neon-red);
    border: none;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

.play-icon {
    margin: 0;
}

/* Compact text for unified view */
.small-title {
    font-size: 0.9rem !important;
    /* Very small reference title */
    color: #666;
    /* Subtle */
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}

.faq-question {
    padding: 10px 0;
    /* Minimal padding */
    font-size: 0.8rem;
    /* Small text */
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}

.faq-answer strong {
    color: var(--neon-red);
    font-weight: 700;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media (max-width: 900px) {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        padding-right: 40px;
        /* Space for vertical title */
        background-color: #000;
        /* Force black background */
        position: relative;
        /* Ensure relative for absolute title */
    }

    .store-section .section-title {
        font-size: 1.2rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* Reduced gap to move buttons up */
        padding: 0 20px;
        /* Side padding for images */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
        object-fit: contain;
        /* Ensure full image is visible */
        max-height: 400px;
        /* Cap height just in case */
        border-radius: 4px;
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ff003c !important;
    border: none;
    color: #000 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: none;
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background-color: #ff003c !important;
    color: #000 !important;
    box-shadow: none;
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.2em;

}

/* --- Video Modal --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media screen {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .store-section .section-title {
        font-size: 1.0rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
        /* Remove padding for full-width image */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
        /* remove cap */
        border-radius: 0;
        /* Edge to edge */
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ff003c !important;
    border: none;
    color: #000 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background-color: #ff003c !important;
    color: #000 !important;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.2em;

}

/* --- Video Modal --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal-content>* {
    pointer-events: auto;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    cursor: pointer;
    z-index: 2005;
    line-height: 1;
    text-shadow: 0 0 10px #000;
    transition: transform 0.2s, color 0.2s;
}

.close-modal:hover {
    color: var(--neon-red);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 0;
    background: #000;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
    overflow: hidden;
    display: table;
    /* Shrink to fit content */
}

.video-wrapper video {
    display: block;
    width: auto;
    height: auto;
    max-height: 75vh;
    max-width: 450px;
}

/* Modal CTA Button (New) */
.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255, 0, 60, 0.2);
    /* Transparent Red */
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.modal-cta-btn:hover {
    background: rgba(255, 0, 60, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1em;
}

/* Mobile & Limited Height Screens Override */
@media screen {
    .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        border: 2px solid rgba(255, 0, 60, 0.5);
        /* Soft red border */
        color: var(--neon-red);
        /* Red X */
        font-size: 28px;
        /* Bigger X */
        padding-bottom: 4px;
    }

    .video-wrapper {
        border-radius: 12px;
        border: 1px solid var(--neon-red);
        width: auto;
        /* Let max properties handle sizing to aspect ratio */
        max-width: 85vw;
        margin-bottom: 5px;
    }

    .video-wrapper video {
        width: auto;
        height: auto;
        max-height: 65vh;
        max-width: 100%;
        /* Ensure it fits within wrapper */
    }

    .modal-cta-btn {
        margin-top: 15px;
        width: 85%;
        justify-content: center;
        padding: 12px;
        background: rgba(255, 0, 60, 0.3);
    }
}

/* Store Action Buttons */
.store-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.store-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 20px 30px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.store-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-red);
    transition: width 0.3s ease;
    z-index: 0;
    opacity: 0.1;
}

.store-action-btn:hover::before {
    width: 100%;
}

.store-action-btn:hover {
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
}

.store-action-btn .btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.store-action-btn .btn-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--neon-red);
    transition: transform 0.3s ease;
}



.modal-content>* {
    pointer-events: auto;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    cursor: pointer;
    z-index: 2005;
    line-height: 1;
    text-shadow: 0 0 10px #000;
    transition: transform 0.2s, color 0.2s;
}

.close-modal:hover {
    color: var(--neon-red);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 0;
    background: #000;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
    overflow: hidden;
    display: table;
    /* Shrink to fit content */
}

.video-wrapper video {
    display: block;
    width: auto;
    height: auto;
    max-height: 75vh;
    max-width: 450px;
}

/* Modal CTA Button (New) */
.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255, 0, 60, 0.2);
    /* Transparent Red */
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.modal-cta-btn:hover {
    background: rgba(255, 0, 60, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1em;
}

/* Mobile & Limited Height Screens Override */
@media screen {
    .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        border: 2px solid rgba(255, 0, 60, 0.5);
        /* Soft red border */
        color: var(--neon-red);
        /* Red X */
        font-size: 28px;
        /* Bigger X */
        padding-bottom: 4px;
    }

    .video-wrapper {
        border-radius: 12px;
        border: 1px solid var(--neon-red);
        width: auto;
        /* Let max properties handle sizing to aspect ratio */
        max-width: 85vw;
        margin-bottom: 5px;
    }

    .video-wrapper video {
        width: auto;
        height: auto;
        max-height: 65vh;
        max-width: 100%;
        /* Ensure it fits within wrapper */
    }

    .modal-cta-btn {
        margin-top: 15px;
        width: 85%;
        justify-content: center;
        padding: 12px;
        background: rgba(255, 0, 60, 0.3);
    }
}

/* Store Action Buttons Container */
.store-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 5px;
    /* Minimal top margin */
}

/* Force pure black background for Store properties to match image */
.store-section {
    background-color: #000 !important;
    padding-top: 20px;
    /* Adjust padding if needed */
}

/* --- Store Tech Buttons (New Refined Style) --- */
.store-tech-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    background: transparent;
    /* No fill */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle wireframe */
    border-radius: 50px;
    /* Pill shape */
    color: #ccc;
    /* Softer white */
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.store-tech-btn:hover {
    border-color: var(--neon-red);
    color: #fff;
    background: rgba(255, 0, 60, 0.1);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.btn-indicator {
    color: var(--neon-red);
    font-weight: bold;
    font-size: 1em;
}

.store-tech-btn .btn-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* New Arsenal Mini Title */
.arsenal-mini-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Vertical Right Positioning - Top Aligned near Menu */
    position: absolute;
    right: 12px;
    top: 30px;
    /* Aligns with top area near menu */
    width: auto;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    /* Anchors the top-right of the vertical text */
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.text-white {
    color: #fff;
}

.text-red {
    color: var(--neon-red);
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Mobile specific for store actions */
@media (max-width: 900px) {
    .store-actions-grid {
        grid-template-columns: 1fr 1fr;
        /* Side by side on mobile */
        gap: 15px;
        /* Comfortable gap */
        padding: 0 20px;
        /* Side padding */
    }

    .store-actions-grid .store-tech-btn {
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
        border-radius: 30px;
        /* Smaller pills */
    }

    .store-actions-grid .store-tech-btn .btn-indicator {
        display: inline-block;
        /* Show on mobile */
        margin-right: 5px;
        font-size: 0.8rem;
    }

    .store-actions-grid .store-tech-btn .btn-text {
        font-size: 0.6rem;
        /* Reduced to fit on one line */
        white-space: nowrap;
        /* Force single line */
    }

    /* --- MOBILE NAV UPDATES --- */
    .hamburger-menu {
        display: none !important;
        /* Hide hamburger menu on mobile as requested */
    }

    /* New fixed Mobile Store Button - Delicate White Version */
    .mobile-store-btn {
        display: block !important;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        /* Delicate size */
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.5);
        /* Thin, delicate white border */
        padding: 6px 14px;
        border-radius: 2px;
        /* Slight tech radius, not full round */
        text-transform: uppercase;
        letter-spacing: 2px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        transition: all 0.3s ease;
    }

    .mobile-store-btn:active {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

    .navbar {
        padding: 0.7rem 1rem;
    }

    .logo {
        height: 42px;
    }

    .arsenal-mini-title {
        font-size: 0.7rem;
        right: 12px;
    }
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
}

.comparison-table th,
.comparison-table td {
    padding: 10px;
    border: 1px solid #333;
    text-align: center;
}

.comparison-table th {
    background-color: #111;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.comparison-table th:last-child {
    background-color: rgba(255, 0, 60, 0.1);
    border-color: var(--neon-red);
    color: var(--neon-red);
}

.comparison-table td:last-child {
    color: var(--neon-red);
    font-weight: bold;
    border-color: rgba(255, 0, 60, 0.3);
    background-color: rgba(255, 0, 60, 0.05);
}

.table-wrapper {
    overflow-x: auto;
    /* Scroll on small screens */
    margin-bottom: 20px;
}

/* --- Advanced Features Section --- */
.advanced-features-section {
    padding: 80px 0;
    min-height: 100vh;
    background: #050505;
    border-top: 1px solid #1a1a1a;
}

.adv-intro-block {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adv-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.adv-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* Level Blocks */
.adv-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    /* Reduced from default h2 size */
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.adv-desc {
    font-family: 'Share Tech Mono', monospace;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.level-block {
    margin-bottom: 40px;
    /* Reduced from 60px */
    border-bottom: 1px dashed #222;
    padding-bottom: 30px;
    /* Reduced from 50px */
}

.level-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.level-badge {
    background: var(--neon-red);
    color: #000;
    font-family: 'Share Tech Mono', monospace;
    padding: 2px 8px;
    font-weight: bold;
    font-size: 0.8rem;
}

.level-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    /* Reduced title size */
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}


.level-block:last-child {
    border: none;
}

.level-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.level-badge {
    background: var(--neon-red);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 2px;
}

.level-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Grid matches workflow-grid */
.adv-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 9999px) {
    .adv-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Unify Card Style with Workflow Card */
.adv-feature-card {
    background: rgba(255, 255, 255, 0.03);
    /* Match basic */
    border: 1px solid #333;
    /* Match basic */
    padding: 30px 20px;
    /* Match basic padding */
    border-radius: 4px;
    /* Match basic radius */
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    transition: all 0.3s ease;
}

.adv-feature-card:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

/* Red Ramp Levels */
.level-1-card .adv-feature-card {
    background: rgba(255, 0, 60, 0.02);
    /* Very faint red */
    border-color: #333;
}

.level-2-card .adv-feature-card {
    background: rgba(255, 0, 60, 0.04);
    border-color: rgba(255, 0, 60, 0.1);
}

.level-3-card .adv-feature-card {
    background: rgba(255, 0, 60, 0.07);
    border-color: rgba(255, 0, 60, 0.2);
}

.level-4-card .adv-feature-card {
    background: rgba(255, 0, 60, 0.1);
    /* Visible red tint */
    border-color: rgba(255, 0, 60, 0.3);
}

.level-5-card .adv-feature-card {
    background: rgba(255, 0, 60, 0.15);
    /* Stronger red tint */
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.05);
}

/* Flex row for card with text and image - ENABLED FOR ALL SIZES */
.adv-feature-card:has(.adv-card-text):has(.adv-screenshot-frame) {
    flex-direction: row;
    align-items: center;
    /* Center Vertically to match image height */
    justify-content: space-between;
    gap: 15px;
}


/* Also support group layout on mobile */
.adv-feature-card:has(.adv-screenshot-frame-group) {
    flex-direction: column;
    /* Stack on super small mobile? No, let's try row if fits, or stack images below */
    gap: 15px;
}

.adv-screenshot-frame-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-end;
    /* Align images right */
}

.adv-feature-card:has(.adv-card-text):has(.adv-screenshot-frame) .adv-card-text {
    flex: 1;
    /* Takes remaining space */
    padding-right: 10px;
}

.adv-feature-card:has(.adv-card-text):has(.adv-screenshot-frame) .adv-screenshot-frame {
    width: 110px;
    /* Reduced from 130px for Mobile */
    flex-shrink: 0;
    margin-top: 0;
}

.adv-screenshot-frame-group .adv-screenshot-frame {
    width: 110px;
    /* Scale in group Mobile */
}


/* Flex row if card has text wrapper and image (Desktop) */
@media (min-width: 9999px) {
    .adv-feature-card:has(.adv-card-text):has(.adv-screenshot-frame) .adv-screenshot-frame {
        width: 160px;
        /* Reduced from 180px */
    }

    .adv-feature-card:has(.adv-card-text):has(.adv-screenshot-frame) {
        gap: 25px;
    }

    /* Support for groups of images (Level 5) */
    .adv-feature-card:has(.adv-screenshot-frame-group) {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .adv-feature-card:has(.adv-screenshot-frame-group) .adv-card-text {
        flex: 1;
        padding-right: 20px;
    }

    .adv-feature-card:has(.adv-screenshot-frame-group) .adv-screenshot-frame {
        width: 120px;
        /* Reduced from 140px for tighter look */
    }
}

.adv-feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    /* Reduced from 1rem */
    color: var(--neon-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.adv-feature-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    /* Increased size (was 0.8rem) */
    color: #ccc;
    /* Lighter color for better readability */
    line-height: 1.5;
    /* Tighter line height for block look */
    flex-grow: 1;
    text-align: left;
    margin: 0;
    padding: 0;
}

.adv-screenshot-frame {
    margin-top: 0;
    /* Remove top margin if aligned to side */
    border: 1px solid var(--neon-red);
    padding: 0;
    background: #000;
    display: flex;
    /* Flex handles content size perfectly */
    line-height: 0;
    /* Kill ghost space */
    max-width: 100%;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.15);
    cursor: pointer;
    transition: transform 0.2s;
    height: fit-content;
    /* Ensure it fits image */
}

.adv-screenshot-frame img {
    display: block;
    /* Critical for removing bottom space */
    width: 100%;
    height: auto;
}

.adv-screenshot-frame:hover {
    transform: scale(1.02);
}


.adv-conclusion {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: transparent;
    border: none;
    border-radius: 4px;
}

.adv-conclusion h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.adv-conclusion p {
    font-family: 'Share Tech Mono', monospace;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .adv-feature-grid {
        grid-template-columns: 1fr;
    }
}



/* FAQ Disclaimer */
.faq-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.65rem;
    color: #444;
    text-align: center;
    line-height: 1.6;
    font-family: 'Share Tech Mono', monospace;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-disclaimer strong {
    color: #fff;
    font-weight: bold;
    margin-right: 5px;
}

/* --- New FAQ Refinements (Step 48) --- */

/* Custom Red Markers replacing Emojis */
.faq-mark {
    color: var(--neon-red);
    font-weight: 900;
    font-family: var(--font-heading);
    margin-right: 8px;
    letter-spacing: -1px;
}

/* Highlight Boxes for Important Summaries */
.faq-highlight-box {
    border: 1px solid var(--neon-red);
    background: rgba(255, 0, 60, 0.05);
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    position: relative;
}

.faq-highlight-box::before {
    content: "IMPORTANT //";
    position: absolute;
    top: -10px;
    left: 10px;
    background: #000;
    /* Match bg color to hide border */
    padding: 0 5px;
    color: var(--neon-red);
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: bold;
}

/* Styled Lists */
.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.faq-list li::before {
    content: ">>";
    color: var(--neon-red);
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Spacing Utilities */
.faq-spacer {
    height: 20px;
}

.faq-subtitle {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
    border-left: 3px solid var(--neon-red);
    padding-left: 10px;
}

/* Footer Disclaimer */
.footer-disclaimer-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: #444;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer-text strong {
    color: #666;
    margin-right: 5px;
}

/* --- How It Works: Basic Level --- */
.how-it-works-section {
    padding-top: 100px;
    padding-bottom: 20px;
    /* Reduced from 60px */
    background: #080808;
    min-height: 100vh;
}

.hiw-header {
    text-align: center;
    margin-bottom: 30px;
}

.hiw-header .glitch-title {
    font-size: 1.8rem !important;
}

.hiw-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    letter-spacing: 1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    /* Reduced from 60px */
    align-items: stretch;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 30px 20px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.workflow-card:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.warning-card {
    border-color: rgba(255, 0, 60, 0.3);
    background: rgba(255, 0, 60, 0.05);
}

.warning-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
}

.wf-step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: 900;
}

.wf-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.warning-card .wf-icon {
    color: var(--neon-red);
}

.wf-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
}

.wf-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.wf-desc {
    font-family: 'Share Tech Mono', monospace;
    color: #aaabbb;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.wf-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    background: #222;
    color: #ccc;
    padding: 5px 10px;
    border-radius: 2px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-red {
    background: var(--neon-red);
    color: #000;
    font-weight: 700;
}

/* Infographic */
.infographic-container {
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
    /* Removed padding/border top */
}

.infographic-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.highlight-border {
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.infographic-img {
    width: 100%;
    height: auto;
    display: block;
}

.infographic-caption {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-it-works-section {
        padding-top: 100px;
    }
}

/* Lightbox Modal */
.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 80vw;
    /* Reduced from 90vw to avoid overflow */
    max-height: 80vh;
    /* Reduced from 90vh */
    height: auto;
    transform: none;
    /* Remove previous zoom, let sizing handle it */
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    /* Ensure image is seen fully */
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-family: 'Share Tech Mono', monospace;
    margin-top: 20px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--neon-red);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
    }
}

/* --- Unified Workflow Card Layout for Advanced Features --- */

/* Wrapper to match workflow-grid logic */
/* Wrapper for Advanced Features Grid */
.adv-workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

@media screen {
    .adv-workflow-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Internal Layout: Side-by-Side for Advanced Mode */
/* Forces Icon/Title/Desc to Left (1fr) and Image to Right (110px) */
.adv-workflow-grid .workflow-card {
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-template-areas:
        "icon image"
        "title image"
        "desc image";
    gap: 5px 20px;
    align-items: start;
    padding: 20px;
    text-align: left;
}

/* Assign Grid Areas */
.adv-workflow-grid .wf-icon {
    grid-area: icon;
    margin-bottom: 5px;
    margin-top: 30px;
    /* Clear space for top-left badge */
    font-size: 1.4rem;
}

.adv-workflow-grid .wf-title {
    grid-area: title;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.2;
}

.adv-workflow-grid .wf-desc {
    grid-area: desc;
    margin-bottom: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #ccc;
}

/* Standard Image Thumbnail styling */
.adv-card-thumb {
    grid-area: image;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    margin-top: 0;
    /* Override generic style */
    align-self: start;
}

.adv-card-thumb:hover {
    transform: scale(1.05);
    border-color: #fff;
    z-index: 5;
}

/* Override for Stacked/Grouped Images Container */
/* Targets the div that holds multiple images */
.adv-workflow-grid .workflow-card>div {
    grid-area: image;
    display: flex !important;
    flex-direction: column !important;
    /* Stack vertically in the side column */
    gap: 8px !important;
    align-self: start;
    width: 100%;
}

/* Inner images within the group */
.adv-workflow-grid .workflow-card>div img {
    width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.adv-workflow-grid .workflow-card>div img:hover {
    transform: scale(1.05);
    border-color: #fff;
}

/* Color Theme Modifiers for Workflow Cards */
/* Level 1: Red (Security) */
.theme-red .workflow-card {
    border-color: rgba(255, 0, 60, 0.3);
    background: linear-gradient(145deg, rgba(20, 0, 5, 0.9), rgba(10, 0, 0, 0.95));
}

.theme-red .workflow-card:hover {
    border-color: var(--neon-red);
}

.theme-red .wf-step-number {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.theme-red .wf-icon {
    color: var(--neon-red);
}

/* Level 2: Green (Anti-Spy/Privacy) */
.theme-green .workflow-card {
    border-color: rgba(0, 255, 136, 0.3);
    background: linear-gradient(145deg, rgba(0, 20, 10, 0.9), rgba(0, 10, 5, 0.95));
}

.theme-green .workflow-card:hover {
    border-color: #00ff88;
}

.theme-green .wf-step-number {
    color: #00ff88;
    border-color: #00ff88;
}

.theme-green .wf-icon {
    color: #00ff88;
}

/* Level 3: Blue (System Integrity) */
.theme-blue .workflow-card {
    border-color: rgba(0, 200, 255, 0.3);
    background: linear-gradient(145deg, rgba(0, 10, 20, 0.9), rgba(0, 5, 10, 0.95));
}

.theme-blue .workflow-card:hover {
    border-color: #00c8ff;
}

.theme-blue .wf-step-number {
    color: #00c8ff;
    border-color: #00c8ff;
}

.theme-blue .wf-icon {
    color: #00c8ff;
}

/* Level 4: Purple/Cyan (Identity) */
.theme-purple .workflow-card {
    border-color: rgba(180, 0, 255, 0.3);
    background: linear-gradient(145deg, rgba(20, 0, 20, 0.9), rgba(10, 0, 10, 0.95));
}

.theme-purple .workflow-card:hover {
    border-color: #b400ff;
}

.theme-purple .wf-step-number {
    color: #b400ff;
    border-color: #b400ff;
}

.theme-purple .wf-icon {
    color: #b400ff;
}

/* Section Separator Titles (Mini Headers) */
.adv-section-separator {
    text-align: left;
    margin: 60px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #444;
}

.adv-section-separator h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #aaa;
    margin: 0;
    letter-spacing: 2px;
}

.adv-section-separator .separator-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    background: #222;
    padding: 2px 6px;
    margin-bottom: 5px;
    display: inline-block;
    color: #fff;
}

/* Color specific separators */
.sep-red {
    border-color: var(--neon-red);
}

.sep-red h3 {
    color: var(--neon-red);
}

.sep-green {
    border-color: #00ff88;
}

.sep-green h3 {
    color: #00ff88;
}

.sep-blue {
    border-color: #00c8ff;
}

.sep-blue h3 {
    color: #00c8ff;
}

.sep-purple {
    border-color: #b400ff;
}


/* Advanced Feature Comparison Tag */
.adv-tag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 65px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Default fallback */
    background-color: #000;
    padding: 2px;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transform: none;
    /* Neat (prolijo), no rotation */
}

/* Theme-Specific Badge Borders */
.theme-red .adv-tag-badge {
    border-color: rgba(255, 0, 60, 0.4);
}

.theme-red .workflow-card:hover .adv-tag-badge {
    border-color: var(--neon-red);
}

.theme-green .adv-tag-badge {
    border-color: rgba(0, 255, 136, 0.4);
}

.theme-green .workflow-card:hover .adv-tag-badge {
    border-color: #00ff88;
}

.theme-blue .adv-tag-badge {
    border-color: rgba(0, 200, 255, 0.4);
}

.theme-blue .workflow-card:hover .adv-tag-badge {
    border-color: #00c8ff;
}

.theme-purple .adv-tag-badge {
    border-color: rgba(180, 0, 255, 0.4);
}

.theme-purple .workflow-card:hover .adv-tag-badge {
    border-color: #b400ff;
}

.workflow-card:hover .adv-tag-badge {
    transform: scale(1.05);
    /* Slight scale only */
    transition: all 0.2s ease;
}

/* Mobile responsiveness for mission grid */
@media screen {
    .mission-features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* =========================================
   DESKTOP AS MOBILE SIMULATION
   (Centering the mobile view on large screens)
   ========================================= */
@media (min-width: 500px) {

    /* Constrain the main body to mobile width (Doubled) */
    body {
        max-width: 900px;
        /* Typical phone width x2 */
        margin: 0 auto;
        border-left: 1px solid #111;
        border-right: 1px solid #111;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        min-height: 100vh;
        background-color: #050505;
        position: relative;
    }

    /* Fix the Fixed Navbar to the same width */
    .navbar {
        max-width: 900px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    /* Fix Floating Menu position */
    .floating-oso-menu {
        left: 50%;
        margin-left: -430px;
        /* Push to left side of the 900px container (450 - 20px margin) */
        bottom: 20px;
        right: auto;
    }

    /* Ensure modals open within the centered view */
    .video-modal,
    .img-modal {
        max-width: 900px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    /* Adjust background video to cover this narrow strip properly */
    .hero-background {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        /* Bring above body background */
    }

    /* Ensure overlay and content sit on top of video */
    .hero-overlay {
        z-index: 1;
    }

    .hero-content {
        z-index: 2;
    }

    /* GLOBAL CENTERING FIX for all internal blocks */
    .container,
    .store-layout,
    .unified-info-layout,
    .footer-grid {
        max-width: 900px;
        /* Match body constraint */
        margin: 0 auto;
        /* Center horizontally */
        width: 100%;
    }

    /* Arsenal Section specifics */
    .store-layout {
        /* Ensure flex contents are centered if column direction */
        align-items: center;
    }

    /* Make sure full width blocks don't exceed container */
    .full-width-block {
        width: 100%;
        max-width: 800px;
        /* Slight inset for image */
    }

    /* Fix Arsenal Title to be standard Horizontal */
    .arsenal-mini-title {
        position: static !important;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        font-size: 1.5rem !important;
        letter-spacing: 4px !important;
        display: block !important;
    }

    /* Remove padding reserved for vertical title */
    .store-section {
        padding-right: 0 !important;
    }

    /* FAQ/Carousel Section specifics */
    .unified-info-layout {
        align-items: center;
    }

    .unified-carousel-wrapper {
        max-width: 800px;
        /* Consistent width */
    }

    /* FAQ text alignment */
    .faq-inner-container {
        text-align: left;
        /* Keep readable */
        max-width: 800px;
        margin: 0 auto;
    }

    /* Footer Centering */
    .footer-grid {
        padding: 0 40px;
        /* Ensure grid fits */
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        /* Center flex items */
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-brand-lockup {
        justify-content: center;
    }

    /* Force Bottom Bar to Stack and Center like Mobile */
    .footer-bottom-bar {
        text-align: center;
    }

    .footer-disclaimer-text {
        text-align: center;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        /* Stack them */
        gap: 15px;
        justify-content: center;
        text-align: center;
    }

    /* Hide the floating mobile store button on desktop simulation */
    .mobile-store-btn {
        display: none !important;
    }

    /* RESTORE NAVBAR LINKS DELETED BY GLOBAL MOBILE OVERRIDE */
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        border: none;
        width: auto;
        gap: 30px;
        justify-content: center;
        border-bottom: none;
    }

    .nav-links a {
        font-size: 0.9rem;
        /* Adjust if needed */
    }

    /* TIENDA LAYOUT OVERRIDES (Force Mobile Stack) */
    .dynamic-product-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .product-visual-col,
    .product-config-col {
        width: 100%;
        max-width: 100%;
    }

    .price-block {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .shop-section .container {
        max-width: 900px !important;
        margin: 0 auto !important;
    }

    /* COMO FUNCIONA CENTERING */
    .how-it-works-section,
    .workflow-grid {
        max-width: 900px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .wf-desc {
        text-align: center !important;
        /* Force text center */
        margin: 0 auto !important;
    }

    /* Ensure images in grid are centered */
    .workflow-card {
        align-items: center !important;
        text-align: center !important;
    }

    /* INFOGRAPHIC POSITION FIX (PC Only) */
    .workflow-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .infographic-flow-item {
        order: 10;
        /* Move to bottom */
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }

}

/* Ensure no horizontal overflow ever */
/* ----------------------------------------------------------- */
/* GLOBAL FIXES FOR FAQ ALIGNMENT (Mobile & Desktop) */
/* ----------------------------------------------------------- */
.faq-question,
.faq-answer,
.faq-inner-container .faq-item {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: center;
    /* Vertical center icon/text is fine, but text align left */
}

/* Ensure question text specifically is left aligned */
.faq-question span,
.faq-label {
    text-align: left !important;
}

/* Keep Titles Centered */
.unified-faq-wrapper .section-title,
.small-title {
    text-align: center !important;
}