/* ============================================
   BDW Truckers Venture — Main Stylesheet
   Dark Fintech Theme
   ============================================ */

:root {
    --bg-deep: #080B12;
    --bg-primary: #0A0D14;
    --bg-card: #111827;
    --bg-elevated: #1A2332;
    --bg-input: #0F1724;
    --bg-hover: #1F2A37;
    --orange-500: #FF6B00;
    --orange-600: #E55A00;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --green-500: #10B981;
    --green-600: #059669;
    --green-glow: rgba(16, 185, 129, 0.15);
    --gold: #F59E0B;
    --gold-glow: rgba(245, 158, 11, 0.15);
    --cyan-400: #22d3ee;
    --blue-500: #3B82F6;
    --red-500: #ef4444;
    --amber-400: #fbbf24;
    --white: #FFFFFF;
    --text-slate: #94A3B8;
    --text-muted: #64748B;
    --border-subtle: #1E293B;
    --border-medium: #334155;
    --navy-900: #0A0D14;
    --navy-800: #111827;
    --navy-700: #1A2332;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --navbar-h: 64px;
    --max-w: 1200px;
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2rem);
    --space-xl: clamp(2rem, 4vw, 3rem);
    --space-2xl: clamp(3rem, 6vw, 5rem);
    --text-xs: clamp(0.75rem, 2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 2.5vw, 1rem);
    --text-base: clamp(1rem, 3vw, 1.125rem);
    --text-lg: clamp(1.125rem, 3.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 4vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 5vw, 2rem);
    --text-3xl: clamp(1.875rem, 6vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 7vw, 3.5rem);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-slate);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
}

img, svg, video, canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange-500);
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-600);
}

/* ---- ACCESSIBILITY ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--orange-500);
    color: var(--white);
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 3px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.3);
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

/* ---- SECTION TITLE ---- */
.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-500), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- NAVIGATION ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: var(--navbar-h);
    background: rgba(8, 11, 18, 0.92);
    backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.navbar-brand-title span {
    color: var(--orange-500);
}

.navbar-brand-sub {
    font-size: 0.625rem;
    color: var(--orange-500);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav-links a {
    color: var(--text-slate);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--orange-500);
}

/* ---- MEDIA DROPDOWN ---- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    min-width: 170px;
    z-index: 1001;
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text-slate);
    text-decoration: none;
    font-size: 0.875rem;
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-elevated);
    color: var(--white);
}

/* ---- MOBILE NAV ---- */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border-medium);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-deep);
    padding: var(--space-md);
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--border-subtle);
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-slate);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 500;
    border-radius: 8px;
    min-height: 44px;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    min-width: 44px;
    white-space: nowrap;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 0 20px var(--orange-glow);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 107, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--text-slate);
}

.btn-success {
    background: var(--green-500);
    color: var(--white);
    box-shadow: 0 0 20px var(--green-glow);
}

.btn-success:hover {
    background: var(--green-600);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-base);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-card);
    color: var(--text-slate);
    z-index: 10001;
    padding: var(--space-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
}

.cookie-banner p {
    font-size: var(--text-xs);
    max-width: 700px;
    margin: 0;
}

.cookie-banner p strong {
    color: var(--white);
}

.cookie-banner a {
    color: var(--orange-500);
    text-decoration: underline;
}

.cookie-banner .btn-group {
    display: flex;
    gap: var(--space-xs);
    flex-shrink: 0;
}

/* ---- HERO ---- */
.hero {
    min-height: 90vh;
    background: var(--bg-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--navbar-h);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 11, 18, 0.55);
    z-index: 1;
}

.hero-trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-glow);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--green-500);
    margin-bottom: var(--space-md);
}

.hero-trust-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.hero-content h1 .highlight {
    color: var(--orange-500);
}

.hero-content p {
    font-size: var(--text-lg);
    color: var(--text-slate);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.hero-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-slate);
}

.hero-trust-strip-item .icon {
    color: var(--green-500);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item h3 {
    font-size: var(--text-2xl);
    color: var(--orange-500);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ---- SECTIONS ---- */
.section {
    padding: var(--space-2xl) 0;
}

.section-dark {
    background: var(--bg-primary);
}

/* ---- CARDS ---- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border: 1px solid var(--border-subtle);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px var(--orange-glow);
    border-color: rgba(255, 107, 0, 0.3);
}

.card h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card p {
    font-size: var(--text-sm);
    color: var(--text-slate);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
}

.card-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--blue-500); }
.card-icon.orange { background: rgba(255, 107, 0, 0.12); color: var(--orange-500); }
.card-icon.green { background: rgba(16, 185, 129, 0.12); color: var(--green-500); }
.card-icon.cyan { background: rgba(34, 211, 238, 0.12); color: var(--cyan-400); }
.card-icon.gold { background: rgba(245, 158, 11, 0.12); color: var(--gold); }

/* ---- COMPARISON TABLE ---- */
.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--bg-elevated);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: left;
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-slate);
    font-size: 0.9375rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--green-500);
    font-weight: 600;
}

/* ---- MEMBERSHIP CARDS ---- */
.membership-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.membership-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 0 24px var(--orange-glow);
}

.membership-card-trucker {
    border-left: 4px solid var(--orange-500);
}

.membership-card-investor {
    border-left: 4px solid var(--green-500);
}

.membership-card ul {
    list-style: none;
    color: var(--text-slate);
    margin-bottom: var(--space-md);
}

.membership-card ul li {
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.membership-card ul li .check {
    color: var(--green-500);
    margin-right: 8px;
}

/* ---- TRUST SECTION ---- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition);
}

.trust-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.trust-card h5 {
    color: var(--white);
    margin-bottom: 4px;
}

.trust-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ---- BADGES ---- */
.badge-bdw {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-orange {
    background: var(--orange-glow);
    color: var(--orange-500);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.badge-green {
    background: var(--green-glow);
    color: var(--green-500);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ---- JOB CARDS ---- */
.job-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--green-500);
    transition: all var(--transition);
}

.job-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.job-card h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.job-card .route {
    font-size: var(--text-sm);
    color: var(--text-slate);
    margin-bottom: 0.5rem;
}

.job-card .salary {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--orange-500);
    margin-bottom: 0.5rem;
}

.job-badge {
    display: inline-block;
    background: var(--green-500);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-subtle);
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-slate);
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author strong {
    color: var(--white);
}

.testimonial-author small {
    color: var(--text-muted);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--bg-primary);
    color: var(--text-slate);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.site-footer h3 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--orange-500);
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    text-align: center;
    font-size: var(--text-xs);
}

/* ---- COMPLIANCE BAR ---- */
.compliance-bar {
    background: var(--bg-card);
    padding: var(--space-xs) 0;
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
}

.compliance-bar a {
    color: var(--orange-500);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .hero-image-container {
        width: 100%;
        clip-path: none;
        opacity: 0.2;
        z-index: 0;
    }
    .hero-content {
        z-index: 2;
        position: relative;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: 70vh; }
    .hero-content h1 { font-size: var(--text-2xl); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
    .cards-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-trust-strip { gap: 10px; }
    .comparison-table { overflow-x: auto; }
}

@media (min-width: 769px) {
    .mobile-nav { display: none !important; }
    .menu-toggle { display: none; }
    .nav-links { display: flex; }
}