:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #7c3aed;
}

body.landing-page {
    background: #fff;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Features */
.feature-card {
    border: none;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* Pricing */
.pricing-card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-period {
    color: #64748b;
    font-size: 0.875rem;
}

/* Footer */
.landing-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0;
}

.landing-footer a {
    color: #94a3b8;
    text-decoration: none;
}

.landing-footer a:hover {
    color: #fff;
}

/* Navbar on landing */
.landing-nav {
    background: transparent !important;
    transition: background 0.3s;
}

.landing-nav.scrolled {
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
}
