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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.9; }
    100% { opacity: 1; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-background.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-left {
    color: white;
}

.logo {
    margin-bottom: 15px;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));

}

.hero h1 {
    font-size: 24rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit .icon {
    font-size: 1.5rem;
}

/* Header CTA */
.header-cta {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 10;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
}

.stars {
    font-size: 16px;
    margin-bottom: 2px;
    color: #FFD700;
}

.rating-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Form Container */
.form-container {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 420px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.form-badges {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

/* User Type Toggle */
.user-type {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
}

.user-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #64748b;
}

.user-btn.active {
    background: #10b981;
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    background: linear-gradient(135deg, #FF5722, #FF8F00);
}

.form-guarantees {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    flex-wrap: wrap;
}

.form-security {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: white;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.badge-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.badge-logo {
    text-align: center;
    transition: transform 0.3s ease;
}

.badge-logo:hover {
    transform: scale(1.05);
}

/* BBB Badge */
.bbb-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #003366;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
}

.bbb-icon {
    font-size: 2rem;
}

.bbb-text {
    font-size: 2rem;
    font-weight: 800;
}

.bbb-rating {
    background: #0066CC;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* NABCEP Badge */
.nabcep {
    background: #1e40af;
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
}

.nabcep-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nabcep-sub {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
}

/* NC Licensed Badge */
.nc-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #1e40af;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e40af;
}

.nc-text {
    font-size: 14px;
    font-weight: 700;
}

.nc-sub {
    font-size: 12px;
    font-weight: 600;
}

/* Google Badge */
.google {
    text-align: center;
}

.google-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-sub {
    font-size: 1.2rem;
    color: #666;
    margin: 5px 0;
}

.google-stars {
    font-size: 1.5rem;
    color: #FFD700;
}

/* Tesla Badge */
.tesla {
    background: #000;
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
}

.tesla-text {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.tesla-sub {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}

.tesla-cert {
    font-size: 0.9rem;
    color: #ccc;
}

/* Solar Power World Badge */
.sp-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e40af;
    text-align: center;
}

.sp-text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.sp-world {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.sp-top {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-cta {
        position: static;
        margin-bottom: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-banner {
        font-size: 12px;
        padding: 10px 0;
    }
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card.featured {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.testimonial-card.featured::before {
    content: "⭐ FEATURED";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #10b981;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.customer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.customer-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.savings {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Recent Activity */
.recent-activity {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.recent-activity h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.activity-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.activity-text {
    flex: 1;
    color: #374151;
    font-weight: 500;
}

.activity-time {
    color: #64748b;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-background.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works .section-header h2 {
    color: white;
}

.how-it-works .section-header p {
    color: #cbd5e1;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255,255,255,0.95);
    color: #1e293b;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-detail {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.step-arrow {
    font-size: 2rem;
    color: #10b981;
    font-weight: bold;
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-message {
    margin-bottom: 50px;
}

.urgency-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.urgency-message p {
    font-size: 1.2rem;
    color: #64748b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo p {
    color: #cbd5e1;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .urgency-message h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* Social Media Icons */
.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Update footer content layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

