/* landing.css - Modern glassmorphism, same variables as style.css */
:root {
    --primary: #0a2b4e;
    --primary-dark: #041c30;
    --primary-light: #1e4a76;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-700: #374151;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition-smooth: 300ms cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--gray-50) 0%, #eef2ff 100%);
    color: #1e293b;
    line-height: 1.5;
}

/* Navbar */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn-login {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-login:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--gray-700);
}
.cta-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.hero-mock {
    margin-top: 2rem;
    width: 100%;
    max-width: 320px;
}
.mock-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Features Grid */
.features {
    padding: 4rem 1rem;
    background: white;
}
.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 1.5rem;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-6px);
    background: white;
    box-shadow: var(--shadow-lg);
}

/* Benefits */
.benefits {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}
.benefit {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    display: inline-block;
    padding: 0.5rem 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--gray-100);
    padding: 3rem 1rem;
    text-align: center;
    font-style: italic;
}
.testimonial {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    background: white;
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Footer */
.landing-footer {
    text-align: center;
    padding: 2rem;
    background: var(--primary-dark);
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 5rem;
    }
    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-card {
        width: 260px;
    }
}
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    padding: 3rem 1rem;
    color: white;
}
.cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}