/* ================================================================
   BENEFITS PAGE - Moringa Essentials
   ================================================================ */

/* ========== PAGE HEADER ========== */
.page-header {
    padding: calc(90px + var(--space-12)) 0 var(--space-12);
    background: linear-gradient(180deg, #27ae60 0%, #2ecc71 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: #e8f5e9;
}

.breadcrumb a {
    color: #f1c40f;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: var(--text-lg);
    color: #e8f5e9;
    margin: 0;
}

/* ========== INTRO SECTION ========== */
.intro-section {
    padding: var(--space-16) 0;
}

.intro-content {
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.intro-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.intro-text.secondary {
    color: var(--text-secondary);
    font-style: italic;
}

.intro-content .btn {
    margin-top: var(--space-6);
}

/* ========== BENEFIT CARDS SECTION ========== */
.benefits-cards-section {
    padding: var(--space-16) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.benefit-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.benefit-card .secondary-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-4);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.benefit-list li svg {
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--space-16) 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    min-height: 72px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-green);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.cta-card {
    background: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.cta-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .intro-content h2 {
        font-size: var(--text-2xl);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: var(--space-6);
    }
    
    .cta-card {
        padding: var(--space-8);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
