        /* Design System Variables */
        
         :root {
            /* Stream System Colors */
            --header-bg: #1a1a1a;
            --hero-gradient-start: #1a4d4d;
            --hero-gradient-end: #2d6666;
            --accent-red: #ff3366;
            --accent-teal: #2d6666;
            --text-white: #ffffff;
            --text-light: #e0e0e0;
            --text-dark: #333333;
            --success: #4caf50;
            --border: #dddddd;
            --white: #ffffff;
            --black: #000000;
            /* Layout */
            --container-max: 1400px;
            --border-radius: 12px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--text-light);
            min-height: 100vh;
        }
        /* Header Styles */
        
        .header {
            background: var(--header-bg);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-top {
            background: rgba(0, 0, 0, 0.2);
            padding: 8px 0;
            text-align: right;
            color: var(--text-light);
            font-size: 0.85em;
        }
        
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .customer-service {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .service-badge {
            background: var(--accent-red);
            color: var(--text-white);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75em;
            font-weight: 500;
        }
        
        .phone-number {
            font-weight: 500;
        }
        
        .header-nav {
            padding: 20px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.8em;
            font-weight: bold;
        }
        
        .logo-icon {
            width: 40px;
            height: 30px;
            background: var(--accent-teal);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        
        .logo-main {
            font-size: 1.2em;
            color: var(--text-white);
        }
        
        .logo-sub {
            font-size: 0.5em;
            color: var(--text-light);
            font-weight: normal;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }
        
        .nav-item a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-item.active a,
        .nav-item a:hover {
            color: var(--text-white);
        }
        
        .nav-item.active a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-teal);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5em;
            cursor: pointer;
        }
        /* Mobile Navigation */
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: var(--header-bg);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
            transition: right 0.3s ease;
            z-index: 1001;
            padding: 80px 0 20px;
        }
        
        .mobile-menu.open {
            right: 0;
        }
        
        .mobile-nav-item {
            display: block;
            padding: 15px 30px;
            color: var(--text-light);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }
        
        .mobile-nav-item:hover,
        .mobile-nav-item.active {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-white);
        }
        
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5em;
            cursor: pointer;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Main Content Spacing */
        
        .main-content {
            margin-top: 120px;
            /* Account for fixed header */
        }
        /* Hero Section */
        
        .hero {
            background: linear-gradient( 135deg, var(--hero-gradient-start), var(--hero-gradient-end));
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 0;
        }
        
        .hero-content {
            color: var(--text-white);
        }
        
        .hero-headline {
            font-size: 3.5em;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--text-white);
        }
        
        .hero-subheadline {
            font-size: 1.2em;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.5;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-btn {
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .hero-btn.outlined {
            background: transparent;
            border: 2px solid var(--text-white);
            color: var(--text-white);
        }
        
        .hero-btn.outlined:hover {
            background: var(--text-white);
            color: var(--accent-teal);
        }
        
        .hero-btn.filled {
            background: var(--accent-teal);
            border: 2px solid var(--accent-teal);
            color: var(--text-white);
        }
        
        .hero-btn.filled:hover {
            background: #246b6b;
            border-color: #246b6b;
        }
        
        .hero-visual {
            position: relative;
            text-align: center;
        }
        
        .tv-showcase {
            position: relative;
            display: inline-block;
        }
        
        .tv-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
        }
        
        .tv-placeholder {
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
        }
        
        .tv-screen {
            width: 95%;
            height: 95%;
            background: #000;
            border-radius: 1px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .google-tv-logo {
            color: #4285f4;
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .streaming-apps {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .app-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9em;
            font-weight: bold;
            color: white;
        }
        
        .netflix {
            background: #e50914;
        }
        
        .youtube {
            background: #ff0000;
        }
        
        .prime {
            background: #00a8e1;
        }
        
        .disney {
            background: #113cce;
        }
        
        .financing-badge {
            position: absolute;
            top: -15px;
            left: -15px;
            background: var(--accent-red);
            color: var(--text-white);
            padding: 15px 20px;
            border-radius: 12px;
            font-weight: bold;
            text-align: center;
            line-height: 1.2;
            box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
            transform: rotate(-5deg);
        }
        
        .badge-line {
            display: block;
        }
        
        .badge-main {
            font-size: 1.2em;
        }
        
        .badge-sub {
            font-size: 0.8em;
            opacity: 0.9;
        }
        /* Simulator Section - FORCED VISIBILITY */
        
        .simulator-section {
            padding: 80px 0 !important;
            background: #f5f5f5 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative !important;
            z-index: 1 !important;
            min-height: 400px !important;
        }
        
        #products-grid {
            display: grid !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .product-card {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 1.2em;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .bank-partnership {
            background: var(--accent-teal);
            color: var(--text-white);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            font-size: 0.9em;
            font-weight: 500;
            margin-top: 20px;
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .step {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 25px;
            background: var(--white);
            border: 2px solid #ddd;
            color: #666;
            font-weight: 500;
        }
        
        .step.active {
            background: var(--accent-teal);
            color: var(--white);
            border-color: var(--accent-teal);
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: currentColor;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 0.9em;
            font-weight: bold;
        }
        
        .step.active .step-number {
            background: var(--white);
            color: var(--accent-teal);
        }
        
        .products-grid {
            display: grid !important;
            grid-template-columns: repeat( auto-fit, minmax(280px, 1fr)) !important;
            gap: 20px !important;
            margin-bottom: 30px !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .product-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.selected {
            border-color: var(--accent-teal);
            background: #f0f8f8;
        }
        
        .tv-icon {
            width: 80px;
            height: 60px;
            background: var(--accent-teal);
            margin: 0 auto 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8em;
        }
        
        .product-name {
            font-size: 1.3em;
            font-weight: bold;
            color: var(--accent-teal);
            margin-bottom: 10px;
            text-align: center;
        }
        
        .product-specs {
            color: #666;
            font-size: 0.9em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .price-info {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .monthly-payment {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--success-color);
            margin-bottom: 5px;
        }
        
        .duration {
            color: #666;
            font-size: 0.9em;
        }
        
        .select-btn {
            width: 100%;
            padding: 12px;
            background: var(--accent-teal);
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .select-btn:hover {
            background: #246b6b;
        }
        
        .form-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.4em;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
            font-size: 0.95em;
        }
        
        .form-input {
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1em;
            transition: var(--transition);
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 3px rgba(45, 102, 102, 0.1);
        }
        
        .form-input.error {
            border-color: var(--accent-red);
        }
        
        .error-message {
            color: var(--accent-red);
            font-size: 0.85em;
            margin-top: 5px;
        }
        
        .duration-selector {
            margin-bottom: 20px;
        }
        
        .duration-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }
        
        .duration-btn {
            padding: 12px 16px;
            border: 2px solid #ddd;
            background: var(--white);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            text-align: center;
        }
        
        .duration-btn:hover {
            border-color: var(--accent-teal);
            background: #f0f8f8;
        }
        
        .duration-btn.active {
            background: var(--accent-teal);
            color: var(--white);
            border-color: var(--accent-teal);
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .result-card {
            background: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--box-shadow);
        }
        
        .result-label {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 10px;
        }
        
        .result-value {
            font-size: 1.4em;
            font-weight: bold;
            color: var(--accent-teal);
        }
        
        .eligibility-status {
            text-align: center;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            font-size: 1.3em;
            font-weight: bold;
        }
        
        .eligible {
            background: #d4edda;
            color: var(--success);
            border: 2px solid var(--success);
        }
        
        .not-eligible {
            background: #f8d7da;
            color: var(--accent-red);
            border: 2px solid var(--accent-red);
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 28px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--accent-teal);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: #246b6b;
        }
        
        .btn-secondary {
            background: #6c757d;
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background: #545b62;
        }
        
        .btn-success {
            background: var(--success);
            color: var(--white);
        }
        
        .btn-success:hover {
            background: #45a049;
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            text-align: center;
        }
        
        .contact-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .hidden {
            display: none !important;
        }
        /* Selected TV Card Styles */
        
        .selected-tv-card {
            background: linear-gradient( 135deg, var(--accent-teal), #246b6b);
            color: var(--white);
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
            box-shadow: var(--box-shadow);
        }
        
        .selected-tv-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .selected-tv-info {
            flex: 1;
        }
        
        .selected-tv-name {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--white);
        }
        
        .selected-tv-specs {
            font-size: 0.95em;
            opacity: 0.9;
            margin-bottom: 12px;
        }
        
        .selected-tv-price {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1em;
            font-weight: 600;
        }
        
        .change-tv-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9em;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }
        
        .change-tv-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .tv-icon-small {
            width: 50px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            margin-right: 15px;
        }
        
        .data-preserved-notice {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: var(--success);
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 0.85em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .data-preserved-notice.show {
            opacity: 1;
        }
        
        .view-transition {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .view-transition.fade-out {
            opacity: 0;
            transform: translateY(-10px);
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .header-top {
                padding: 5px 0;
            }
            .customer-service {
                gap: 10px;
            }
            .service-badge {
                font-size: 0.7em;
                padding: 3px 8px;
            }
            .phone-number {
                font-size: 0.8em;
            }
            .header-nav {
                padding: 15px 0;
            }
            .products-grid {
                grid-template-columns: 1fr;
            }
            .hero-btn {
                padding: 12px 24px;
                font-size: 0.95em;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .results-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            .duration-buttons {
                grid-template-columns: repeat(3, 1fr);
            }
            .action-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .btn {
                text-align: center;
            }
            /* Mobile-specific styles for TV selection card */
            .selected-tv-header {
                flex-direction: column;
                gap: 15px;
            }
            .selected-tv-name {
                font-size: 1.2em;
                display: flex;
                align-items: center;
            }
            .selected-tv-price {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
                font-size: 1em;
            }
            .change-tv-btn {
                width: 100%;
                justify-content: center;
                min-height: 44px;
                font-size: 1em;
            }
            .data-preserved-notice {
                font-size: 0.8em;
                text-align: center;
            }
            .step-indicator {
                flex-direction: column;
                gap: 10px;
            }
            .step {
                width: 100%;
                justify-content: center;
            }
        }