/* ==========================================================================
   Landing Pages - Premium Design System
   Clean, high-contrast, luxury aesthetic
   ========================================================================== */

/* ==========================================================================
   1. Landing Hero - Clean & Premium
   ========================================================================== */
.landing-hero {
    padding: 12rem 0 6rem;
    background: #0F172A;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(6, 182, 212, 0.08), transparent);
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.landing-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.landing-hero .subhead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================================================
   2. Hero Badges - Clean Pills
   ========================================================================== */
.hero-badge,
.theme-badge,
.speed-badge,
.integration-badge,
.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.hero-badge i,
.theme-badge i,
.speed-badge i,
.integration-badge i,
.support-badge i {
    color: #F59E0B;
}

/* Accent color variants */
.speed-badge {
    border-color: rgba(16, 185, 129, 0.3);
}
.speed-badge i { color: #10B981; }

.theme-badge {
    border-color: rgba(244, 63, 94, 0.3);
}
.theme-badge i { color: #FB7185; }

/* ==========================================================================
   3. Results Strip - High Contrast
   ========================================================================== */
.results-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.results-strip .result-item {
    text-align: center;
}

.results-strip .result-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.results-strip .result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ==========================================================================
   4. Content Sections - Clean & Spacious
   ========================================================================== */
.content-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.content-section.alt {
    background: #FAFAFA;
}

.content-section .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.content-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.content-section .section-header p {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.7;
}

/* ==========================================================================
   5. Feature Cards - Premium & Clean
   ========================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-section.alt .feature-card {
    border-color: #E2E8F0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

/* Icon color variants */
.feature-icon.green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.feature-icon.rose {
    background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
}

.feature-icon.cyan {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0F172A;
}

.feature-card p {
    color: #64748B;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #4F46E5;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: gap 0.2s ease;
}

.feature-card a:hover {
    gap: 0.625rem;
}

.feature-card a i {
    font-size: 0.75rem;
}

/* ==========================================================================
   6. Results Showcase Cards
   ========================================================================== */
.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.result-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-before {
    font-size: 1.375rem;
    color: #94A3B8;
    text-decoration: line-through;
    font-weight: 500;
}

.result-arrow {
    color: #10B981;
    font-size: 0.875rem;
}

.result-after {
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
}

.result-card .result-label {
    color: #64748B;
    font-size: 0.875rem;
}

/* ==========================================================================
   7. Comparison Section
   ========================================================================== */
.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .comparison-section {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background: #FFFFFF;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.comparison-header {
    padding: 1.5rem;
    text-align: center;
}

.comparison-header.template {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-header.custom {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #FFFFFF;
}

.comparison-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.comparison-body {
    padding: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F1F5F9;
    color: #475569;
    font-size: 0.9375rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i.fa-check {
    color: #10B981;
}

.comparison-list li i.fa-times {
    color: #EF4444;
}

/* ==========================================================================
   8. Audit/Offer Box
   ========================================================================== */
.audit-offer {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #FFFFFF;
    padding: 3rem;
    border-radius: 1.25rem;
    text-align: center;
    margin-top: 4rem;
}

.audit-offer h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.audit-offer p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.audit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.audit-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.audit-features span i {
    margin-right: 0.375rem;
}

.audit-offer .btn {
    background: #FFFFFF;
    color: #4F46E5;
    font-weight: 600;
}

.audit-offer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   9. FAQ Section
   ========================================================================== */
.faq-section {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0F172A;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #F8FAFC;
}

.faq-question i {
    color: #94A3B8;
    font-size: 0.75rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #64748B;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* ==========================================================================
   10. CTA Section - Premium Dark
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: #0F172A;
    color: #FFFFFF;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 3rem;
}

.internal-links a {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.internal-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   11. Remove Loading Screen - No animation clutter
   ========================================================================== */
.loader-wrapper {
    display: none !important;
}

/* ==========================================================================
   12. Responsive Refinements
   ========================================================================== */
@media (max-width: 768px) {
    .landing-hero {
        padding: 9rem 0 4rem;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .landing-hero .subhead {
        font-size: 1.1rem;
    }

    .results-strip {
        gap: 2rem;
        padding: 1.5rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .content-section .section-header {
        margin-bottom: 3rem;
    }

    .content-section .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .audit-offer {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   13. Hero Results (from index.html) - Fixed Contrast
   ========================================================================== */
.hero-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-results .result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-results .result-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-results .result-number i {
    font-size: 0.75rem;
    color: #10B981;
}

.hero-results .result-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero-results .result-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .hero-results {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem;
    }

    .hero-results .result-divider {
        display: none;
    }

    .hero-results .result-item {
        flex: 1 1 40%;
        min-width: 120px;
    }
}
