﻿.features-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.features-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.features-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.8;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-section {
    padding: 4rem 0;
}

.features-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-section-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-color);
}

    .features-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }



.features-card-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-card-description {
    color: #4a5568;
    line-height: 1.8;
}

.features-highlight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.features-highlight-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-highlight-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features-highlight-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.features-cta-section {
    background: #f7fafc;
    padding: 4rem 2rem;
    text-align: center;
}

.features-cta-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .features-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2rem;
    }

    .features-section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
