
        /* ==========================================================================
           1. DESIGN SYSTEM & VARIABLE TOKENS (CSS3)
           ========================================================================== */
        :root {
            --bg-dark: #07090e;
            --bg-card: rgba(18, 22, 35, 0.65);
            --bg-card-hover: rgba(28, 34, 53, 0.85);
            --border-glass: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(0, 229, 255, 0.2);
            
            --primary: #0071e3;       /* Apple Premium Blue */
            --electric-blue: #0052ff; /* Deep Electric High-Performance */
            --neon-cyan: #00e5ff;     /* Futuristic Accent */
            --text-main: #f5f5f7;     /* Soft White */
            --text-muted: #86868b;    /* Silver Muted text */
            --accent-green: #30d158;  /* Success Badges */
            --accent-red: #ff3b30;    /* Premium Alert/Discount */
            
            --font-main: 'Plus Jakarta Sans', sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ==========================================================================
           2. BASE RESETS & SCROLLBAR ARCHITECTURE
           ========================================================================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            user-select: none;
        }

        html, body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-main);
            overflow-x: hidden;
            scroll-behavior: auto;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--neon-cyan);
        }

        /* Custom Desktop Cursor Element */
        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--neon-cyan);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            mix-blend-mode: screen;
            display: none;
        }

        @media (min-width: 1024px) {
            .custom-cursor { display: block; }
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--neon-cyan));
            width: 0%;
            z-index: 10000;
        }

        /* Premium Loader Overlays */
        .preloader {
            position: fixed;
            inset: 0;
            background: #020306;
            z-index: 20000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s ease;
        }
        .loader-logo {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 4px;
            background: linear-gradient(90deg, #fff, var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .loader-bar {
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            border-radius: 2px;
        }
        .loader-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 40%;
            background: var(--neon-cyan);
            animation: load 1.5s infinite linear;
        }
        @keyframes load {
            0% { left: -40%; }
            100% { left: 100%; }
        }

        /* ==========================================================================
           3. APERIODIC CORE INTERFACE LAYOUTS (NAVBAR, PAGES, FOOTER)
           ========================================================================== */
        
        /* Glassmorphic Top Navigation Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(7, 9, 14, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            transition: var(--transition-smooth);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: var(--neon-cyan);
        }
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .nav-link:hover, .nav-link.active {
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
            transition: var(--transition-smooth);
        }
        .nav-btn:hover {
            color: var(--neon-cyan);
        }
        .badge-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background: var(--primary);
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: 700;
        }

        .menu-toggle {
            display: none;
            font-size: 1.4rem;
            color: #fff;
            cursor: pointer;
        }

        /* View Router Manager Views Layout */
        .app-view {
            display: none;
            padding-top: 80px;
            min-height: calc(100vh - 400px);
        }
        .app-view.active-view {
            display: block;
        }

        /* ==========================================================================
           4. HERO SECTIONS & REVOLUTION SLIDERS
           ========================================================================== */
        .hero-section {
            height: 85vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(circle at 50% 30%, #111827 0%, var(--bg-dark) 70%);
        }
        .hero-bg-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
            top: 10%;
            left: 25%;
            filter: blur(40px);
            pointer-events: none;
            animation: pulseGlow 8s infinite alternate ease-in-out;
        }
        @keyframes pulseGlow {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.2) translate(40px, 30px); }
        }
        .hero-content {
            max-width: 900px;
            text-align: center;
            z-index: 10;
            padding: 0 20px;
        }
        .hero-tagline {
            font-family: var(--font-display);
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--neon-cyan);
            margin-bottom: 20px;
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 25px;
            background: linear-gradient(180deg, #ffffff 30%, #a1a1a6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 40px auto;
            line-height: 1.6;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-premium {
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }
        .btn-solid {
            background: linear-gradient(90deg, var(--electric-blue), var(--primary));
            color: #fff;
            box-shadow: 0 4px 20px rgba(0, 82, 255, 0.3);
        }
        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 82, 255, 0.5);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(10px);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: #fff;
        }

        /* ==========================================================================
           5. FILTERS & THE LIVELY SEARCH GRID 
           ========================================================================== */
        .showcase-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 25px;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .sec-title h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 700;
        }
        .sec-title p {
            color: var(--text-muted);
            margin-top: 5px;
        }

        /* Continuous Horizontal Categories Scroller */
        .category-scroll-container {
            width: 100%;
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px 0 25px 0;
            scrollbar-width: none;
        }
        .category-scroll-container::-webkit-scrollbar {
            display: none;
        }
        .cat-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 50px;
            color: var(--text-main);
            margin-right: 12px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }
        .cat-pill i {
            color: var(--neon-cyan);
        }
        .cat-pill:hover, .cat-pill.active {
            background: #fff;
            color: #000;
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* Live Integrated Functional Search Engine Engine Area */
        .search-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
        }
        .search-input-group {
            display: flex;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 12px 20px;
            align-items: center;
            gap: 15px;
        }
        .search-input-group i {
            color: var(--text-muted);
            font-size: 1.2rem;
        }
        .search-input-group input {
            background: none;
            border: none;
            color: #fff;
            font-size: 1rem;
            width: 100%;
            outline: none;
        }
        .search-input-group input::placeholder {
            color: var(--text-muted);
        }

        /* ==========================================================================
           6. GLASSMORPHISM HIGH-PERFORMANCE CARDS GRID
           ========================================================================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 20px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-smooth);
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--border-glow);
            box-shadow: 0 15px 35px rgba(0, 229, 255, 0.08);
            background: var(--bg-card-hover);
        }
        
        /* Floating Badges Ribbons */
        .card-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 5;
        }
        .badge {
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            text-transform: uppercase;
        }
        .badge-hot { background: var(--accent-red); color: #fff; }
        .badge-new { background: var(--neon-cyan); color: #000; }
        .badge-save { background: var(--accent-green); color: #fff; }

        .wishlist-heart {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 5;
            background: rgba(255, 255, 255, 0.05);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            border: 1px solid var(--border-glass);
        }
        .wishlist-heart:hover, .wishlist-heart.active {
            background: rgba(255, 59, 48, 0.15);
            color: var(--accent-red);
            border-color: rgba(255, 59, 48, 0.3);
        }

        /* Graphic Product Elements Frame */
        .product-img-frame {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 75%);
            border-radius: 16px;
            overflow: hidden;
        }
        .product-img-frame img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img-frame img {
            transform: scale(1.1);
        }

        /* Info Segment Layouts */
        .info-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
            height: 44px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 15px;
            font-size: 0.8rem;
            color: #ffb800;
        }
        .rating-row span {
            color: var(--text-muted);
            margin-left: 4px;
        }
        
        .price-matrix {
            margin-bottom: 20px;
        }
        .price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .current-price {
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            font-family: var(--font-display);
        }
        .old-price {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }
        .emi-badge {
            font-size: 0.8rem;
            color: var(--neon-cyan);
            margin-top: 4px;
            font-weight: 500;
        }

        .card-actions-row {
            display: flex;
            gap: 10px;
        }
        .card-actions-row .btn-premium {
            padding: 10px;
            font-size: 0.85rem;
            border-radius: 12px;
            justify-content: center;
            flex: 1;
        }

        /* ==========================================================================
           7. EXTRA FULL PAGE VIEWS: COMPONENT DEFINITIONS
           ========================================================================== */
        
        /* Modern Structured Cart Flyout Panel Drawer */
        .cart-drawer {
            position: fixed;
            top: 0;
            right: -450px;
            width: 100%;
            max-width: 450px;
            height: 100vh;
            background: rgba(10, 13, 22, 0.95);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 5000;
            border-left: 1px solid var(--border-glass);
            box-shadow: -10px 0 40px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .cart-drawer.open-drawer {
            right: 0;
        }
        .cart-header {
            padding: 25px;
            border-bottom: 1px solid var(--border-glass);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cart-items-list {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }
        .cart-item {
            display: flex;
            gap: 15px;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-glass);
            align-items: center;
        }
        .cart-item img {
            width: 65px;
            height: 65px;
            object-fit: contain;
            background: rgba(255,255,255,0.02);
            border-radius: 10px;
        }
        .cart-item-info {
            flex: 1;
        }
        .cart-item-name {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .cart-item-price {
            font-size: 0.9rem;
            color: var(--neon-cyan);
            font-weight: 700;
        }
        .qty-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }
        .qty-btn {
            width: 24px;
            height: 24px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-glass);
            color: #fff;
            border-radius: 4px;
            cursor: pointer;
        }
        .cart-summary-box {
            padding: 25px;
            background: rgba(0,0,0,0.2);
            border-top: 1px solid var(--border-glass);
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .summary-row.total-row {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 700;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border-glass);
        }

        /* About & Dynamic Metrics Segment Layouts */
        .info-layout-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }
        .metric-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-glass);
            text-align: center;
        }
        .metric-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--neon-cyan);
        }

        /* Contact & Advanced Forms Interfaces Frame */
        .contact-ui-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            margin-top: 40px;
        }
        .premium-form {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            padding: 40px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .form-group input, .form-group textarea {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-glass);
            padding: 14px 18px;
            border-radius: 12px;
            color: #fff;
            font-family: var(--font-main);
            outline: none;
            transition: var(--transition-smooth);
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
        }
        .map-frame-box {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border-glass);
            height: 100%;
            min-height: 350px;
        }

        /* FAQ Accordions Layouts Structure */
        .faq-accordion-box {
            max-width: 800px;
            margin: 40px auto 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .faq-node {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            overflow: hidden;
        }
        .faq-trigger {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }
        .faq-content-pane {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            color: var(--text-muted);
            line-height: 1.6;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-node.active-faq .faq-content-pane {
            max-height: 200px;
            padding-bottom: 20px;
        }
        .faq-node.active-faq .faq-trigger i {
            transform: rotate(180deg);
            color: var(--neon-cyan);
        }

        /* ==========================================================================
           8. MASTER SIGNATURE CORNER FOOTER
           ========================================================================== */
        footer {
            background: #040508;
            border-top: 1px solid var(--border-glass);
            padding: 80px 25px 30px 25px;
            margin-top: 100px;
        }
        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid var(--border-glass);
        }
        .foot-col h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .foot-col p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .foot-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .foot-links li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .foot-links li a:hover {
            color: var(--neon-cyan);
            padding-left: 5px;
        }
        .social-row {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }
        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-glass);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        .social-icon:hover {
            background: var(--neon-cyan);
            color: #000;
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(0,229,255,0.4);
        }
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* ==========================================================================
           9. FLOATING ACTION PANEL DOCK & SYSTEM COMMUNICATORS
           ========================================================================== */
        .floating-dock {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 4000;
        }
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 1.4rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
        }
        .float-btn:hover {
            transform: scale(1.1) translateY(-4px);
        }
        .float-wa { background: #25D366; }
        .float-call { background: var(--primary); }
        .float-top { 
            background: rgba(255,255,255,0.08); 
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
        }
        .float-top.show-btn {
            opacity: 1;
            visibility: visible;
        }

        /* ==========================================================================
           10. ULTRA-RESPONSIVE BREAKPOINTS ENGINE (MOBILE-FIRST UI)
           ========================================================================== */
        @media (max-width: 1023px) {
            .menu-toggle { display: block; }
            .nav-menu {
                position: fixed;
                top: 76px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 76px);
                background: rgba(7, 9, 14, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 40px;
                gap: 25px;
                transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .nav-menu.mobile-open { left: 0; }
            .hero-title { font-size: 2.5rem; }
            .info-layout-grid, .contact-ui-wrapper, .footer-grid {
                grid-template-columns: 1fr;
            }
            .form-row { grid-template-columns: 1fr; }
        }
