*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
:root {
    --font-heading: 'Alexandria', sans-serif;
    --font-body: 'Noto Kufi Arabic', sans-serif;
    --font-latin: 'Space Grotesk', sans-serif;
    --font-display: var(--font-heading);
    --font-ui: var(--font-body);
    --font-caption: var(--font-body);
}

::selection { background: var(--l-accent); color: #fff; }
html { direction: rtl; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--l-bg);
    color: var(--l-text);
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
input:focus, button:focus, a:focus { outline: none !important; box-shadow: none !important; }

.main-wrapper {
    position: relative;
    z-index: 5;
    scroll-behavior: smooth;
}

.snap-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-indicator {
    position: fixed; right: 2rem; top: 50%; transform: translateY(-50%);
    z-index: 100; display: flex; flex-direction: column; gap: 20px;
}
.section-indicator button {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(0,0,0,0.2); border: 1.5px solid rgba(0,0,0,0.35);
    opacity: 1; transition: all 0.4s ease;
    cursor: pointer; position: relative; padding: 0;
}
.section-indicator button::after {
    content: ''; position: absolute; inset: -10px; border-radius: 50%;
}
.section-indicator button.active {
    width: 6px; height: 24px; border-radius: 4px;
    background: var(--l-accent); border-color: var(--l-accent);
}
.section-indicator.on-dark button {
    background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5);
}
.section-indicator.on-dark button.active {
    background: var(--l-accent); border-color: var(--l-accent);
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

h1, h2, h3, .heading-font { font-family: var(--font-heading); font-weight: 700; color: inherit; }

#splash {
    position: fixed; inset: 0; background: var(--l-text); z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.splash-text {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 3.5rem);
    color: var(--l-accent); opacity: 0; z-index: 10;
}
.loading-container {
    width: 200px; height: 2px; background: color-mix(in srgb, var(--l-border) 20%, transparent);
    margin-top: 2rem; position: relative; overflow: hidden; opacity: 0;
}
.loading-bar {
    width: 0%; height: 100%; background: var(--l-accent);
}

.submit-btn {
    display: inline-flex; justify-content: center; align-items: center; text-decoration: none;
    font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700;
    color: var(--l-accent); border: 2px solid var(--l-accent);
    padding: 1rem 3rem; cursor: pointer; position: relative; overflow: hidden; 
    transition: all 0.4s ease; border-radius: 2px; background: transparent;
}
.submit-btn.solid {
    background: var(--l-accent); color: var(--l-surface);
}
.submit-btn:hover { background: var(--l-accent); color: var(--l-surface); box-shadow: 6px 6px 0px rgba(255,255,255,0.3); transform: translate(-2px, -2px); }
.submit-btn.solid:hover { background: var(--l-bg); border-color: var(--l-bg); color: var(--l-text); box-shadow: 6px 6px 0px var(--l-accent); }
#sec-1 .submit-btn:hover, #sec-2 .submit-btn:hover, #sec-pub .submit-btn:hover {
    box-shadow: 6px 6px 0px var(--l-text);
}
#sec-1 .submit-btn.solid:hover, #sec-2 .submit-btn.solid:hover, #sec-pub .submit-btn.solid:hover {
    background: var(--l-text); border-color: var(--l-text); color: var(--l-surface); box-shadow: 6px 6px 0px var(--l-accent);
}
.submit-btn span { position: relative; z-index: 1; }

