/* Landing Page Styles */

.landing-container {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Content Area - Left Side */
.content-area {
    flex: 1;
    padding-right: 450px;
    overflow-y: auto;
    height: 100vh;
}

/* Login Panel - Right Side */
.login-panel-fixed {
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
}

.login-form-container {
    width: 100%;
    max-width: 360px;
}

/* Hero Section */
.hero-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hero-content {
    max-width: 800px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

/* Features Section */
.features-section {
    padding: 80px 60px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    border-color: #e0e7ff;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 60px;
    background: #f9fafb;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 25px rgba(99, 102, 241, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 60px;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 40px 60px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.footer-link {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4f46e5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .login-panel-fixed {
        width: 400px;
    }
    
    .content-area {
        padding-right: 400px;
    }
}

@media (max-width: 968px) {
    .landing-container {
        flex-direction: column;
    }
    
    .content-area {
        padding-right: 0;
        height: auto;
    }
    
    .login-panel-fixed {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 600px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section, .features-section, .how-it-works-section, .statistics-section {
        padding: 60px 30px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .login-form-container {
        padding: 20px;
    }
}