/* Features Page Specific Styles */

/* Page Header */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--light);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif !important;
}

.page-header h6 {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.feature-section {
    padding: 5rem 2rem;
}

.feature-section:nth-child(odd) {
    background: var(--surface);
}

.feature-section:nth-child(even) {
    background: var(--surface-alt);
}

.section-intro {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 6px solid #168785;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.before-sunday-section .section-intro {
    border-left-color: #168785;
}

.section-intro h2 {
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: "Satoshi", sans-serif;
}

.section-intro p {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #168785;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: "Satoshi", sans-serif;
}

.section-label svg {
    width: 18px;
    height: 18px;
}

.section-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(22, 135, 133, 0.1);
    border-radius: 12px;
    border-left: 4px solid #168785;
}

.before-sunday-section .section-summary {
    background: rgba(22, 135, 133, 0.1);
    border-left-color: #168785;
}

.section-summary strong {
    font-size: 2rem;
    color: #168785;
    font-family: "Chillax", sans-serif;
}

.before-sunday-section .section-summary strong {
    color: #168785;
}

.section-summary span {
    color: var(--dark);
    font-weight: 500;
    font-family: "Satoshi", sans-serif;
    font-size: 1.4rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.07);
}

.feature-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-icon.teal {
    background: linear-gradient(135deg, #055C5A 0%, #168785 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #055C5A 0%, #168785 100%);
}

.feature-card h3 {
    font-family: "Satoshi", sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature-card .quantity {
    font-size: 1rem;
    color: #168785;
    font-weight: 600;
    font-family: "Satoshi", sans-serif;
}

.before-sunday-section .feature-card .quantity {
    color: #168785;
}

.feature-card p {
    font-size: 1.3rem;
    color: var(--secondary);
    line-height: 1.6;
    font-family: "Satoshi", sans-serif;
}

/* Differentiation Banner */
.differentiation-banner {
    padding: 4rem 2rem;
    background: transparent;
}

.differentiation-banner-card {
    border-radius: 30px;
    background: linear-gradient(337deg, #055C5A -19.32%, #168785 104.47%);
    padding: 45px 20px 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.differentiation-banner h2 {
    font-size: 4.75rem;
    margin-bottom: 1rem;
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    color: #fff;
}

.differentiation-banner p {
    font-size: 2rem;
    opacity: 0.95;
    max-width: 90%;
    margin: 0 auto 0;
    line-height: 1.7;
    font-family: "Satoshi", sans-serif;
    color: #D7D7D7;
}

.diff-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Hero form styling in differentiation banner - match splash.ejs styling */
.differentiation-banner-card .hero-form .font-tomatoes {
    color: #1E1E1E;
    margin-top: 1rem;
    text-align: center;
    font-family: "Tomatoes", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 1rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
        font-family: 'Inter', sans-serif !important;
    }

    .page-header h6 {
        font-size: 1rem;
    }

    .feature-section {
        padding: 3rem 1rem;
    }

    .section-intro {
        padding: 1.5rem;
    }

    .section-intro h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .section-summary {
        flex-direction: column;
        text-align: center;
    }

    .differentiation-banner {
        padding: 3rem 1rem;
    }

    .differentiation-banner h2 {
        font-size: 1.5rem;
    }

    .differentiation-banner p {
        font-size: 1rem;
    }
}

