@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --dark: #111827;
    --dark-accent: #1f2937;
    --light: #f9fafb;
    --text-muted: #6b7280;
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Navbar */
.navbar-landing {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(13, 110, 253, 0.03), transparent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

.btn-hero {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.2);
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(13, 110, 253, 0.3);
}

/* Features */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Pricing */
.pricing-card {
    padding: 48px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

/* Resources/CMS */
.resource-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.resource-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.resource-img {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}