/**
 * Features Section Styles
 * Matches Figma design exactly
 */

.features-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.features-section-title {
    font-size: 36px;
    font-weight: 700;
    font-family: Poppins, sans-serif;
    color: #1F2E44;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column: Features */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1F2E44;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    font-family: Poppins, sans-serif;
    color: #1F2E44;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.feature-description {
    font-size: 15px;
    font-family: Poppins, sans-serif;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Right Column: Statistics */
.statistics-column {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding-top: 20px;
}

.statistic-item {
    text-align: left;
}

.statistic-value {
    font-size: 56px;
    font-weight: 700;
    font-family: Poppins, sans-serif;
    color: #1F2E44;
    line-height: 1;
    margin-bottom: 8px;
}

.statistic-label {
    font-size: 14px;
    font-family: Poppins, sans-serif;
    color: #666666;
    line-height: 1.4;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .features-section {
        padding: 60px 0;
    }

    .features-section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .features-grid {
        gap: 60px;
    }

    .features-column {
        gap: 35px;
    }

    .statistics-column {
        gap: 40px;
    }

    .statistic-value {
        font-size: 48px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .features-section {
        padding: 50px 0;
    }

    .features-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-column {
        gap: 30px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-icon-wrapper i {
        font-size: 24px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    .statistics-column {
        gap: 35px;
        padding-top: 0;
    }

    .statistic-value {
        font-size: 42px;
    }

    .statistic-label {
        font-size: 13px;
    }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    .features-section {
        padding: 15px 0;
    }

    .features-section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .features-grid {
        gap: 40px;
    }

    .features-column {
        gap: 25px;
    }

    .statistics-column {
        gap: 15px;
    }

    .statistic-value {
        font-size: 36px;
    }
}