header {
    position: fixed; top: 1.5rem; left: 50%; right: auto;
    transform: translateX(-50%) translateY(-20px);
    width: 90%; max-width: 1000px;
    padding: 0.6rem 1.2rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; opacity: 0;
    
    /* Pill Styling Initial State */
    background-color: transparent; 
    color: var(--l-bg) !important;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s, backdrop-filter 0.4s, color 0.4s;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    color: var(--l-text) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.05);
}
.brand {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
    text-decoration: none; letter-spacing: 0.02em; color: inherit;
}
.header-actions .submit-btn {
    border-color: currentColor; color: inherit; padding: 0.5rem 1.5rem; border-width: 1.5px;
    border-radius: 100px;
    font-size: 0.9rem;
}
.header-actions .submit-btn:hover {
    background: var(--l-accent) !important;
    color: #fff !important;
    border-color: var(--l-accent) !important;
    box-shadow: 4px 4px 0px rgba(255,255,255,0.4) !important;
}
.header-dark-mode { color: var(--l-text); }
.header-dark-mode .header-actions .submit-btn:hover { background: var(--l-accent); color: #fff; }

.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 clamp(2rem, 5vw, 7rem); text-align: center; 
    background: var(--l-text); color: var(--l-bg);
    border-bottom: 2px solid var(--l-accent);
}
.hero-inner {
    position: relative; z-index: 2; width: 100%; max-width: 900px; padding: 5rem 0;
}
.hero-tag {
    font-family: var(--font-latin); font-size: clamp(0.75rem, 2vw, 0.82rem); letter-spacing: 0.25em; font-weight: 500;
    color: var(--l-accent); text-transform: uppercase; margin-bottom: 2rem; display: block;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.2; margin-bottom: 2rem; color: var(--l-bg); letter-spacing: -0.01em;
}
.hero-title span { color: var(--l-accent); font-style: normal; }
.hero-accent-line { width: 0px; height: 3px; background: var(--l-accent); margin: 0 auto 2.5rem auto; }
.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem); color: #C9C3BA; line-height: 1.8;
    max-width: 650px; margin: 0 auto 3.5rem auto; font-weight: 500;
}

.section-divider {
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px; z-index: 10; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
}
.section-divider-ornament {
    position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: var(--divider-gem, var(--l-accent));
    z-index: 12; flex-shrink: 0; border-radius: 1px;
}
.section-divider::before,
.section-divider::after {
    content: ''; position: absolute; bottom: 0px; height: 2px;
    width: calc(50% - 20px);
    background: var(--divider-color, var(--l-accent));
}
.section-divider::before { right: 0; background: linear-gradient(to left, var(--divider-color, var(--l-accent)), transparent); }
.section-divider::after { left: 0; background: linear-gradient(to right, var(--divider-color, var(--l-accent)), transparent); }

#sec-0 .section-divider { --divider-color: var(--l-accent); --divider-gem: var(--l-accent); }
#sec-1 .section-divider { --divider-color: var(--l-text); --divider-gem: var(--l-text); }
#sec-2 .section-divider { --divider-color: var(--l-text); --divider-gem: var(--l-accent); }
#sec-3 .section-divider { --divider-color: var(--l-accent); --divider-gem: var(--l-accent); }
#sec-pub .section-divider { --divider-color: var(--l-text); --divider-gem: var(--l-text); }

#sec-1 { background: var(--l-bg); color: var(--l-text); border-bottom: none; }
.feature-section {
    min-height: 100vh; display: flex; align-items: center; padding: 7rem clamp(1.5rem, 5vw, 7rem);
}
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(3rem, 8vw, 8vw); width: 100%; align-items: center;
}
.feat-num {
    font-family: var(--font-latin); font-size: clamp(1.8rem, 4vw, 2.5rem); color: #FFF; background: var(--l-accent);
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 4px;
    font-weight: 700; margin-bottom: 1.5rem; line-height: 1; 
    box-shadow: 4px 4px 0px var(--l-text);
}
.feature-tag {
    font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600;
    color: var(--l-text); margin-bottom: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.feature-tag::before { content: ''; width: 30px; height: 2px; background: var(--l-accent); }
.feature-title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.3; font-weight: 700; letter-spacing: -0.01em; }
.feature-desc { font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: var(--l-text-muted); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 500; }

