:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F0FDFA;
    --bg-tertiary: #CCFBF1;
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: rgba(13, 148, 136, 0.1);
    --success: #10B981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #F59E0B;
    --danger: #EF4444;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

#network-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 100%);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mono { font-family: var(--font-mono); }

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover { background: var(--primary-light); }

.btn-lg   { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img { height: 48px; width: auto; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.language-switcher { display: flex; gap: 8px; align-items: center; }

.lang-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.hero { padding-top: 140px; padding-bottom: 100px; position: relative; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800; color: var(--text-primary); }
.hero-content > p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

.hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.hero-feature { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-secondary); }
.hero-feature i { color: var(--success); font-size: 1.25rem; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-card { background: white; border-radius: 16px; padding: 32px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); }

.score-display { text-align: center; margin-bottom: 24px; }
.score-circle {
    width: 120px; height: 120px; border-radius: 50%;
    background: conic-gradient(var(--primary) 0deg 280deg, var(--border) 280deg 360deg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; position: relative;
}
.score-circle::before { content: ''; position: absolute; width: 100px; height: 100px; background: white; border-radius: 50%; }
.score-value { position: relative; z-index: 1; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.score-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

.status-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.status-item:last-child { border-bottom: none; }
.status-label { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-secondary); }
.status-badge { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.status-badge.success  { background: var(--success-light); color: var(--success); }
.status-badge.warning  { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.status-badge.critical { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 80px 0; }
.stat-item { text-align: center; background: white; padding: 32px 24px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

.section { padding: 100px 0; position: relative; }
.section-alt { background: white; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; color: var(--text-primary); }
.section-header p { font-size: 1.15rem; color: var(--text-secondary); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.card-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon i { font-size: 1.75rem; color: var(--primary); }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.card p { color: var(--text-secondary); line-height: 1.7; }

.pricing-section { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.pricing-card { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 40px 32px; box-shadow: var(--shadow-lg); text-align: center; position: relative; transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 0 40px rgba(13, 148, 136, 0.15); }
.pricing-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--success); color: white; padding: 8px 24px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-md); }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-header p { color: var(--text-secondary); margin-bottom: 24px; }
.price { font-size: 3rem; font-weight: 800; color: var(--text-primary); margin: 24px 0; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-features { list-style: none; text-align: left; margin: 32px 0; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: 0.95rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--success); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.pricing-info { text-align: center; margin-top: 48px; padding: 24px; background: white; border-radius: 12px; border: 1px solid var(--border); }
.pricing-info-title { color: var(--text-secondary); margin-bottom: 16px; }
.pricing-info-text  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compliance-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 28px; position: relative; overflow: hidden; }
.compliance-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--success)); }
.compliance-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.compliance-name { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); }
.compliance-rate { font-size: 0.85rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.badge-covered  { background: #dcfce7; color: #15803d; }
.badge-aligned  { background: #dbeafe; color: #1d4ed8; }
.badge-integrated { background: #ede9fe; color: #6d28d9; }
.badge-compliant  { background: #fef3c7; color: #92400e; }
.compliance-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.compliance-explanation { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; font-style: italic; }
.compliance-features { list-style: none; }
.compliance-features li { font-size: 0.85rem; color: var(--text-secondary); padding: 6px 0; padding-left: 20px; position: relative; }
.compliance-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { padding: 24px 32px; font-weight: 600; font-size: 1.05rem; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; border: none; width: 100%; text-align: left; }
.faq-question:hover { background: var(--bg-secondary); }
.faq-question i { transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 32px; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 32px 24px; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 900px; margin: 0 auto; }
.team-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-align: center; }
.team-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; }
.team-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.team-bio { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

footer { background: var(--bg-primary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand { font-weight: 700; font-size: 1.25rem; margin-bottom: 16px; color: var(--text-primary); }
.footer-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-weight: 700; margin-bottom: 20px; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }
.footer-address { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.footer-address a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-address a:hover { color: var(--primary); }

.chatbot-container { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.chatbot-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); transition: all 0.3s ease; }
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: var(--shadow-xl); }
.chatbot-window { position: absolute; bottom: 80px; right: 0; width: 400px; max-height: 600px; background: white; border-radius: 16px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); display: none; flex-direction: column; overflow: hidden; }
.chatbot-window.active { display: flex; }
.chatbot-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.chatbot-header h3 { font-size: 1.1rem; font-weight: 600; }
.chatbot-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.chatbot-close:hover { background: rgba(255, 255, 255, 0.2); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 20px; background: var(--bg-secondary); max-height: 400px; }
.chatbot-message { margin-bottom: 16px; display: flex; align-items: flex-start; gap: 12px; }
.chatbot-message.bot  { flex-direction: row; }
.chatbot-message.user { flex-direction: row-reverse; }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; font-size: 0.9rem; overflow: hidden; }
.chatbot-message.bot  .chatbot-avatar { background: white; border: 1px solid var(--border); padding: 4px; }
.chatbot-avatar img { width: 100%; height: 100%; object-fit: contain; }
.chatbot-message.user .chatbot-avatar { background: var(--success); }
.chatbot-bubble { max-width: 80%; padding: 12px 16px; border-radius: 12px; font-size: 0.95rem; line-height: 1.5; }
.chatbot-message.bot  .chatbot-bubble { background: white; border: 1px solid var(--border); color: var(--text-secondary); border-bottom-left-radius: 4px; }
.chatbot-message.user .chatbot-bubble { background: var(--primary); color: white; border-bottom-right-radius: 4px; }
.chatbot-input-container { padding: 16px 20px; background: white; border-top: 1px solid var(--border); display: flex; gap: 12px; }
.chatbot-input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.chatbot-input:focus { border-color: var(--primary); }
.chatbot-send { padding: 12px 20px; background: var(--primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; transition: background 0.2s; }
.chatbot-send:hover { background: var(--primary-dark); }
.chatbot-suggestions { padding: 12px 20px; background: var(--bg-secondary); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; }
.chatbot-suggestion { padding: 8px 14px; background: white; border: 1px solid var(--border); border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; }
.chatbot-suggestion:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Couleurs utilitaires */
.c-success { color: var(--success); }
.c-danger   { color: var(--danger); }
.c-warning  { color: var(--warning); }
.c-primary  { color: var(--primary); }

/* Section mission */
.mission-wrapper { margin: 80px auto 0; text-align: center; max-width: 800px; }
.mission-title { font-size: 1.75rem; margin-bottom: 24px; color: var(--text-primary); }
.mission-body  { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.mission-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.mission-item  { padding: 24px; }
.mission-icon  { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; }
.mission-item h4 { font-weight: 700; margin-bottom: 8px; }
.mission-item p  { font-size: 0.95rem; color: var(--text-secondary); }

/* Section contact */
#contact { background-color: #0f172a !important; color: white; }
#contact h2 { color: white; }
#contact .text-gradient { background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.contact-tag    { color: var(--bg-tertiary); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.contact-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; color: var(--text-muted); font-size: 0.9rem; }
.contact-detail strong { color: white; display: block; }
.contact-form-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-field  { display: flex; flex-direction: column; gap: 6px; }
.contact-field label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.contact-field input,
.contact-field select,
.contact-field textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 14px; color: white; font-size: 0.9rem; outline: none; transition: border-color .2s; font-family: var(--font-main); width: 100%; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--primary); }
.contact-field textarea  { resize: vertical; min-height: 100px; }
.contact-field select option { background: var(--text-primary); }
.btn-contact-submit { background: var(--primary); color: white; border: none; padding: 12px 24px; border-radius: 10px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .2s; width: 100%; font-family: var(--font-main); }
.btn-contact-submit:hover { background: var(--primary-dark); }

/* Classe utilitaire accessibilité - visible uniquement pour lecteurs d'écran */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip link accessibilité */
.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--primary-dark); outline-offset: 2px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeInUp 0.8s ease-out; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .animate { animation: none; opacity: 1; transform: none; }
    #network-bg { display: none; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content h1 { font-size: 2.75rem; }
    .grid-3, .pricing-grid, .compliance-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .chatbot-window { width: 350px; right: -20px; }
}

/* Overlay mobile — enfant direct de body pour éviter le containing block backdrop-filter */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    list-style: none;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
}
.mobile-nav-overlay a:hover { color: var(--primary); }
.mobile-nav-overlay .mobile-lang-switcher {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.mobile-nav-overlay .mobile-lang-switcher a {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-secondary);
}
.mobile-nav-overlay .mobile-lang-switcher a.active,
.mobile-nav-overlay .mobile-lang-switcher a:hover {
    background: var(--primary); color: white; border-color: var(--primary);
}
.mobile-close-btn {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: none; border: none;
    font-size: 2rem; cursor: pointer;
    color: var(--primary); line-height: 1;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; z-index: 200; }
    .nav-right .btn { display: none; }
    .nav-right .language-switcher { display: none; }
    .hero-content h1 { font-size: 2.25rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .chatbot-window { width: calc(100vw - 40px); right: 0; max-height: 80vh; }
    .mission-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (min-width: 769px) {
    .mobile-nav-overlay { display: none !important; }
}
