/* ============================================
   Landing Page Styles
   ============================================ */

.landing-container {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin-top: 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.access-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.access-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-icon.company {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.card-icon.user {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.action-btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.action-btn.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.action-btn.secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.action-btn.success {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.action-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.card-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
    font-style: italic;
}

.features-strip {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-align: center;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   Dark Mode Support
   ============================================ */

[data-bs-theme="dark"] .landing-container {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

[data-bs-theme="dark"] .hero-title {
    color: #f9fafb;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

[data-bs-theme="dark"] .access-card {
    background: #1f2937;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #374151;
}

[data-bs-theme="dark"] .access-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border-color: #4b5563;
}

[data-bs-theme="dark"] .card-icon {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .card-icon.company {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

[data-bs-theme="dark"] .card-icon.user {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

[data-bs-theme="dark"] .card-title {
    color: #f9fafb;
}

[data-bs-theme="dark"] .card-description {
    color: #d1d5db;
}

[data-bs-theme="dark"] .card-note {
    color: #9ca3af;
}

[data-bs-theme="dark"] .action-btn.primary {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

[data-bs-theme="dark"] .action-btn.primary:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

[data-bs-theme="dark"] .action-btn.secondary {
    background: #374151;
    color: #a78bfa;
    border: 2px solid #6d28d9;
}

[data-bs-theme="dark"] .action-btn.secondary:hover {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
}

[data-bs-theme="dark"] .action-btn.success {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

[data-bs-theme="dark"] .action-btn.success:hover {
    background: linear-gradient(135deg, #db2777, #be185d);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

[data-bs-theme="dark"] .features-strip {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .access-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .access-card {
        padding: 2rem;
    }
    
    .features-strip {
        margin-top: 1.5rem;
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
}