.feature-visual { position: relative; height: clamp(40vh, 60vh, 600px); display: flex; align-items: center; justify-content: center; }
.book-pedestal { position: absolute; bottom: 15%; width: 70%; height: 4px; background: var(--l-text); }
.book-stack {
    position: relative; width: 100%; max-width: clamp(260px, 30vw, 320px); height: clamp(280px, 45vh, 450px);
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.b-book {
    position: absolute; width: clamp(130px, 20vw, 180px); height: clamp(195px, 30vw, 270px);
    background: #fff; border-radius: 3px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}
.b-book img { width: 100%; height: 100%; object-fit: cover; }

.b-cover-1 { transform: translate(-30%, 5%) rotate(-5deg); z-index: 1; }
.b-cover-2 { transform: translate(30%, 2%) rotate(5deg); z-index: 2; }
.b-cover-3 { transform: translate(0, -2%) rotate(0); z-index: 3; box-shadow: 0 25px 50px rgba(0,0,0,0.18); border-bottom: 3px solid var(--l-accent); }

.book-stack:hover .b-cover-1 { transform: translate(-45%, 10%) rotate(-10deg); }
.book-stack:hover .b-cover-2 { transform: translate(45%, 5%) rotate(10deg); }
.book-stack:hover .b-cover-3 { transform: translate(0, -5%) rotate(0); box-shadow: 12px 12px 0px var(--l-accent); }

#sec-2 { background: var(--l-surface); color: var(--l-text); border-bottom: none; }
.feature-section.reversed .feature-grid { direction: ltr; }
.feature-section.reversed .feature-grid > * { direction: rtl; }

.glass-badges {
    position: relative; width: 100%; max-width: 450px; height: auto;
    display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.5rem); justify-content: center; align-items: center;
    padding: 1rem 0;
}
.g-badge {
    background: var(--l-bg); border: 2px solid var(--l-text);
    box-shadow: 5px 5px 0px var(--l-accent); padding: clamp(1.2rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem); border-radius: 2px;
    font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: var(--l-text); font-weight: 600;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    width: 100%; transition: all 0.4s ease;
}
@media (min-width: 901px) {
    .glass-badges { height: 450px; padding: 0; }
    .g-badge { box-shadow: 8px 8px 0px var(--l-accent); width: 90%; }
    .g-badge-1 { transform: translateX(20px); }
    .g-badge-2 { transform: translateX(-30px); width: 85%; }
    .g-badge-3 { transform: translateX(10px); width: 95%; }
    .glass-badges:hover .g-badge-1 { transform: translateX(30px) translate(-4px, -4px); box-shadow: 12px 12px 0px var(--l-accent); }
    .glass-badges:hover .g-badge-2 { transform: translateX(-40px) translate(-4px, -4px); box-shadow: 12px 12px 0px var(--l-text); }
    .glass-badges:hover .g-badge-3 { transform: translateX(20px) translate(-4px, -4px); box-shadow: 12px 12px 0px var(--l-accent); }
}
.g-badge strong { font-family: var(--font-latin); font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--l-text); font-weight: 700;}
.g-badge:hover { transform: translate(-2px, -2px) !important; box-shadow: 7px 7px 0px var(--l-text) !important; }

#sec-3 {
    background: var(--l-text); color: var(--l-bg);
    border-bottom: none;
}
.authors-section {
    padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 7rem); min-height: 100vh; display: flex; flex-direction: column;
}
.authors-header {
    display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(2rem, 5vw, 4rem); flex-wrap: wrap; gap: 2rem;
}
.authors-count-badge {
    font-family: var(--font-latin); font-size: 0.95rem; color: var(--l-bg); font-weight: bold;
    background: var(--l-accent); padding: 0.4rem 1.2rem; display: inline-block; margin-top: 1rem; border-radius: 2px;
}
.authors-header .feature-tag { color: var(--l-bg); }

