/* Module Page Styles */
:root {
    --primary-green: #10b981;
    --dark-green: #059669;
    --light-green: #d1fae5;
    --primary-blue: #3b82f6;
    --dark-blue: #2563eb;
    --light-blue: #dbeafe;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

.module-hero {
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.module-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.module-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.module-badge.operational {
    background: var(--light-green);
    color: var(--dark-green);
}

.module-badge.coming-soon {
    background: #fef3c7;
    color: #92400e;
}

.module-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.module-hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.module-hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.module-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-notice {
    background: #fffbeb;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
    padding: 2rem 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.notice-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.notice-text p {
    color: var(--gray-700);
    line-height: 1.6;
}

.notice-cta {
    background: #f59e0b;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.notice-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.module-features {
    padding: 80px 2rem;
    background: white;
}

.module-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.module-cta {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
}

.module-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.module-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.module-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .module-hero h1 {
        font-size: 2.5rem;
    }
    
    .module-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
