/* Hero Section */
.hero-section {
    padding: 8rem 0 8rem;
    text-align: center;
    color: var(--bs-light);
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary) 100%);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-heading-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--bs-secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bs-card-bg);
    padding: 2.5rem;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--bs-box-shadow-sm);
    text-align: center;
    border: 1px solid var(--bs-border-color);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bs-box-shadow);
    border-color: var(--bs-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary-bg-subtle);
    border-radius: var(--bs-border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--bs-primary);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: .5rem;
}

.stat-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bs-gray-900);
    color: var(--bs-light);
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bs-light);
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: .8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--bs-light);
}

/* Responsive tweaks */
@media(max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media(max-width:480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
