﻿body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

.hero-section {
    padding: 8rem 0 6rem;
    background: radial-gradient(circle at top right, #e0e7ff, transparent 50%), radial-gradient(circle at bottom left, #dbeafe, transparent 50%);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #1d4ed8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-glow {
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
    transition: all 0.2s ease-in-out;
}

    .btn-glow:hover {
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
        transform: translateY(-2px);
    }

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
        transform: translateY(-5px);
        border-color: #cbd5e1;
    }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: #e0e7ff;
    color: #4f46e5;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-header {
    background: #1e293b;
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-features {
    padding: 2rem;
    list-style: none;
    margin: 0;
}

    .pricing-features li {
        padding-bottom: 1rem;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #1e293b;
}

.nav-link {
    font-weight: 500;
    color: #475569;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: #0f172a;
    }

.footer {
    padding: 4rem 0;
    background: #0f172a;
    color: #94a3b8;
}

    .footer a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer a:hover {
            color: white;
        }
