        :root {
            --primary: #0ea5e9;
            --primary-dark: #0284c7;
            --secondary: #f59e0b;
            --dark: #0f172a;
            --dark-soft: #1e293b;
            --gray: #64748b;
            --gray-light: #e2e8f0;
            --success: #10b981;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }
        
        /* === HEADER === */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-light);
            padding: 15px 0;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 900;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--primary);
        }
        
        .header-phone {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .header-phone:hover {
            color: var(--primary-dark);
        }
        
        /* === HERO === */
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            color: var(--white);
            padding: 100px 20px 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(14, 165, 233, 0.2);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            border: 1px solid rgba(14, 165, 233, 0.3);
        }
        
        h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            opacity: 0.95;
            font-weight: 500;
        }
        
        .hero-trust {
            font-size: 16px;
            opacity: 0.85;
            margin-bottom: 50px;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .trust-icon {
            font-size: 20px;
            color: var(--success);
        }
        
        .hero-cta {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
        }
        
        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 50px rgba(14, 165, 233, 0.4);
            background: var(--primary-dark);
        }
        
        /* === SOCIAL PROOF BAR === */
        .social-proof-bar {
            background: var(--white);
            border-top: 1px solid var(--gray-light);
            border-bottom: 1px solid var(--gray-light);
            padding: 30px 20px;
        }
        
        .social-proof-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* === PACKAGES === */
        .packages {
            padding: 100px 20px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }
        
        .packages-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
        
        .packages-header h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--dark);
            letter-spacing: -1px;
        }
        
        .packages-header p {
            font-size: 20px;
            color: var(--gray);
            font-weight: 500;
        }
        
        .packages-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .package {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }
        
        .package:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .package.popular {
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
        }
        
        .package.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .package-name {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray);
            margin-bottom: 10px;
        }
        
        .package-price {
            font-size: 48px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .package-financing {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .package-tagline {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .package-features li {
            padding: 12px 0;
            display: flex;
            align-items: start;
            gap: 10px;
            font-size: 15px;
            color: var(--dark);
        }
        
        .package-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--success);
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .package-charger-options {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        
        .package-charger-options h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }
        
        .charger-option {
            padding: 10px 0;
            font-size: 14px;
            color: var(--dark);
        }
        
        .charger-option strong {
            color: var(--primary);
        }
        
        .package-best-for {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
        }
        
        .package-best-for strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .btn {
            display: block;
            width: 100%;
            background: var(--dark);
            color: var(--white);
            padding: 16px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: var(--dark-soft);
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background: var(--primary);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
        }
        
        .package-note {
            margin-top: 20px;
            font-size: 12px;
            color: var(--gray);
            font-style: italic;
        }
        
        /* === GUARANTEE === */
        .guarantee {
            padding: 80px 20px;
            background: var(--dark);
            color: var(--white);
        }
        
        .guarantee-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .guarantee h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .guarantee-subtitle {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 60px;
        }
        
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .guarantee-item {
            text-align: center;
        }
        
        .guarantee-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .guarantee-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .guarantee-item p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        /* === TESTIMONIALS === */
        .testimonials {
            padding: 100px 20px;
            background: var(--white);
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials h2 {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 60px;
            color: var(--dark);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: #f8fafc;
            padding: 35px;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
        }
        
        .stars {
            color: var(--secondary);
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--dark);
        }
        
        .testimonial-location {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* === WHY US === */
        .why-us {
            padding: 100px 20px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }
        
        .why-us-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .why-us h2 {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 60px;
            color: var(--dark);
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .why-us-item {
            text-align: center;
        }
        
        .why-us-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .why-us-item h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .why-us-item p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* === HOW IT WORKS === */
        .how-it-works {
            padding: 100px 20px;
            background: var(--white);
        }
        
        .how-it-works-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .how-it-works h2 {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 60px;
            color: var(--dark);
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* === FAQ === */
        .faq {
            padding: 100px 20px;
            background: #f8fafc;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq h2 {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 60px;
            color: var(--dark);
        }
        
        .faq-item {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        
        .faq-question {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .faq-answer {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* === SITE ASSESSMENT CTA === */
        .site-assessment {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
        }
        
        .site-assessment-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .site-assessment h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 20px;
        }
        
        .site-assessment p {
            font-size: 18px;
            margin-bottom: 15px;
            opacity: 0.95;
        }
        
        .site-assessment ul {
            list-style: none;
            margin: 30px 0 40px;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .site-assessment li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .site-assessment li::before {
            content: '';
            display: none;
        }
        
        .site-assessment li i {
            color: var(--white);
            margin-right: 10px;
        }
        
        .btn-white {
            background: var(--white);
            color: var(--primary);
        }
        
        .btn-white:hover {
            background: var(--gray-light);
        }
        
        /* === FOOTER CTA === */
        .footer-cta {
            padding: 80px 20px;
            background: var(--dark);
            color: var(--white);
            text-align: center;
        }
        
        .footer-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-cta h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
        }
        
        .footer-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .footer-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .footer-cta .btn {
            display: inline-block;
            width: auto;
            min-width: 200px;
        }
        
        /* === FOOTER === */
        .footer {
            background: var(--dark-soft);
            color: var(--white);
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 15px;
        }
        
        .footer-tagline {
            font-size: 14px;
            opacity: 0.7;
            margin-bottom: 10px;
        }
        
        .footer-location {
            font-size: 14px;
            opacity: 0.7;
            margin-bottom: 20px;
        }
        
        .footer-legal {
            font-size: 12px;
            opacity: 0.5;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* === FINE PRINT === */
        .fine-print {
            background: #f8fafc;
            padding: 60px 20px;
        }
        
        .fine-print-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .fine-print h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .fine-print-item {
            margin-bottom: 30px;
        }
        
        .fine-print-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .fine-print-item p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .packages-header h2,
            .guarantee h2,
            .testimonials h2,
            .why-us h2,
            .how-it-works h2,
            .faq h2,
            .footer-cta h2 {
                font-size: 32px;
            }
            
            .packages-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-trust {
                flex-direction: column;
                gap: 15px;
            }
            
            .package {
                padding: 30px;
            }
            
            .footer-cta-buttons {
                flex-direction: column;
            }
            
            .footer-cta .btn {
                width: 100%;
            }
        }