.author-search-wrap { position: relative; width: 100%; max-width: 350px; }
.author-search-wrap input {
    width: 100%; background: transparent; border: none; border-bottom: 3px solid var(--l-accent);
    padding: 1rem 1rem 1rem 2.5rem; font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; color: var(--l-bg);
    outline: none; transition: border-color 0.4s; direction: rtl; border-radius: 0;
}
.author-search-wrap input:focus { border-bottom-color: var(--l-bg); }
.author-search-wrap .search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--l-accent); width: 20px; height: 20px; }

.authors-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 20vw, 240px), 1fr)); gap: clamp(1rem, 3vw, 2rem);
}
.author-card {
    background: var(--l-bg); padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2vw, 2rem); text-align: center; color: var(--l-text);
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); border-radius: 2px;
    position: relative; overflow: hidden;
}
.author-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--l-accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.author-card.hidden { display: none; }
@media (min-width: 901px) {
    .author-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
        box-shadow: 0 20px 40px rgba(17,24,39,0.12), 0 8px 16px rgba(17,24,39,0.08);
        border-color: color-mix(in srgb, var(--l-text) 15%, transparent);
    }
}
.author-card:hover::after { transform: scaleX(1); transform-origin: left; }
.author-card:hover .author-card-username { color: var(--l-accent); }

.author-avatar, .author-avatar-placeholder {
    width: clamp(70px, 10vw, 90px); height: clamp(70px, 10vw, 90px); border-radius: 50%; object-fit: cover;
    border: 3px solid var(--l-text); background: var(--l-surface); padding: 4px;
}
.author-avatar-placeholder {
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
    font-size: 2.5rem; color: var(--l-accent); padding: 0; border-color: var(--l-accent);
}
.author-card-name { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: bold; line-height: 1.2; }
.author-card-username { font-family: var(--font-latin); font-size: 0.9rem; color: var(--l-text-muted); font-weight: bold;}

#sec-pub { background: var(--l-bg); color: var(--l-text); border-bottom: none; }
#sec-pub .feature-tag { color: var(--l-text); }
#sec-pub .feature-tag::before { background: var(--l-accent); }
.pub-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(280px, 30vw, 320px), 1fr)); gap: 2rem;
}
.pub-card {
    display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.5rem); padding: clamp(1.2rem, 2vw, 1.5rem); border: 2px solid var(--l-text);
    background: var(--l-surface); border-radius: 2px; transition: all 0.4s;
}
.pub-card.hidden { display: none; }
.pub-card:hover { border-color: var(--l-accent); box-shadow: 10px 10px 0px var(--l-accent); transform: translate(-4px, -4px); }
.pub-avatar, .pub-avatar-placeholder {
    width: clamp(55px, 8vw, 75px); height: clamp(55px, 8vw, 75px); border-radius: 2px; object-fit: cover; background: var(--l-bg); border: 2px solid var(--l-text);
}
.pub-avatar-placeholder {
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
    font-size: 2rem; color: var(--l-text);
}
.pub-info { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.pub-name { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }
.pub-tag {
    font-size: 0.75rem; font-family: var(--font-body); font-weight: 700; background: var(--l-accent);
    color: var(--l-surface); padding: 0.3rem 0.6rem; border-radius: 2px;
}
#sec-pub .author-search-wrap input { color: var(--l-text); border-bottom-color: var(--l-text); }
#sec-pub .author-search-wrap input:focus { border-bottom-color: var(--l-accent); }
#sec-pub .author-search-wrap .search-icon { color: var(--l-text); }

#sec-4 {
    background: var(--l-accent); color: var(--l-surface); border-top: none;
}
.cta-section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 7rem); display: flex; align-items: center; justify-content: center; min-height: 100vh; position: relative;}

.form-wrap {
    width: 100%; max-width: 550px; background: var(--l-surface); padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3.5rem);
    border: clamp(2px, 0.5vw, 4px) solid var(--l-text); position: relative; z-index: 2; color: var(--l-text);
    box-shadow: clamp(4px, 2vw, 15px) clamp(4px, 2vw, 15px) 0px var(--l-text);
}

