/* Onboarding-specific styles */
.onboarding-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.onboarding-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-identity {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 500;
}

.pricing-highlight {
    background: rgba(255,255,255,0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-desc {
    color: #64748b;
    line-height: 1.6;
}

.calculator-showcase {
    background: #f8fafc;
    padding: 4rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.calc-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid;
    transition: transform 0.2s ease;
}

.calc-preview:hover {
    transform: translateY(-4px);
}

.calc-preview.financial { border-left-color: #10b981; }
.calc-preview.lifestyle { border-left-color: #ec4899; }
.calc-preview.utility { border-left-color: #f59e0b; }
.calc-preview.regional { border-left-color: #8b5cf6; }

.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.final-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .brand-identity {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .hero-title { 
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .hero-subtitle { 
        font-size: 1rem;
        line-height: 1.4;
    }
    .pricing-highlight {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    .cta-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    .features-grid { 
        grid-template-columns: 1fr; 
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-title {
        font-size: 1.1rem;
    }
    .showcase-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .calc-preview {
        padding: 1rem;
    }
    .testimonial-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-identity {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .pricing-highlight {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    .cta-primary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    .feature-icon {
        font-size: 2.5rem;
    }
    .feature-title {
        font-size: 1rem;
    }
    .feature-desc {
        font-size: 0.9rem;
    }
}