:root {
            --space-dark: #03030c;
            --space-card: #08081a;
            --nebula-purple: #7c3aed;
            --nebula-pink: #ec4899;
            --neon-cyan: #06b6d4;
            --neon-green: #10b981;
            --apple-glass: rgba(255, 255, 255, 0.03);
            --apple-glass-border: rgba(255, 255, 255, 0.08);
            --text-light: #f5f5f7;
            --text-dim: #94a3b8;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--space-dark);
            color: var(--text-light);
            overflow-x: hidden;
            position: relative;
        }

        /* Decorative Nebulas */
        .nebula {
            position: absolute;
            border-radius: 50%;
            filter: blur(160px);
            pointer-events: none;
            opacity: 0.4;
            z-index: 0;
        }

        .nebula-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--nebula-purple), transparent 70%);
            top: -10%;
            right: -10%;
        }

        .nebula-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
            top: 40%;
            left: -10%;
        }

        .nebula-3 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--nebula-pink), transparent 70%);
            bottom: -10%;
            right: 10%;
        }

        /* Stars Background overlay */
        .stars-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(1px 1px at 15% 15%, #fff, transparent),
                radial-gradient(1.5px 1.5px at 45% 35%, rgba(255,255,255,0.7), transparent),
                radial-gradient(1px 1px at 75% 65%, #fff, transparent),
                radial-gradient(2px 2px at 85% 25%, var(--neon-cyan), transparent),
                radial-gradient(1.5px 1.5px at 25% 75%, var(--nebula-pink), transparent);
            background-size: 450px 450px;
            opacity: 0.25;
            z-index: 1;
            pointer-events: none;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(3, 3, 12, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--apple-glass-border);
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .logo span {
            background: linear-gradient(135deg, var(--neon-cyan), var(--nebula-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            transition: var(--transition);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255,255,255,0.3);
        }

        .btn-portal {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--nebula-purple) 100%);
            color: #03030c;
            padding: 0.6rem 1.4rem;
            border-radius: 99px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
            font-size: 0.85rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-portal:hover {
            opacity: 0.95;
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
        }

        /* Container helper */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Hero Section */
        header.hero {
            padding-top: 12rem;
            padding-bottom: 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 80vh;
        }

        .hero-text {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-text h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 40%, var(--text-dim) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text h1 span {
            background: linear-gradient(135deg, var(--neon-cyan), var(--nebula-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p.subtitle {
            font-size: 1.15rem;
            color: var(--text-dim);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 3rem;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, #0056b3 100%);
            color: #03030c;
            padding: 0.9rem 2rem;
            border-radius: 99px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
        }

        .btn-secondary {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            color: #fff;
            padding: 0.9rem 2rem;
            border-radius: 99px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255,255,255,0.25);
        }

        .btn-already-paid {
            border-color: rgba(6, 182, 212, 0.4) !important;
            color: var(--neon-cyan) !important;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
        }

        .btn-already-paid:hover {
            border-color: var(--neon-cyan) !important;
            background: rgba(6, 182, 212, 0.1) !important;
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.25) !important;
        }

        /* Glass status card on hero */
        .status-card {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .status-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 40%);
            pointer-events: none;
            border-radius: 24px;
        }

        .status-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 1rem;
        }

        .status-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background-color: var(--neon-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--neon-green);
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .status-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .status-item {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255,255,255,0.03);
            padding: 1rem;
            border-radius: 14px;
        }

        .status-label {
            font-size: 0.75rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .status-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
        }

        .status-val.success { color: var(--neon-green); }
        .status-val.cyan { color: var(--neon-cyan); }

        /* Section Layout */
        section {
            padding: 5rem 0;
            position: relative;
            z-index: 2;
        }

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

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, #fff 50%, var(--text-dim) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        /* Coverage Checker */
        .coverage-checker-box {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            max-width: 700px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .coverage-form {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 0.4rem;
            border-radius: 99px;
            transition: var(--transition);
        }

        .coverage-form:focus-within {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
        }

        .coverage-input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            padding: 0.8rem 1.5rem;
            font-family: inherit;
            font-size: 1rem;
        }

        .coverage-input::placeholder {
            color: var(--text-dim);
        }

        .btn-check {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, #0891b2 100%);
            color: #03030c;
            border: none;
            outline: none;
            padding: 0.8rem 1.8rem;
            border-radius: 99px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .btn-check:hover {
            opacity: 0.95;
            transform: scale(1.02);
        }

        .coverage-result {
            margin-top: 1.5rem;
            min-height: 40px;
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .coverage-result.show {
            opacity: 1;
        }

        .text-success { color: var(--neon-green); }
        .text-warning { color: var(--nebula-pink); }

        /* Interactive Bandwidth Calculator */
        .calc-wrapper {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 28px;
            padding: 3rem;
            max-width: 850px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }

        /* Heatmap Simulator */
        .heatmap-wrapper {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 28px;
            padding: 3rem;
            max-width: 850px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }

        .heatmap-controls-box {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .calc-controls {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .calc-slider-box {
            text-align: left;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .slider-header span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        .slider-count {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            color: var(--neon-cyan);
            font-weight: 800;
        }

        .slider-input {
            width: 100%;
            height: 6px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            transition: var(--transition);
        }

        .slider-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--nebula-purple));
            cursor: pointer;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
            transition: var(--transition);
        }

        .calc-checkbox-box {
            text-align: left;
        }

        .calc-checkbox-box h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dim);
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .calc-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--apple-glass-border);
            padding: 0.8rem 1rem;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            user-select: none;
            transition: var(--transition);
        }

        .calc-option:hover {
            border-color: rgba(6, 182, 212, 0.2);
            background: rgba(255,255,255,0.04);
        }

        .calc-option.active {
            border-color: var(--neon-cyan);
            background: rgba(6, 182, 212, 0.05);
            color: var(--neon-cyan);
        }

        .calc-option input {
            display: none;
        }

        .calc-result-box {
            border-left: 1px solid rgba(255,255,255,0.08);
            padding-left: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .calc-est-speed {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.2rem;
            background: linear-gradient(135deg, #fff 40%, var(--neon-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .calc-recommendation {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--nebula-pink);
            margin: 1.5rem 0;
            text-align: center;
            text-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
        }

        .btn-calc-apply {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--nebula-purple) 100%);
            color: #03030c;
            border: none;
            outline: none;
            padding: 0.8rem 1.6rem;
            border-radius: 99px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .btn-calc-apply:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        /* Package Selector & Pricing Toggle */
        .plan-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .toggle-btn {
            background: transparent;
            border: none;
            color: var(--text-dim);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            padding: 0.4rem 1rem;
        }

        .toggle-btn.active {
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.4);
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 56px;
            height: 30px;
        }

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

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--apple-glass-border);
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--nebula-purple));
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .plan-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.2rem;
            transition: var(--transition);
        }

        .plan-card {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .plan-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(6, 182, 212, 0.1);
        }

        .plan-card.popular {
            border-color: rgba(124, 58, 237, 0.4);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
            background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.07), transparent 60%), var(--apple-glass);
        }

        .plan-card.popular:hover {
            border-color: rgba(124, 58, 237, 0.6);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(124, 58, 237, 0.25);
        }

        .plan-badge {
            position: absolute;
            top: 1.2rem;
            right: 1.5rem;
            background: linear-gradient(135deg, var(--nebula-purple), var(--nebula-pink));
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 0.8rem;
            border-radius: 99px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .plan-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .plan-speed {
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
            margin-bottom: 1.5rem;
        }

        .speed-val {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #b4c6ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .speed-unit {
            font-size: 1.1rem;
            color: var(--neon-cyan);
            font-weight: 700;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 1.5rem;
        }

        .price-currency {
            font-size: 1rem;
            color: var(--text-dim);
            font-weight: 600;
        }

        .price-val {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--text-dim);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            flex-grow: 1;
        }

        .plan-features li {
            font-size: 0.95rem;
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--neon-cyan);
            font-weight: 700;
        }

        .btn-order {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--apple-glass-border);
            color: #fff;
            padding: 0.8rem;
            border-radius: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            text-align: center;
            text-decoration: none;
        }

        .plan-card:hover .btn-order {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--nebula-purple) 100%);
            color: #03030c;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
        }

        /* Interactive Speed Test Section */
        .speedtest-container {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 28px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        /* Speedometer gauge svg styling */
        .gauge-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gauge-svg {
            width: 260px;
            height: 260px;
            transform: rotate(-90deg);
        }

        .gauge-bg {
            fill: none;
            stroke: rgba(255,255,255,0.04);
            stroke-width: 12;
            stroke-dasharray: 565; /* circumference = 2 * pi * 90 */
            stroke-dashoffset: 141; /* Arc path to make it 3/4 circle */
            stroke-linecap: round;
        }

        .gauge-progress {
            fill: none;
            stroke: url(#gaugeGrad);
            stroke-width: 14;
            stroke-dasharray: 565;
            stroke-dashoffset: 565; /* Starts empty */
            stroke-linecap: round;
            transition: stroke-dashoffset 0.1s ease-out;
        }

        .gauge-center {
            position: absolute;
            text-align: center;
        }

        .gauge-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #fff 40%, var(--neon-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        #download-val {
            color: #00e5ff !important;
            text-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
        }

        #upload-val {
            color: #ff5e36 !important;
            text-shadow: 0 0 8px rgba(255, 94, 54, 0.2);
        }

        .gauge-number.cyan {
            background: none !important;
            -webkit-background-clip: initial !important;
            -webkit-text-fill-color: initial !important;
            color: #00e5ff !important;
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
        }

        .gauge-number.orange {
            background: none !important;
            -webkit-background-clip: initial !important;
            -webkit-text-fill-color: initial !important;
            color: #ff5e36 !important;
            text-shadow: 0 0 15px rgba(255, 94, 54, 0.4);
        }

        .gauge-label {
            font-size: 0.8rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 0.25rem;
        }

        .speedtest-results {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .results-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .result-box {
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.04);
            padding: 1rem;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
        }

        .result-label {
            font-size: 0.75rem;
            color: var(--text-dim);
            text-transform: uppercase;
            margin-bottom: 0.3rem;
        }

        .result-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .result-unit {
            font-size: 0.85rem;
            color: var(--neon-cyan);
            font-weight: 600;
        }

        .btn-speedtest {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--nebula-purple) 100%);
            color: #03030c;
            border: none;
            outline: none;
            padding: 1rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
            margin-top: 1rem;
        }

        .btn-speedtest:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
        }



        /* Trydon Mobile App Promo */
        .app-promo-card {
            background: linear-gradient(135deg, rgba(8, 8, 26, 0.9) 0%, rgba(12, 12, 42, 0.9) 100%), var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 30px;
            padding: 4rem 3rem;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
        }

        /* CSS Phone Mockup */
        .phone-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .phone-mockup {
            width: 210px;
            height: 420px;
            background: #03030d;
            border: 8px solid #1e293b;
            border-radius: 36px;
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.6),
                0 0 35px rgba(6, 182, 212, 0.15);
            position: relative;
            overflow: hidden;
            padding: 0.8rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        /* Camera notch */
        .phone-notch {
            width: 80px;
            height: 15px;
            background: #1e293b;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            z-index: 10;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.65rem;
            color: var(--text-dim);
            margin-top: 0.3rem;
        }

        .phone-screen-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 0.8rem;
            text-align: left;
        }

        .phone-speed-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 4px solid var(--neon-cyan);
            margin: 0.8rem auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
        }

        .phone-speed-num {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
        }

        .phone-quickpay-btn {
            background: linear-gradient(135deg, var(--neon-cyan), var(--nebula-purple));
            color: #03030c;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.5rem;
            border-radius: 99px;
            text-align: center;
            margin-top: 0.8rem;
        }

        .app-promo-info {
            text-align: left;
        }

        .app-promo-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 50%, var(--text-dim) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .app-promo-info p {
            color: var(--text-dim);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .app-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }

        .app-features-list li {
            font-size: 0.95rem;
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .app-features-list li::before {
            content: '✦';
            color: var(--neon-cyan);
        }

        .app-badges {
            display: flex;
            gap: 1rem;
        }

        .app-badge-btn {
            background: #03030a;
            border: 1px solid var(--apple-glass-border);
            border-radius: 12px;
            padding: 0.6rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .app-badge-btn:hover {
            border-color: rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.03);
            transform: translateY(-2px);
        }

        .app-badge-btn.portal-badge {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
            border-color: rgba(6, 182, 212, 0.45);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
        }

        .app-badge-btn.portal-badge:hover {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
            border-color: rgba(6, 182, 212, 0.75);
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
            transform: translateY(-2px);
        }

        /* Quick Pay Card */
        .pay-card {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            max-width: 540px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-control {
            width: 100%;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
            padding: 0.9rem 1.2rem;
            border-radius: 14px;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
        }

        .payment-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .pay-method {
            border: 1px solid var(--apple-glass-border);
            background: rgba(255,255,255,0.02);
            padding: 1rem;
            border-radius: 14px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .pay-method.active {
            border-color: var(--neon-cyan);
            background: rgba(6, 182, 212, 0.06);
            color: var(--neon-cyan);
        }

        .btn-pay {
            width: 100%;
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--nebula-purple) 100%);
            color: #03030c;
            border: none;
            outline: none;
            padding: 1rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-pay:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
        }

        .pay-msg {
            margin-top: 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--neon-cyan);
            display: none;
        }

        /* FAQ Accordion */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--apple-glass);
            border: 1px solid var(--apple-glass-border);
            border-radius: 18px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            user-select: none;
            transition: var(--transition);
        }

        .faq-header:hover {
            background: rgba(255,255,255,0.02);
            color: var(--neon-cyan);
        }

        .faq-icon {
            font-size: 1.4rem;
            color: var(--text-dim);
            transition: var(--transition);
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
            background: rgba(0,0,0,0.15);
        }

        .faq-content {
            padding: 2rem;
            color: var(--text-dim);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .faq-item.active .faq-body {
            max-height: 1000px;
            transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--neon-cyan);
        }

        .faq-item.active {
            border-color: rgba(6, 182, 212, 0.2);
        }

        /* Footer */
        footer {
            background: #02020a;
            border-top: 1px solid var(--apple-glass-border);
            padding: 4rem 0 2rem;
            font-size: 0.9rem;
            color: var(--text-dim);
            text-align: center;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
            text-align: left;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-brand h3 span {
            color: var(--neon-cyan);
        }

        .footer-brand p {
            line-height: 1.6;
            max-width: 280px;
        }

        .footer-col h4 {
            color: #fff;
            font-weight: 600;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-col ul a {
            color: var(--text-dim);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--neon-cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* Media Queries */
        @media (max-width: 992px) {
            header.hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 8rem;
                gap: 3rem;
            }
            .hero-text h1 { font-size: 3rem; }
            .hero-text p.subtitle { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .plan-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .speedtest-container { grid-template-columns: 1fr; gap: 2rem; }
            .calc-wrapper { grid-template-columns: 1fr; gap: 2rem; }
            .heatmap-wrapper { grid-template-columns: 1fr; gap: 2rem; }
            .calc-result-box { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 2rem; }

            .app-promo-card { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
            .app-promo-info h3 { text-align: center; }
            .app-features-list { align-items: center; }
            .app-badges { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                width: 65%;
                height: 100vh;
                background: rgba(3, 3, 12, 0.96);
                backdrop-filter: blur(25px);
                -webkit-backdrop-filter: blur(25px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                border-left: 1px solid var(--apple-glass-border);
                box-shadow: -15px 0 35px rgba(0, 0, 0, 0.7);
                z-index: 100;
            }

            .nav-links.active {
                display: flex;
                animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            }

            @keyframes slideInRight {
                from { transform: translateX(100%); }
                to { transform: translateX(0); }
            }
        }

        @media (max-width: 480px) {
            nav { padding: 1rem; }
            .nav-links { width: 80%; }
            .hero-text h1 { font-size: 2.5rem; }
            .hero-actions { flex-direction: column; }
            .coverage-form { flex-direction: column; border-radius: 16px; padding: 0.6rem; gap: 0.6rem; }
            .btn-check { border-radius: 12px; }
            .checkbox-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }
    
        @keyframes pulse-cyan {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
        }