.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.5rem; text-align: center; color: var(--l-text); letter-spacing: -0.01em;}
.form-subtitle { text-align: center; color: var(--l-text-muted); margin-bottom: 3.5rem; font-size: 1rem; font-weight: 500; line-height: 1.6;}

.field { position: relative; margin-bottom: 3rem; }
.field input {
    width: 100%; background: transparent; border: none; border-bottom: 3px solid var(--l-border);
    padding: 1rem 0; color: var(--l-text); font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
    outline: none; transition: all 0.4s ease; border-radius: 0; -webkit-appearance: none;
}
.field input:focus { border-bottom-color: var(--l-accent); }
.field label {
    position: absolute; top: 1rem; right: 0; color: var(--l-text-muted); font-size: 1rem; pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: right top; font-weight: bold;
}
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label {
    transform: translateY(-2.2rem) scale(0.85); color: var(--l-accent);
}

.account-type-group { display: flex; gap: clamp(0.6rem, 2vw, 1rem); margin-bottom: 3.5rem; }
.type-option { flex: 1; position: relative; }
.type-option input { display: none; }
.type-option label {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px solid var(--l-border); padding: 1.2rem; cursor: pointer; transition: all 0.3s;
    color: var(--l-text-muted); font-size: 1.05rem; font-weight: bold; border-radius: 2px;
}
.type-option input:checked + label {
    border-color: var(--l-accent); color: var(--l-surface); background: var(--l-accent);
}
.error-message { color: #DC2626; font-size: 0.9rem; font-weight: bold; margin-top: 0.8rem; display: block; }

#statusBox { overflow: hidden; max-height: 0; opacity: 0; margin-bottom: 0; }
#statusBox .status-inner {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; border-right: 4px solid #DC2626;
    background: #FEF2F2; text-align: right; border-radius: 2px;
}
#statusBox.success .status-inner { border-right-color: #059669; background: #ECFDF5; }
#statusBox .status-text { color: #DC2626; font-size: 1rem; font-weight: bold; line-height: 1.7; }
#statusBox.success .status-text { color: #059669; }
.w-100 { width: 100%; display: block; outline:none; }

@media (max-width: 900px) {
    .hero { min-height: 100svh; justify-content: center; }
    .hero-inner { padding: 0; }
    .hero-subtitle { line-height: 1.8; }
    .feature-visual { order: -1; margin-bottom: 1rem; }
    .section-indicator { display: none; }
    .authors-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
    .author-search-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
}
@media (max-width: 480px) {
    .hero-accent-line { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   Responsive Navigation
═══════════════════════════════════════════════════════════════ */
.desktop-nav {
    display: none;
}
@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        font-family: var(--font-ui);
        font-size: 0.85rem;
        font-weight: 600;
    }
    .desktop-nav .nav-link {
        color: inherit;
        transition: opacity 0.3s, transform 0.3s;
        position: relative;
    }
    .desktop-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--l-accent);
        transition: width 0.3s;
    }
    .desktop-nav .nav-link:hover {
        opacity: 0.8;
    }
    .desktop-nav .nav-link:hover::after {
        width: 100%;
    }
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 991px) {
    header { 
        padding: 0.5rem 1rem !important; 
        border-radius: 100px !important;
        width: 92%;
    }
    .header-actions .submit-btn { display: none !important; }
    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        color: inherit;
        cursor: pointer;
        padding: 0.5rem;
    }
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}
.mobile-nav-links a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav-links a:hover {
    color: var(--l-accent);
}

.cta-final-btn {
    background: var(--l-bg) !important;
    color: var(--l-text) !important;
    border-color: var(--l-bg) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}
.cta-final-btn:hover {
    background: var(--l-accent) !important;
    color: #fff !important;
    border-color: var(--l-accent) !important;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--l-accent) 40%, transparent) !important;
    transform: translateY(-2px) !important;
}
