:root {
    --bg: #05040f;
    --bg-panel: #0d0b24;
    --bg-panel-2: #120e30;
    --neon-cyan: #00e5ff;
    --neon-purple: #9d4edd;
    --neon-pink: #ff00e5;
    --neon-green: #39ff88;
    --neon-red: #ff3860;
    --gold: #e8c468;
    --text: #e8e6f5;
    --text-dim: #9d99c2;
    --border-glow: rgba(157, 78, 221, 0.3);
    --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* ---------- pozadí: hvězdy + mlhovina ---------- */
.stars {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(1px 1px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 80% 20%, #fff, transparent),
        radial-gradient(2px 2px at 40% 85%, #fff, transparent),
        radial-gradient(1px 1px at 90% 60%, #fff, transparent),
        radial-gradient(1px 1px at 10% 90%, #fff, transparent),
        radial-gradient(1px 1px at 33% 12%, #fff, transparent),
        radial-gradient(1px 1px at 75% 45%, #fff, transparent);
    background-repeat: repeat;
    background-size: 400px 400px;
    opacity: 0.55;
}

.nebula {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 800px 500px at 15% 0%, rgba(157, 78, 221, 0.25), transparent 60%),
        radial-gradient(ellipse 700px 500px at 85% 20%, rgba(0, 229, 255, 0.15), transparent 60%),
        radial-gradient(ellipse 900px 600px at 50% 100%, rgba(255, 0, 229, 0.12), transparent 60%);
}

/* ================= NAVIGACE ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(5, 4, 15, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
}
.nav-logo span { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--neon-cyan); }

.status-badge--nav { padding: 6px 14px; font-size: 0.75rem; margin: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ================= MARQUEE (prestiž ribbon) ================= */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(232, 196, 104, 0.12), rgba(157, 78, 221, 0.12), rgba(232, 196, 104, 0.12));
    border-bottom: 1px solid rgba(232, 196, 104, 0.35);
    padding: 8px 0;
}
.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 32s linear infinite;
}
.marquee-track span {
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-weight: 700;
    padding-right: 0;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ================= HERO ================= */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-inner { max-width: 800px; }

.eyebrow {
    color: var(--neon-purple);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin: 0;
    letter-spacing: 6px;
    line-height: 1;
    color: #fff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 30px var(--neon-cyan),
        0 0 60px rgba(0, 229, 255, 0.4);
    animation: flicker 6s infinite ease-in-out;
}

.logo-sub {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    letter-spacing: 10px;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 25px rgba(255, 0, 229, 0.5);
    margin-top: 10px;
    position: relative;
    padding-top: 18px;
}
.logo-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes flicker {
    0%, 92%, 100% { opacity: 1; }
    93% { opacity: 0.75; }
    94% { opacity: 1; }
    95% { opacity: 0.6; }
    96% { opacity: 1; }
}

.tagline {
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-top: 24px;
    font-size: 1.15rem;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.status-info {
    color: var(--text-dim);
    margin-top: 26px;
    font-size: 0.95rem;
}
.status-info strong { color: var(--neon-cyan); }

.tym-widget { margin-top: 20px; }
.tym-label {
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.tym-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.tym-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(57, 255, 136, 0.08);
    border: 1px solid rgba(57, 255, 136, 0.35);
    font-size: 0.85rem;
    color: var(--text);
}
.tym-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    flex-shrink: 0;
}
.tym-chip .pozice { color: var(--text-dim); font-size: 0.78rem; }

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 1.8rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================= STATUS BADGE (spolecne) ================= */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: 2px solid var(--text-dim);
    transition: all 0.4s ease;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
}

.status-badge.status-otevreno {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 136, 0.5), inset 0 0 15px rgba(57, 255, 136, 0.1);
}
.status-badge.status-otevreno .status-dot {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1.5s infinite;
}

.status-badge.status-zavreno {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 56, 96, 0.5), inset 0 0 15px rgba(255, 56, 96, 0.1);
}
.status-badge.status-zavreno .status-dot {
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ================= SEKCE - spolecne ================= */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}
.section-alt {
    max-width: none;
    background: linear-gradient(180deg, transparent, rgba(157, 78, 221, 0.06), transparent);
}
.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.section-kicker {
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-kicker--center { text-align: center; }

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    max-width: 600px;
    margin: -40px auto 50px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--text);
    line-height: 1.3;
}

/* ================= O NAS ================= */
.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-text p { color: var(--text-dim); line-height: 1.7; font-size: 1.05rem; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.stat {
    text-align: center;
    padding: 16px 8px;
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    background: rgba(157, 78, 221, 0.05);
}
.stat-num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}
.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-visual { display: flex; justify-content: center; }

