﻿.hero {
    background: linear-gradient(135deg, var(--primary), #6d8eff);
    color: white;
    padding: 80px 0 70px;
}

    .hero h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1.1;
        margin: 0 0 20px;
    }

    .hero p {
        max-width: 760px;
        font-size: 1.1rem;
        margin: 0 0 30px;
        color: rgba(255, 255, 255, 0.92);
    }

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.section {
    padding: 10px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

    .section-header h2 {
        font-size: 2rem;
        margin: 0 0 12px;
    }

    .section-header p {
        max-width: 760px;
        margin: 0 auto;
        color: var(--muted);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 109, 246, 0.1);
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: bold;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.highlight {
    background: white;
}

.highlight-box {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

    .highlight-box p {
        margin: 0;
        font-size: 1.08rem;
        color: var(--muted);
    }

.cta {
    padding: 0 0 80px;
}

.cta-box {
    background: linear-gradient(135deg, #f04e6a, #ff7b57);
    color: white;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow);
}

    .cta-box h2 {
        margin: 0 0 12px;
        font-size: 2rem;
    }

    .cta-box p {
        margin: 0 0 24px;
        color: rgba(255, 255, 255, 0.92);
    }

.footer {
    padding: 30px 0 50px;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}
