/* Features Page */

/* Hero */
.features-hero {
    background: linear-gradient(135deg, #9AB893 0%, #7A9A73 50%, #6B7D63 100%);
    padding: 2.5rem 0 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.features-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.features-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* Feature List Container */
.features-list {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Feature Rows */
.feature-row {
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row:nth-child(even) {
    background: var(--color-secondary);
}

.feature-row:nth-child(odd) {
    background: var(--color-white);
}

.feature-row-inner {
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

/* Icon */
.feature-row-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9AB893 0%, #7A9A73 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(122, 154, 115, 0.25);
}

.feature-row-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.8;
}

/* Text */
.feature-row-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
    color: var(--color-text);
}

.feature-row-text .feature-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-dark);
    background: rgba(139, 157, 131, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.feature-row-text p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin: 0;
}

/* Footnote */
.features-footnote {
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-align: center;
    margin: 1.5rem 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-hero {
        padding: 2.8rem 1.5rem 2.8rem;
    }

    .features-hero h1 {
        font-size: 1.8rem;
    }

    .features-hero p {
        font-size: 1.05rem;
    }

    .feature-row-inner {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .feature-row-icon {
        width: 72px;
        height: 72px;
    }

    .feature-row-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-row-text h2 {
        font-size: 1.5rem;
    }

    .feature-row-text .feature-badge {
        display: block;
        margin: 0.4rem auto 0;
        width: fit-content;
    }

    .feature-row-text p {
        font-size: 0.95rem;
    }

}
