/* --- HERO SECTION --- */
.hero-section {
    padding-top: 180px; /* Space for fixed header */
    padding-bottom: 120px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, var(--background-color) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.hero-tagline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtagline {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--secondary-text-color);
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}
