/**
 * ACL GESTION - Landing Page Styles
 * Design moderne, professionnel, responsive
 */

/* =========================================
   LANDING BUTTONS
   ========================================= */
.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.landing-btn-primary {
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.landing-btn-outline {
    background: transparent;
    color: #1E3A5F;
    border: 2px solid #E5E7EB;
}

.landing-btn-outline:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.landing-btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.landing-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.landing-btn-ghost {
    padding: 16px 28px;
    font-size: 16px;
    background: white;
    color: #374151;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
}

.landing-btn-ghost:hover {
    border-color: #2563EB;
    color: #2563EB;
    background: #EFF6FF;
}

.landing-btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.landing-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.landing-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =========================================
   NAVIGATION
   ========================================= */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.landing-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1F2937;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.landing-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.landing-nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.landing-nav-link {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.landing-nav-link:hover {
    color: #1E3A5F;
}

.landing-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s;
    border-radius: 1px;
}

.landing-nav-link:hover::after {
    width: 100%;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 20px;
    color: #374151;
    cursor: pointer;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
}

.landing-nav-toggle:active {
    background: #F3F4F6;
}

.mobile-login-btn { display: none; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #2563EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 28px;
}

.hero-badge i { color: #F59E0B; font-size: 12px; }

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1E3A5F;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
}

/* Hero Visual - App Mockup */
.hero-visual { position: relative; }

.hero-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-content {
    padding: 16px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    min-height: 280px;
}

.mockup-sidebar {
    background: #1E3A5F;
    border-radius: 12px;
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-menu-item {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.mockup-menu-item.active {
    background: rgba(255, 255, 255, 0.6);
}

.mockup-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-kpi {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

.mockup-kpi-value {
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
}

.mockup-kpi-label {
    font-size: 10px;
    color: #9CA3AF;
    font-weight: 500;
}

.mockup-chart {
    flex: 1;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 16px 12px 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, #2563EB, #60A5FA);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: height 0.5s ease;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: heroFloat 4s ease-in-out infinite;
    border: 1px solid #F3F4F6;
}

.hero-floating-card i {
    font-size: 20px;
    flex-shrink: 0;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
}

.hero-floating-card strong {
    font-size: 13px;
    color: #111827;
}

.hero-floating-card span {
    font-size: 11px;
    color: #9CA3AF;
}

.floating-card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-1 i { color: #10B981; }

.floating-card-2 {
    bottom: 25%;
    left: -40px;
    animation-delay: 1.3s;
}

.floating-card-2 i { color: #F59E0B; }

.floating-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2.6s;
}

.floating-card-3 i { color: #2563EB; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* =========================================
   TRUST SECTION
   ========================================= */
.trust-section {
    padding: 40px 32px;
    background: #F9FAFB;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}

.trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #9CA3AF;
}

.trust-item i { font-size: 20px; }

/* =========================================
   SECTION COMMON
   ========================================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.6;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: 100px 32px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    background: white;
}

.feature-card:hover {
    border-color: #C7D2FE;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-icon.blue { background: #EFF6FF; color: #2563EB; }
.feature-icon.green { background: #ECFDF5; color: #059669; }
.feature-icon.orange { background: #FFF7ED; color: #D97706; }
.feature-icon.purple { background: #F5F3FF; color: #7C3AED; }
.feature-icon.cyan { background: #ECFEFF; color: #0891B2; }
.feature-icon.red { background: #FEF2F2; color: #DC2626; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   MODULES SECTION
   ========================================= */
.modules-section {
    padding: 100px 32px;
    background: #F9FAFB;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.module-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: #C7D2FE;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
    transform: translateY(-2px);
}

.module-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #EFF6FF 0%, #E0E7FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 18px;
}

.module-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.module-info p {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    padding: 100px 32px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content .section-tag { margin-bottom: 16px; }

.benefits-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.benefits-content > p {
    color: #6B7280;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #ECFDF5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 14px;
}

.benefits-list li strong {
    display: block;
    font-size: 15px;
    color: #111827;
    margin-bottom: 2px;
}

.benefits-list li span {
    display: block;
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.5;
}

/* Benefits Visual */
.benefits-visual { position: relative; }

.benefits-image {
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
    border-radius: 24px;
    min-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.benefit-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 280px;
    animation: heroFloat 4s ease-in-out infinite;
}

.metric-1 { animation-delay: 0s; }
.metric-2 { animation-delay: 1s; }
.metric-3 { animation-delay: 2s; }

.metric-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.metric-1 .metric-icon { background: #FEF3C7; color: #D97706; }
.metric-2 .metric-icon { background: #ECFDF5; color: #059669; }
.metric-3 .metric-icon { background: #EFF6FF; color: #2563EB; }

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 100px 32px;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: white;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    font-size: 18px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: white;
    font-weight: 500;
}

.contact-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-trust-item i { color: #34D399; font-size: 14px; }

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    background: #F9FAFB;
    transition: all 0.2s;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-card .captcha-box {
    background: #EFF6FF;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #BFDBFE;
}

.contact-form-card .captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-card .captcha-question {
    font-size: 16px;
    font-weight: 700;
    color: #1E3A5F;
    white-space: nowrap;
}

.contact-form-card .captcha-row input {
    max-width: 80px;
    text-align: center;
}

.contact-form-card .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #6B7280;
    cursor: pointer;
    line-height: 1.5;
}

.contact-form-card .checkbox-label input {
    width: auto;
    margin-top: 3px;
}

/* =========================================
   FOOTER
   ========================================= */
.landing-footer {
    background: #0A0F1A;
    color: white;
    padding: 64px 32px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-link {
    color: white;
    margin-bottom: 16px;
}

.footer-logo-link .landing-logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #4B5563;
    font-size: 13px;
}

/* =========================================
   LOGIN MODAL
   ========================================= */
.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-overlay.hidden {
    display: none;
}

.login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.login-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: loginSlideIn 0.3s ease;
}

@keyframes loginSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #6B7280;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.login-close:hover {
    background: #E5E7EB;
    color: #374151;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.login-header p {
    color: #9CA3AF;
    font-size: 15px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
}

.login-footer a {
    color: #2563EB;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.login-footer a:hover { text-decoration: underline; }

/* =========================================
   NAV SCROLL EFFECT
   ========================================= */
.landing-wrapper {
    min-height: 100vh;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-description { max-width: none; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .landing-nav-menu,
    .landing-nav-actions {
        display: none;
    }

    .landing-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        gap: 4px;
        border-top: 1px solid #F3F4F6;
    }

    .landing-nav-menu.open .landing-nav-link {
        display: block;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 16px;
    }

    .landing-nav-menu.open .landing-nav-link:hover {
        background: #F9FAFB;
    }

    .landing-nav-menu.open .landing-nav-link::after { display: none; }

    .landing-nav-menu.open .mobile-login-btn {
        display: flex;
        justify-content: center;
        margin-top: 8px;
        width: 100%;
    }

    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .landing-btn { width: 100%; justify-content: center; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat { min-width: 80px; }
    .hero-stat-value { font-size: 22px; }

    .trust-logos { gap: 24px; }
    .trust-item { font-size: 13px; }

    .features-section,
    .modules-section,
    .benefits-section,
    .contact-section {
        padding: 64px 20px;
    }

    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 16px; }

    .features-grid { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }

    .feature-card { padding: 24px; }

    .benefits-content h2 { font-size: 28px; }

    .benefits-image { min-height: 320px; padding: 24px; }
    .benefit-metric { width: 240px; padding: 16px 20px; }
    .metric-value { font-size: 20px; }

    .contact-info h2 { font-size: 28px; }
    .contact-form-card { padding: 24px; }
    .contact-form-card .form-row { grid-template-columns: 1fr; }

    .contact-trust { gap: 16px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .login-overlay {
        padding: 16px;
        align-items: flex-start;
        padding-top: 48px;
    }

    .login-card {
        padding: 32px 24px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .login-logo {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .landing-nav-container { padding: 12px 16px; }
    .hero-section { padding: 90px 16px 48px; }
    .hero-title { font-size: 30px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .hero-stats { gap: 16px; }

    .features-section,
    .modules-section,
    .benefits-section,
    .contact-section {
        padding: 48px 16px;
    }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 24px; }

    .contact-form-card { padding: 20px; }
    .landing-footer { padding: 40px 16px 24px; }
}
