/* ================================================================
   index.css — home page styles
   ================================================================ */

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.hero .highlight {
    color: #7289da;
}

.hero p {
    font-size: 20px;
    color: #8e9297;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large {
    background-color: #7289da;
    color: white;
}

.btn-large:hover {
    background-color: #5b6eae;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #36393f;
    color: white;
}

.btn-secondary:hover {
    background-color: #4a4d52;
}

.features {
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #323232;
}

.feature-card i {
    font-size: 48px;
    color: #7289da;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #8e9297;
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #2a2a2a;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    color: #8e9297;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #7289da;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #8e9297;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .features h2,
    .cta-section h2 {
        font-size: 32px;
    }
}
