/* SECTION 3: THE BENEFITS (DARK THEME) */
.benefits-section {
    position: relative;
    padding: 140px 0;
    /* Blend of Primary and Deep Text */
    background-color: #1A1635; 
    color: #FFFFFF;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header .section-head {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

/* Accent Spark for "ON DEMAND" */
.text-spark {
    color: var(--accent); /* #A095EE */
    text-shadow: 0 0 15px rgba(160, 149, 238, 0.3); /* Subtle glow */
}

.benefits-header .sub-headline {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    color: #94A3B8; /* Muted slate for sub-headline */
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 4px;
    border-bottom: 4px solid var(--accent); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.benefit-icon {
    display: block;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
}

.benefits-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-spark {
    display: inline-block;
    padding: 18px 35px;
    background-color: var(--accent); /* #A095EE */
    color: #FFFFFF;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(160, 149, 238, 0.2);
}

.btn-spark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(160, 149, 238, 0.4);
    background-color: #8E82E6; /* Slightly darker shift */
}