/* ===== Landing Page Styles ===== */

.hero {
    background: linear-gradient(50deg, #5d4fc4 0%, #e25be6 52%, #f51d5e 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.primary-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.primary-btn:hover {
    background-color: #e84c50;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: rgba(255,255,255,0.15);
    color: white;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.2s ease;
}

.secondary-btn:hover {
    background-color: rgba(255,255,255,0.25);
}

/* Features Section */

.features {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 70px 20px;
    flex-wrap: wrap;
    background: var(--background-color);
}

.feature-card {
    background: var(--card-background);
    padding: 30px;
    max-width: 280px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px var(--shadow-color);
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Call To Action */

.cta {
    background: var(--secondary-color);
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}