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

        :root {
            --primary: #5E5BFF;
            --primary-mid: #3A86FF;
            --primary-light: #00D1D1;
            --dark: #0E0433;
            --navy: #1a0f4d;
            --light-navy: #2d1b6b;
            --gray: #8b93a8;
            --light-gray: #f0f4f8;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }

        /* Material Symbols Icons */
        .material-symbols-rounded {
            font-family: 'Material Symbols Rounded';
            font-weight: normal;
            font-style: normal;
            font-size: 24px;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-variation-settings:
                'FILL' 1,
                'wght' 400,
                'GRAD' 0,
                'opsz' 48;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0E0433;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #00D1D1;
        }

        .login-button {
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(94, 91, 255, 0.4);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 5rem 2rem;
            background: 
                linear-gradient(135deg, rgba(14, 4, 51, 0.85) 0%, rgba(94, 91, 255, 0.75) 100%),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?q=80&w=2000') center/cover;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 4, 51, 0.7) 0%, rgba(58, 134, 255, 0.6) 100%);
            z-index: 0;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero .highlight {
            background: linear-gradient(135deg, #00D1D1 0%, #3A86FF 50%, #5E5BFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: white;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            background: #f0e6ff;
            color: #5E5BFF;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
        }

        .feature-icon .material-symbols-rounded {
            font-size: 32px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .benefit-icon .material-symbols-rounded {
            font-size: 48px;
        }

        .benefit-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .benefit-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 2rem;
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .step p {
            color: var(--gray);
        }

        /* Lyvra Smart Meter Dongle Product Section */
        .p1-product {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }

        .product-showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .dongle-render {
            position: relative;
        }

        .coming-soon-badge-dongle {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            box-shadow: 0 8px 30px rgba(94, 91, 255, 0.4);
            z-index: 10;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }

        .render-container {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 20px;
            padding: 4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .render-container::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-30%, -30%) scale(1.1); opacity: 0.8; }
        }

        .dongle {
            position: relative;
            width: 200px;
            height: 300px;
            z-index: 1;
        }

        .dongle-body {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            border-radius: 25px;
            box-shadow: 
                0 20px 60px rgba(0,0,0,0.4),
                inset 0 2px 4px rgba(255,255,255,0.1);
            position: relative;
            transform-style: preserve-3d;
            animation: float-dongle 4s ease-in-out infinite;
        }

        @keyframes float-dongle {
            0%, 100% { transform: translateY(0px) rotateY(-5deg); }
            50% { transform: translateY(-20px) rotateY(5deg); }
        }

        .dongle-top {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: #0E0433;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 5px 15px rgba(94, 91, 255, 0.5),
                0 0 25px rgba(58, 134, 255, 0.4),
                0 0 35px rgba(0, 209, 209, 0.3),
                inset 0 -2px 4px rgba(0,0,0,0.2);
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% { 
                box-shadow: 
                    0 5px 15px rgba(94, 91, 255, 0.5),
                    0 0 25px rgba(58, 134, 255, 0.4),
                    0 0 35px rgba(0, 209, 209, 0.3),
                    inset 0 -2px 4px rgba(0,0,0,0.2);
            }
            50% { 
                box-shadow: 
                    0 5px 20px rgba(94, 91, 255, 0.8),
                    0 0 35px rgba(58, 134, 255, 0.6),
                    0 0 45px rgba(0, 209, 209, 0.5),
                    inset 0 -2px 4px rgba(0,0,0,0.2);
            }
        }

        .dongle-top .logo {
            width: 60px;
            height: 60px;
            filter: drop-shadow(0 0 8px rgba(94, 91, 255, 0.8))
                    drop-shadow(0 0 12px rgba(58, 134, 255, 0.6))
                    drop-shadow(0 0 16px rgba(0, 209, 209, 0.4));
            animation: logoSvgGlow 3s ease-in-out infinite;
        }

        @keyframes logoSvgGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 8px rgba(94, 91, 255, 0.8))
                        drop-shadow(0 0 12px rgba(58, 134, 255, 0.6))
                        drop-shadow(0 0 16px rgba(0, 209, 209, 0.4));
            }
            50% { 
                filter: drop-shadow(0 0 12px rgba(94, 91, 255, 1))
                        drop-shadow(0 0 18px rgba(58, 134, 255, 0.8))
                        drop-shadow(0 0 24px rgba(0, 209, 209, 0.6));
            }
        }

        .indicator-light {
            position: absolute;
            top: 110px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 
                0 0 10px #10b981,
                0 0 20px #10b981;
            animation: pulse-light 2s ease-in-out infinite;
        }

        @keyframes pulse-light {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .connector {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 40px;
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
            border-radius: 5px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }

        .connector::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 15px;
            background: #718096;
            border-radius: 0 0 5px 5px;
        }

        .pin {
            position: absolute;
            width: 3px;
            height: 15px;
            background: gold;
            border-radius: 2px;
        }

        .pin:nth-child(1) { top: 10px; left: 15px; }
        .pin:nth-child(2) { top: 10px; left: 28px; }
        .pin:nth-child(3) { top: 10px; left: 41px; }

        .product-glow-dongle {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(94, 91, 255, 0.3) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            animation: glow-dongle 4s ease-in-out infinite;
        }

        @keyframes glow-dongle {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
        }

        .dongle-details h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .dongle-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .dongle-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .dongle-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .dongle-feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
        }

        .dongle-feature-icon .material-symbols-rounded {
            font-size: 28px;
        }

        .dongle-feature h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .dongle-feature p {
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .dongle-specs {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
        }

        .dongle-specs h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-row:last-child {
            border-bottom: none;
        }

        .spec-row span {
            color: var(--text-gray);
        }

        .spec-row strong {
            color: var(--text-dark);
        }

        .notify-section-dongle {
            background: linear-gradient(135deg, rgba(94, 91, 255, 0.05) 0%, rgba(0, 209, 209, 0.05) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(94, 91, 255, 0.1);
        }

        .notify-section-dongle h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .notify-section-dongle p {
            color: var(--text-gray);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .notify-form-dongle {
            display: flex;
            gap: 0.75rem;
        }

        .email-input-dongle {
            flex: 1;
            padding: 0.875rem 1.25rem;
            border: 2px solid rgba(94, 91, 255, 0.2);
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s;
            background: white;
        }

        .email-input-dongle:focus {
            border-color: #5E5BFF;
            box-shadow: 0 0 0 3px rgba(94, 91, 255, 0.1);
        }

        .notify-button-dongle {
            padding: 0.875rem 1.75rem;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .notify-button-dongle:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(94, 91, 255, 0.3);
        }

        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            display: none;
            animation: slideUp 0.5s ease-out;
        }

        .cookie-consent.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cookie-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cookie-text h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .cookie-text p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .cookie-accept {
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            color: white;
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(94, 91, 255, 0.3);
        }

        .cookie-reject {
            background: #e2e8f0;
            color: var(--text-dark);
        }

        .cookie-reject:hover {
            background: #cbd5e0;
        }

        .cookie-customize {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .cookie-customize:hover {
            background: rgba(94, 91, 255, 0.05);
        }

        /* Cookie Modal */
        .cookie-modal, .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            overflow-y: auto;
            padding: 2rem;
        }

        .cookie-modal.show, .privacy-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .cookie-modal-content, .privacy-modal-content {
            background: white;
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideDown 0.3s ease-out;
        }

        .privacy-modal-content {
            max-width: 800px;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookie-modal-header, .privacy-modal-header {
            padding: 2rem;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-modal-header h3, .privacy-modal-header h2 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin: 0;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .close-modal:hover {
            background: #f0f0f0;
            color: var(--text-dark);
        }

        .cookie-modal-body, .privacy-modal-body {
            padding: 2rem;
        }

        .cookie-category {
            margin-bottom: 2rem;
        }

        .cookie-category-header {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .cookie-category h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .cookie-category p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 28px;
            flex-shrink: 0;
        }

        .cookie-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e0;
            transition: 0.4s;
            border-radius: 28px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .cookie-slider {
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
        }

        input:checked + .cookie-slider:before {
            transform: translateX(22px);
        }

        input:disabled + .cookie-slider {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .cookie-modal-footer {
            padding: 1.5rem 2rem;
            border-top: 1px solid #e2e8f0;
            display: flex;
            justify-content: flex-end;
        }

        /* Privacy Policy Styles */
        .privacy-modal-body {
            line-height: 1.8;
        }

        .privacy-modal-body .last-updated {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 2rem;
        }

        .privacy-modal-body section {
            margin-bottom: 2.5rem;
        }

        .privacy-modal-body h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .privacy-modal-body h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin: 1rem 0 0.5rem 0;
        }

        .privacy-modal-body p {
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        .privacy-modal-body ul {
            margin-left: 2rem;
            color: var(--text-gray);
        }

        .privacy-modal-body ul li {
            margin-bottom: 0.5rem;
        }

        /* Footer Privacy Link */
        .footer-section a[href="#privacy-policy"] {
            cursor: pointer;
        }

        /* Responsive Cookie Consent */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                padding: 1.5rem;
                text-align: center;
            }

            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
            }

            .cookie-modal-content, .privacy-modal-content {
                margin: 1rem;
                max-height: calc(100vh - 2rem);
            }

            .cookie-category-header {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Product Showcase Section */
        .product-showcase {
            padding: 5rem 2rem;
            background: #ffffff;
            overflow: hidden;
        }

        .product-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .coming-soon-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            box-shadow: 0 8px 30px rgba(94, 91, 255, 0.4);
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }

        .product-mockup {
            position: relative;
            z-index: 1;
        }

        .phone-frame {
            width: 300px;
            height: 600px;
            background: #1a1a1a;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0E0433 0%, #1a0f4d 100%);
            border-radius: 32px;
            overflow: hidden;
        }

        .app-interface {
            padding: 2rem 1.5rem;
            color: white;
        }

        .status-bar {
            height: 20px;
            margin-bottom: 1rem;
        }

        .app-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .app-logo-mini {
            width: 30px;
            height: 30px;
        }

        .app-logo-mini svg {
            width: 100%;
            height: 100%;
        }

        .charging-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .status-circle {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00D1D1;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .energy-display {
            text-align: center;
            margin: 2rem 0;
        }

        .energy-number {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .energy-unit {
            font-size: 1rem;
            opacity: 0.7;
            margin-top: 0.5rem;
        }

        .charge-progress {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 2rem 0;
            overflow: hidden;
        }

        .progress-bar {
            width: 65%;
            height: 100%;
            background: linear-gradient(90deg, #5E5BFF 0%, #00D1D1 100%);
            border-radius: 10px;
            animation: progress 3s ease-in-out infinite;
        }

        @keyframes progress {
            0%, 100% { width: 65%; }
            50% { width: 68%; }
        }

        .quick-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
        }

        .stat-icon {
            margin-bottom: 0.5rem;
        }

        .stat-icon .material-symbols-rounded {
            font-size: 1.5rem;
        }

        .stat-value {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .product-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(94, 91, 255, 0.3) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            animation: glow 4s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
        }

        .product-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .product-tagline {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .product-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .product-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            color: var(--dark);
        }

        .highlight-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Email Notify Section */
        .notify-section {
            background: linear-gradient(135deg, rgba(94, 91, 255, 0.05) 0%, rgba(0, 209, 209, 0.05) 100%);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(94, 91, 255, 0.1);
        }

        .notify-section h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .notify-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .notify-form {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .email-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid rgba(94, 91, 255, 0.2);
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s;
            background: white;
        }

        .email-input:focus {
            border-color: #5E5BFF;
            box-shadow: 0 0 0 3px rgba(94, 91, 255, 0.1);
        }

        .notify-button {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .notify-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(94, 91, 255, 0.3);
        }

        .notify-privacy {
            font-size: 0.85rem;
            color: var(--gray);
            text-align: center;
        }

        /* Download App Section */
        .download-app {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .download-app .section-header h2,
        .download-app .section-header p {
            color: var(--text-dark);
        }

        .download-app .section-tag {
            background: rgba(94, 91, 255, 0.1);
            color: var(--primary);
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .app-box {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid rgba(94, 91, 255, 0.1);
        }

        .app-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(94, 91, 255, 0.15);
        }

        .app-box-icon {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .app-box-icon .material-symbols-rounded {
            font-size: 48px;
        }

        .app-box h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .app-box p {
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .download-buttons-section {
            text-align: center;
            margin: 4rem 0 3rem 0;
            padding: 3rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .download-buttons-section h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .download-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .app-store-button {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--dark);
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
            border: 2px solid var(--dark);
            cursor: pointer;
        }

        .app-store-button:hover {
            background: #1a0f4d;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 4, 51, 0.3);
        }

        .app-store-button svg {
            width: 32px;
            height: 32px;
        }

        .store-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .store-label {
            font-size: 0.7rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .store-name {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .app-stats-section {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .app-stat {
            text-align: center;
        }

        .app-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .app-stat-label {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Coming Soon Toast */
        .coming-soon-toast {
            position: fixed;
            top: 100px;
            right: 20px;
            background: linear-gradient(135deg, #5E5BFF 0%, #00D1D1 100%);
            color: white;
            padding: 1.25rem 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(94, 91, 255, 0.4);
            z-index: 10001;
            display: none;
            animation: slideInRight 0.5s ease-out;
            font-weight: 600;
            height: auto;
            max-height: fit-content;
            bottom: auto;
        }

        .coming-soon-toast.show {
            display: block;
        }

        .coming-soon-toast.success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .coming-soon-toast.error {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        .coming-soon-toast.hide {
            animation: slideOutRight 0.5s ease-out;
        }

        /* Footer */
        .pricing {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            border: 3px solid #5E5BFF;
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #5E5BFF 0%, #3A86FF 50%, #00D1D1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .features-list li {
            padding: 0.75rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .features-list li::before {
            content: "✓";
            color: #5E5BFF;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: #0E0433;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #5E5BFF;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .login-button {
                padding: 0.65rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .product-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .phone-frame {
                width: 250px;
                height: 500px;
            }

            .energy-number {
                font-size: 3rem;
            }

            .product-info h2 {
                font-size: 2rem;
            }

            .product-highlights {
                grid-template-columns: 1fr;
            }

            .notify-form {
                flex-direction: column;
            }

            .notify-button {
                width: 100%;
            }

            .product-showcase-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .dongle {
                width: 160px;
                height: 240px;
            }

            .dongle-top {
                width: 64px;
                height: 64px;
            }

            .dongle-top .logo {
                width: 48px;
                height: 48px;
            }

            .dongle-features {
                grid-template-columns: 1fr;
            }

            .notify-form-dongle {
                flex-direction: column;
            }

            .notify-button-dongle {
                width: 100%;
            }

            .app-grid {
                grid-template-columns: 1fr;
            }

            .download-buttons {
                flex-direction: column;
                width: 100%;
            }

            .app-store-button {
                width: 100%;
                justify-content: center;
            }

            .coming-soon-toast {
                right: 10px;
                left: 10px;
                width: auto;
                height: auto;
                bottom: auto;
            }
        }

/* Additional styles for Laravel version */

/* Hero Download Buttons */
.hero-download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-download-buttons .app-store-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-download-buttons .app-store-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Language Switcher */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-toggle {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Active nav link */
.nav-links a.active {
    color: #00D1D1;
}

/* Footer legal info */
.footer-legal {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.footer-contact {
    color: var(--gray);
}

.footer-contact a {
    color: var(--primary-light);
}


/* Mobile responsive for hero buttons */
@media (max-width: 768px) {
    .hero-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-download-buttons .app-store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .nav-right {
        display: none;
    }
}
