:root {
            --hot-pink: #FF00FF;
            --electric-cyan: #00FFFF;
            --deep-purple: #330066;
            --sunburst-orange: #FF6600;
            --gold-foil: #FFD700;
            --chrome-silver: linear-gradient(135deg, #E0E0E0 0%, #B0B0B0 50%, #808080 100%);
            --off-white: #FFFFF0;
            --rubber-black: #1A1A1A;
            --chalk-white: #F5F5F5;
            --leather-brown: #8B4513;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0a0a1a;
            color: var(--off-white);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%230a0a1a'/%3E%3Cpath d='M0 0L100 100M100 0L0 100' stroke='%23330066' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
        }

        /* === TOP NAV (added) === */
        .site-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 10005;
            background: rgba(0,0,0,0.42);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.10);
        }
        .site-nav::before{
            content:'';
            position:absolute; left:0; right:0; top:0;
            height:2px;
            background: linear-gradient(90deg, var(--hot-pink), var(--electric-cyan), var(--sunburst-orange));
            opacity: 0.9;
        }
        .nav-inner{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap: 16px;
            padding: 14px 0;
        }
        .nav-brand{
            font-family:'Orbitron', sans-serif;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration:none;
            color: var(--off-white);
            text-shadow: 0 0 14px rgba(255,0,255,0.25);
            white-space: nowrap;
        }
        .nav-links{
            display:flex;
            gap: 18px;
            align-items:center;
            flex-wrap: wrap;
            justify-content:flex-end;
        }
        .nav-links a{
            font-family:'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration:none;
            color: rgba(255,255,255,0.85);
            padding: 8px 10px;
            border-radius: 6px;
            transition: all .2s ease;
        }
        .nav-links a:hover{
            color: var(--electric-cyan);
            background: rgba(0,255,255,0.08);
            box-shadow: 0 0 18px rgba(0,255,255,0.18);
        }
        @media (max-width: 720px){
            .nav-inner{ flex-direction: column; align-items:flex-start; }
            .nav-links{ width:100%; justify-content:flex-start; gap:10px; }
        }

        /* VHS Overlay Effect */
        .vhs-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.15;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.15) 0px,
                rgba(0, 0, 0, 0.15) 1px,
                transparent 1px,
                transparent 2px
            );
            animation: vhs-flicker 0.3s infinite;
            mix-blend-mode: overlay;
        }

        @keyframes vhs-flicker {
            0% { opacity: 0.1; }
            50% { opacity: 0.2; }
            100% { opacity: 0.1; }
        }

        /* Film Grain Effect */
        .film-grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        section { padding: 80px 0; position: relative; }

        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 110px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(ellipse at 20% 20%, rgba(255, 0, 255, 0.2) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 255, 255, 0.2) 0%, transparent 40%),
                linear-gradient(to bottom, #000011 0%, var(--deep-purple) 100%),
                url("./assets/DSC7892-scaled.jpg");
            background-size: auto, auto, auto, cover;
            background-position: center, center, center, center;
            background-repeat: no-repeat;
            z-index: -1;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0,50 Q25,40 50,50 T100,50' stroke='%23FF00FF' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3Cpath d='M0,60 Q25,70 50,60 T100,60' stroke='%2300FFFF' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 46px;
        }

        .hero-left { flex: 1 1 640px; min-width: 0; order: 1; }
        .hero-right { flex: 0 0 42%; max-width: 480px; width: 100%; display: flex; align-items: center; justify-content: flex-end; order: 2; }

        @media (max-width: 980px) {
            .hero-content { flex-direction: column; align-items: flex-start; }
            .hero-right { order: 0; width: 100%; justify-content: center; }
            .hero-left { order: 1; width: 100%; }
        }

        .hero-tag {
            display: inline-block;
            background: var(--chrome-silver);
            color: var(--rubber-black);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 8px 20px;
            border-radius: 30px;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .hero-headline-image {
            width: 100%;
            max-width: 520px;
            height: auto;
            display: block;
            margin: 0;
            filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
        }

        @media (max-width: 640px) {
            .hero-headline-image { width: 100%; max-width: 520px; margin: 0 0 14px 0; }
        }

        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5.5rem;
            line-height: 1;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--off-white) 30%, var(--sunburst-orange) 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
            letter-spacing: 3px;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            max-width: 700px;
            margin-bottom: 40px;
            color: var(--electric-cyan);
            font-weight: 500;
            line-height: 1.4;
        }

        .hero-subtitle span { color: var(--gold-foil); font-weight: 700; }

        .cta-buttons { display: flex; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 20px 40px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--chrome-silver);
            color: var(--rubber-black);
            box-shadow: 0 0 25px var(--hot-pink), 0 5px 15px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 35px var(--hot-pink), 0 0 20px var(--electric-cyan), 0 10px 20px rgba(0, 0, 0, 0.5);
            color: var(--hot-pink);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent 45%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 55%
            );
            transform: rotate(30deg);
            pointer-events: none;
        }

        .btn-secondary {
            background: transparent;
            color: var(--off-white);
            border: 2px solid var(--sunburst-orange);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary:hover {
            background: rgba(255, 102, 0, 0.1);
            box-shadow: 0 0 20px var(--sunburst-orange);
            transform: translateY(-3px);
        }

        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: nowrap;
            margin-top: 18px;
        }

        .badge { display: flex; align-items: center; gap: 10px; font-family: 'Orbitron', sans-serif; font-size: 0.78rem; line-height: 1.15; flex: 0 0 auto; }

        .badge-icon {
            width: 22px;
            height: 22px;
            background: var(--chrome-silver);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--rubber-black);
            font-weight: bold;
            flex: 0 0 auto;
            font-size: 0.75rem;
        }

        @media (max-width: 980px) {
            .trust-badges { justify-content: flex-start; flex-wrap: wrap; gap: 14px 18px; }
            .badge { font-size: 0.85rem; }
            .badge-icon { width: 24px; height: 24px; font-size: 0.8rem; }
        }

        /* BENEFITS BAR */
        .benefits-bar {
            background: linear-gradient(90deg, var(--deep-purple) 0%, #220044 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .benefits-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--hot-pink), var(--electric-cyan), var(--sunburst-orange));
        }

        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .benefit-item { text-align: center; padding: 20px; position: relative; }
        .benefit-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--gold-foil); }
        .benefit-text { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: var(--off-white); text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }

        /* HOW IT WORKS */
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--off-white);
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--hot-pink), var(--electric-cyan), transparent);
        }

        .section-subtitle { text-align: center; font-size: 1.2rem; color: var(--electric-cyan); max-width: 700px; margin: 0 auto 50px; line-height: 1.6; }

        .steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }

        .step {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: transform 0.3s ease;
        }

        .step:hover { transform: translateY(-10px); border-color: var(--hot-pink); box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2); }

        .step-number {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--chrome-silver);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--rubber-black);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .step-icon { font-size: 3rem; color: var(--electric-cyan); margin-bottom: 20px; }
        .step-title { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; margin-bottom: 15px; color: var(--off-white); text-transform: uppercase; }
        .step-description { color: var(--chalk-white); line-height: 1.6; }

        /* FEATURES */
        .features { background: rgba(0, 0, 0, 0.3); position: relative; }
        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 20%);
            pointer-events: none;
        }

        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

        .feature-card { background: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 30px; border-left: 4px solid var(--sunburst-orange); transition: all 0.3s ease; }
        .feature-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(10px); border-left-color: var(--electric-cyan); }

        .feature-icon { font-size: 2.5rem; color: var(--gold-foil); margin-bottom: 20px; }
        .feature-title { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 15px; color: var(--off-white); }
        .feature-desc { color: var(--chalk-white); line-height: 1.6; }

        /* COMPARISON */
        .comparison { position: relative; overflow: hidden; }
        .comparison::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M100,0 L200,100 L100,200 L0,100 Z' fill='none' stroke='%23330066' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
            background-size: 200px;
            opacity: 0.5;
            pointer-events: none;
        }

        .comparison-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; position: relative; }
        @media (max-width: 768px) { .comparison-container { grid-template-columns: 1fr; } }

        .vs-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--chrome-silver);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--rubber-black);
            z-index: 10;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
            border: 4px solid var(--hot-pink);
        }

        .comparison-column { padding: 40px 30px; border-radius: 10px; position: relative; overflow: hidden; }
        .comparison-column.ezback { background: linear-gradient(to bottom, rgba(51, 0, 102, 0.8), rgba(26, 0, 52, 0.9)); border: 2px solid var(--electric-cyan); box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
        .comparison-column.generic { background: linear-gradient(to bottom, rgba(64, 64, 64, 0.8), rgba(32, 32, 32, 0.9)); border: 2px solid #888; box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); }

        .comparison-title { font-family: 'Orbitron', sans-serif; font-size: 2rem; text-align: center; margin-bottom: 30px; text-transform: uppercase; }
        .ezback .comparison-title { color: var(--electric-cyan); text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
        .generic .comparison-title { color: #AAA; }

        .comparison-list { list-style: none; }
        .comparison-list li { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; }
        .comparison-list li:last-child { border-bottom: none; }
        .comparison-icon { margin-right: 15px; font-size: 1.5rem; }
        .ezback .comparison-icon { color: var(--gold-foil); }
        .generic .comparison-icon { color: #888; }

        /* SOCIAL PROOF */
        .social-proof { background: rgba(0, 0, 0, 0.4); }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
        .testimonial-card { background: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; transition: all 0.3s ease; }
        .testimonial-card:hover { transform: translateY(-10px); border-color: var(--sunburst-orange); box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2); }
        .testimonial-rating { color: var(--gold-foil); margin-bottom: 20px; font-size: 1.2rem; }
        .testimonial-text { font-style: italic; line-height: 1.6; margin-bottom: 20px; color: var(--chalk-white); }
        .testimonial-author { font-family: 'Orbitron', sans-serif; font-weight: 700; color: var(--electric-cyan); }
        .testimonial-gym { color: var(--sunburst-orange); font-size: 0.9rem; margin-top: 5px; }

        /* VIDEO */
        .video-section { text-align: center; position: relative; }
        .video-container { max-width: 900px; margin: 60px auto 0; position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7); }
        .video-embed { position: relative; width: 100%; padding-top: 56.25%; background: linear-gradient(45deg, #000, var(--deep-purple), #000); }
        .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

        /* FAQ */
        .faq { background: rgba(255, 255, 255, 0.02); }
        .faq-container { max-width: 900px; margin: 60px auto 0; }
        .faq-item { margin-bottom: 15px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); }
        .faq-question { background: rgba(255, 255, 255, 0.05); padding: 20px; font-family: 'Orbitron', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--off-white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
        .faq-question:hover { background: rgba(255, 255, 255, 0.1); color: var(--electric-cyan); }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.5s ease; background: rgba(0, 0, 0, 0.3); color: var(--chalk-white); line-height: 1.6; }
        .faq-item.active .faq-answer { padding: 20px; max-height: 500px; }
        .faq-toggle { color: var(--sunburst-orange); font-size: 1.5rem; transition: transform 0.3s ease; }
        .faq-item.active .faq-toggle { transform: rotate(45deg); }

        /* FINAL CTA */
        .final-cta { text-align: center; padding: 100px 0; background: linear-gradient(to bottom, #000011, var(--deep-purple)); position: relative; overflow: hidden; }
        .final-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--hot-pink), var(--electric-cyan), var(--sunburst-orange)); }
        .final-title { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; margin-bottom: 20px; text-transform: uppercase; background: linear-gradient(to right, var(--off-white), var(--gold-foil)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 3px; }
        .final-subtitle { font-size: 1.5rem; max-width: 700px; margin: 0 auto 50px; color: var(--electric-cyan); }
        .guarantee-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 215, 0, 0.1); border: 2px solid var(--gold-foil); padding: 15px 30px; border-radius: 50px; margin: 40px auto; font-family: 'Orbitron', sans-serif; font-weight: 700; }
        .urgency { color: var(--hot-pink); font-family: 'Orbitron', sans-serif; font-size: 1.2rem; margin-top: 30px; text-transform: uppercase; letter-spacing: 2px; }

        .contact-mini { margin-top: 18px; font-family: 'Orbitron', sans-serif; font-size: 0.95rem; letter-spacing: 0.6px; color: rgba(255, 255, 255, 0.85); text-transform: none; }
        .contact-mini a { color: var(--electric-cyan); text-decoration: none; border-bottom: 1px dashed rgba(0, 255, 255, 0.45); }
        .contact-mini a:hover { opacity: 0.9; }

        /* FOOTER */
        footer { background: #000; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); }
        .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--off-white); margin-bottom: 20px; letter-spacing: 3px; }
        .footer-tagline { color: var(--electric-cyan); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .disclaimer { font-size: 0.8rem; color: #888; max-width: 800px; margin: 30px auto 0; line-height: 1.5; }

        /* ENHANCED 80s EFFECTS */
        .sunset-stripe { height: 5px; background: linear-gradient(90deg, var(--hot-pink) 0%, var(--sunburst-orange) 25%, var(--gold-foil) 50%, var(--sunburst-orange) 75%, var(--hot-pink) 100%); margin: 20px 0; position: relative; overflow: hidden; }
        .sunset-stripe::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: sunset-glow 3s infinite; }
        @keyframes sunset-glow { 0% { left: -100%; } 100% { left: 100%; } }

        .palm-silhouette { position: absolute; bottom: 0; right: 5%; width: 150px; height: 200px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50,10 Q55,30 65,35 Q60,45 70,60 Q30,60 40,45 Q35,30 45,25 Z' fill='%2300FFFF' opacity='0.1'/%3E%3C/svg%3E"); background-repeat: no-repeat; z-index: 1; }
        .laser-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(90deg, transparent 49%, rgba(255, 0, 255, 0.1) 50%, transparent 51%), linear-gradient(0deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%); background-size: 50px 50px; opacity: 0.2; pointer-events: none; z-index: 1; }

        /* footer contact + powered by */
        .footer-contact, .footer-powered, .footer-note { margin-top: 14px; font-family: 'Orbitron', sans-serif; letter-spacing: 0.5px; }
        .footer-note { color: #bbb; font-size: 0.85rem; margin-top: 8px; }
        .footer-link { color: var(--electric-cyan); text-decoration: none; }
        .footer-link:hover { color: var(--hot-pink); text-shadow: 0 0 10px rgba(255, 0, 255, 0.4); }
        .footer-sep { margin: 0 10px; color: rgba(255,255,255,0.35); }

        /* floating WhatsApp button */
        .whatsapp-float {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            border: 2px solid var(--electric-cyan);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.35), 0 0 25px rgba(255, 0, 255, 0.25);
            text-decoration: none;
            z-index: 10001;
            backdrop-filter: blur(10px);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .whatsapp-float i { font-size: 30px; color: var(--gold-foil); }
        .whatsapp-float:hover { transform: translateY(-3px) scale(1.03); border-color: var(--hot-pink); box-shadow: 0 0 35px rgba(255, 0, 255, 0.45), 0 0 30px rgba(0, 255, 255, 0.35); }
        @media (max-width: 480px) { .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; } .whatsapp-float i { font-size: 28px; } }
            /* === Added: hero media stack + inline links === */
        .hero-media { width: 100%; display:flex; flex-direction: column; gap: 14px; }
        .hero-photo-main {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 18px 34px rgba(0,0,0,0.55);
        }
        .hero-photo-caption{
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.78);
            letter-spacing: 0.6px;
            margin-top: -6px;
        }
        .inline-link{
            color: var(--electric-cyan);
            text-decoration: none;
            border-bottom: 1px dashed rgba(0,255,255,0.45);
        }
        .inline-link:hover{
            color: var(--hot-pink);
            border-bottom-color: rgba(255,0,255,0.45);
        }


/* === Added: product gallery + tables === */
.gallery-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:18px; margin-top: 22px; }
.gallery-grid img{ width:100%; height:auto; border-radius:12px; border:1px solid rgba(255,255,255,0.14); box-shadow: 0 16px 26px rgba(0,0,0,0.45); }
.spec-table{ width:100%; border-collapse: collapse; margin-top: 16px; }
.spec-table th,.spec-table td{ text-align:left; padding: 12px 14px; border-bottom:1px solid rgba(255,255,255,0.12); color: var(--chalk-white); }
.spec-table th{ font-family:'Orbitron',sans-serif; color: var(--electric-cyan); font-weight:700; }
.breadcrumbs{ max-width: 980px; margin: 0 auto 10px; color: rgba(255,255,255,0.75); font-family:'Orbitron',sans-serif; font-size:0.85rem; }
.breadcrumbs a{ color: var(--electric-cyan); text-decoration:none; border-bottom: 1px dashed rgba(0,255,255,0.45); }
.breadcrumbs a:hover{ color: var(--hot-pink); border-bottom-color: rgba(255,0,255,0.45); }



/* === Blog / GEO content helpers === */
.blog-article { max-width: 900px; margin: 0 auto; text-align: left; }
.blog-article h2 { font-family: 'Orbitron', sans-serif; color: var(--electric-cyan); margin: 26px 0 10px; font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.6px; }
.blog-article p, .blog-article li { color: var(--chalk-white); line-height: 1.8; font-size: 1.02rem; }
.blog-article ul { margin-left: 18px; margin-top: 10px; }
.blog-meta { text-align:center; color: rgba(255,255,255,0.75); margin-top: 10px; font-family: 'Orbitron', sans-serif; letter-spacing: 0.5px; font-size: 0.92rem; }
.highlight { background: rgba(255,215,0,0.08); padding: 18px; border-left: 4px solid var(--gold-foil); border-radius: 12px; margin: 20px 0; }
.retailer-list { list-style: none; padding-left: 0; }
.retailer-list li { margin: 10px 0; display:flex; justify-content: space-between; gap: 12px; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 8px; }
.retailer-list a { white-space: nowrap; }


.hero-secondary-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin-top: 18px;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    opacity: 0.95;
}
@media (max-width: 980px) {
    .hero-secondary-image { max-width: 720px; }
}
