/* FEATURES PAGE STYLING */

.features-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 150, 0.1);
    color: #00c896;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 48px 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0066ff;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Feature Categories */
.feature-category {
    padding: 100px 0;
}

.feature-category.alt {
    background: #f9fafb;
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.category-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.category-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Module Cards */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.module-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: #0066ff;
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
    transform: translateY(-4px);
}

.module-card.premium {
    border-color: #0066ff;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.module-card.premium::before {
    content: 'PREMIUM';
    display: inline-block;
    background: #0066ff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.module-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.module-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.module-status.active {
    background: rgba(0, 200, 150, 0.1);
    color: #00c896;
}

.module-status.blocked {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.module-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.module-features li {
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c896;
    font-weight: 700;
    font-size: 16px;
}

.module-features li strong {
    color: #111827;
    font-weight: 600;
}

.module-threat {
    padding: 16px;
    background: rgba(255, 59, 48, 0.05);
    border-left: 4px solid #ff3b30;
    border-radius: 8px;
    font-size: 13px;
    color: #991b1b;
    line-height: 1.6;
}

.module-threat strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: #7f1d1d;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 24px;
    }

    .hero-stats .stat-number {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}