.orb-scene {
    position: relative;
    width: 320px;
    height: 320px;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: float 8s ease-in-out infinite;
}
.orb-cyan {
    width: 140px; height: 140px;
    background: radial-gradient(circle at 35% 30%, #7ef9ff, var(--neon-cyan));
    top: 10%; left: 8%;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.6);
}
.orb-purple {
    width: 110px; height: 110px;
    background: radial-gradient(circle at 35% 30%, #cba6ff, var(--neon-purple));
    bottom: 8%; left: 30%;
    box-shadow: 0 0 60px rgba(157, 78, 221, 0.6);
    animation-delay: 1.5s;
}
.orb-pink {
    width: 90px; height: 90px;
    background: radial-gradient(circle at 35% 30%, #ffa6f4, var(--neon-pink));
    top: 25%; right: 5%;
    box-shadow: 0 0 60px rgba(255, 0, 229, 0.6);
    animation-delay: 3s;
}
.ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}
.ring::after {
    content: "";
    position: absolute;
    top: -1px; left: 50%;
    width: 8px; height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-cyan);
    transform: translateX(-50%);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================= SLUZBY ================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: linear-gradient(160deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 30px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}
.service-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}
.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0 0 10px;
}
.service-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ================= GALERIE ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65));
}
.gallery-item span { position: relative; z-index: 1; }
.gallery-item:hover { transform: scale(1.03); }

/* Ilustrační fotky (viz atribuce pod galerií). Gradient zůstává jako
   fallback barva, dokud/kdyby se obrázek nenačetl. */
.gallery-1 { background-color: #1c1050; background-image: url('../img/galerie/1.jpg'); }
.gallery-2 { background-color: #3a1060; background-image: url('../img/galerie/2.jpg'); }
.gallery-3 { background-color: #062e3a; background-image: url('../img/galerie/3.jpg'); }
.gallery-4 { background-color: #4a0a4a; background-image: url('../img/galerie/4.jpg'); }
.gallery-5 { background-color: #0a2a4a; background-image: url('../img/galerie/5.jpg'); }
.gallery-6 { background-color: #2a0a40; background-image: url('../img/galerie/6.jpg'); }

/* ================= REFERENCE (testimonials) ================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.testimonial {
    margin: 0;
    background: linear-gradient(160deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid rgba(232, 196, 104, 0.25);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
}
.testimonial .rating-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-shadow: 0 0 8px rgba(232, 196, 104, 0.5);
}
.testimonial p {
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 16px;
}
.testimonial cite {
    display: block;
    color: var(--gold);
    font-size: 0.82rem;
    font-style: normal;
    letter-spacing: 0.5px;
}

/* ================= REZERVACE + NÁBOR (přepínač 50/50) ================= */
.switch-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.toggle-switch {
    position: relative;
    display: flex;
    width: 340px;
    max-width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    padding: 5px;
}

.toggle-btn {
    position: relative;
    z-index: 1;
    flex: 1;
    background: none;
    border: none;
    padding: 13px 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    cursor: pointer;
    border-radius: 999px;
    transition: color 0.3s ease;
}
.toggle-btn.is-active { color: #05040f; }

.toggle-thumb {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    border-radius: 999px;
    background: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.4s ease, box-shadow 0.4s ease;
}
.toggle-switch[data-active="nabor"] .toggle-thumb {
    transform: translateX(100%);
    background: var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.55);
}

.discord-cta {
    text-align: center;
    margin-bottom: 40px;
}
.discord-cta p {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin: 0 0 14px;
}

.btn-discord {
    background: #5865f2;
    color: #fff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.btn-discord--nav {
    padding: 8px 16px;
    font-size: 0.72rem;
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.45);
}

/* ================= FORMULÁŘOVÉ PANELY ================= */
.form-stage {
    max-width: 600px;
    margin: 0 auto;
}

.panel {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--bg-panel), #150f38);
    border: 1px solid var(--border-glow);
    border-top: 3px solid var(--border-glow);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.08);
}

.panel--cyan { border-top-color: var(--neon-cyan); }
.panel--purple { border-top-color: var(--neon-purple); }

.panel-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.panel h2 { margin-top: 4px; }

.form-section-label {
    color: var(--neon-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0 -4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}
.panel--purple .form-section-label {
    color: var(--neon-purple);
    border-bottom-color: rgba(157, 78, 221, 0.2);
}
.form-section-label:first-child { margin-top: 0; }

.btn-purple {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

@keyframes panel-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.panel-enter { animation: panel-fade-in 0.4s ease; }

.panel-desc {
    color: var(--text-dim);
    margin-top: 6px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

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

.form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.form input,
.form textarea {
    background: #0a0821;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    resize: vertical;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* ================= TLACITKA ================= */
.btn {
    display: inline-block;
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
    background: var(--neon-cyan);
    color: #05040f;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}
.btn-secondary {
    background: var(--neon-pink);
    color: #05040f;
    box-shadow: 0 0 20px rgba(255, 0, 229, 0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-dim);
}
.btn-ghost:hover { border-color: var(--neon-purple); color: var(--neon-purple); }

.form-message {
    min-height: 1.2em;
    font-size: 0.9rem;
    margin: 0;
}
.form-message.success { color: var(--neon-green); }
.form-message.error { color: var(--neon-red); }

/* ================= FOOTER ================= */
footer {
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    padding: 50px 24px 24px;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 3px;
}
.footer-logo span { color: var(--neon-pink); }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; margin-top: 8px; max-width: 260px; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--neon-cyan); }

.footer-copy {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 40px;
}

.footer-fineprint {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.68rem;
    opacity: 0.5;
    margin-top: 8px;
}

/* ================= REVEAL ANIMACE ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================= RESPONZIVITA ================= */
@media (max-width: 900px) {
    .section-grid { grid-template-columns: 1fr; }
    .section-visual { order: -1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(5, 4, 15, 0.97);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 32px 32px;
        border-bottom: 1px solid var(--border-glow);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 20px; }
}
