:root {
    --primary: #FF8500;
    --primary-glow: rgba(255, 133, 0, 0.4);
    --primary-dim: rgba(255, 133, 0, 0.08);
    --secondary: #a0c836;
    --secondary-glow: rgba(160, 200, 54, 0.4);
    --bg-dark: #050505;
    --bg-section: #0a0a0a;
    --bg-card: rgba(18, 18, 18, 0.8);
    --text-light: #ffffff;
    --text-gray: #999;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --border-subtle: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Fonts ─────────────────────────────────────────── */
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 400;
  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'), url('fonts/montserrat-v31-latin-regular.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 500;
  src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'), url('fonts/montserrat-v31-latin-500.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 700;
  src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'), url('fonts/montserrat-v31-latin-700.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 900;
  src: url('fonts/montserrat-v31-latin-900.woff2') format('woff2'), url('fonts/montserrat-v31-latin-900.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Roboto'; font-style: normal; font-weight: 300;
  src: url('fonts/roboto-v50-latin-300.woff2') format('woff2'), url('fonts/roboto-v50-latin-300.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Roboto'; font-style: normal; font-weight: 400;
  src: url('fonts/roboto-v50-latin-regular.woff2') format('woff2'), url('fonts/roboto-v50-latin-regular.ttf') format('truetype'); }
@font-face { font-display: swap; font-family: 'Roboto'; font-style: normal; font-weight: 500;
  src: url('fonts/roboto-v50-latin-500.woff2') format('woff2'), url('fonts/roboto-v50-latin-500.ttf') format('truetype'); }

/* ── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
}

h1, h2, h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.highlight-sec {
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary-glow);
}

.lang-de { display: none; }

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Navigation ─────────────────────────────────────── */
nav {
    background: rgba(4, 4, 4, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

nav.scrolled {
    padding: 8px 0;
    background: rgba(2, 2, 2, 0.98);
    border-bottom-color: rgba(255, 133, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 133, 0, 0.25));
    transition: filter 0.3s;
}
.nav-logo-img:hover {
    filter: drop-shadow(0 0 16px rgba(255, 133, 0, 0.5));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}
.nav-links a:hover::after { width: 100%; }

.lang-switch {
    background: transparent;
    border: 1px solid rgba(160, 200, 54, 0.4);
    color: var(--secondary);
    padding: 6px 16px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-head);
    transition: 0.3s;
    border-radius: 3px;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-switch:hover {
    background: var(--secondary);
    color: #000;
    border-color: var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow);
}

/* ── Go Up Button ────────────────────────────────────── */
#goUpBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 2000;
    width: 48px;
    height: 48px;
    border: 1px solid var(--primary);
    outline: none;
    background: rgba(5,5,5,0.9);
    color: var(--primary);
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 20px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

#goUpBtn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

#goUpBtn.show { opacity: 1; visibility: visible; }

/* ── Hero ────────────────────────────────────────────── */
#home {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    opacity: 0.22;
}

/* Multi-layer dark overlay with bottom vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.75) 100%),
        linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 50%, rgba(0,0,0,0.6) 100%);
}

/* ── Road lines ── */
.road-lines {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    pointer-events: none;
}

.road-line {
    width: 60px;
    height: 4px;
    background: rgba(255, 133, 0, 0.35);
    margin: 0 16px;
    animation: dashMove 2s linear infinite;
    border-radius: 2px;
}

.road-line:nth-child(1) { animation-delay: 0s;    opacity: 0.2; }
.road-line:nth-child(2) { animation-delay: 0.4s;  opacity: 0.4; }
.road-line:nth-child(3) { animation-delay: 0.8s;  opacity: 0.7; }
.road-line:nth-child(4) { animation-delay: 1.2s;  opacity: 0.4; }
.road-line:nth-child(5) { animation-delay: 1.6s;  opacity: 0.2; }

@keyframes dashMove {
    0%   { transform: scaleX(1);   opacity: inherit; }
    50%  { transform: scaleX(1.3); }
    100% { transform: scaleX(1);   }
}

/* ── Corner brackets ── */
.corner-tl,
.corner-tr {
    position: absolute;
    top: 90px;
    width: 40px;
    height: 40px;
    z-index: 3;
    pointer-events: none;
}
.corner-tl {
    left: 40px;
    border-top: 2px solid rgba(255,133,0,0.4);
    border-left: 2px solid rgba(255,133,0,0.4);
}
.corner-tr {
    right: 40px;
    border-top: 2px solid rgba(255,133,0,0.4);
    border-right: 2px solid rgba(255,133,0,0.4);
}

/* ── Route badge ── */
.route-badge {
    position: absolute;
    top: 104px;
    right: 56px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    pointer-events: none;
}

.route-num {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.route-sub {
    font-family: var(--font-head);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.12);
    text-transform: uppercase;
}

/* ── Center content ── */
.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 5;
    padding: 140px 24px 120px;
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    margin-bottom: 36px;
    font-family: var(--font-head);
    text-transform: uppercase;
}

.hero-line {
    font-size: clamp(5rem, 13vw, 12rem);
    font-weight: 900;
    letter-spacing: -2px;
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-accent {
    font-size: clamp(4.5rem, 11vw, 10rem);
    background: linear-gradient(180deg, var(--primary) 0%, #cc6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 6px;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.9;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-head);
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(255, 133, 0, 0.4);
    border: 1px solid var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.12);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}

.btn-primary:hover::before { left: 160%; }
.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 4px 32px rgba(255, 133, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ── HUD strip — removed ── */

/* ── Hero Animations ─────────────────────────────────── */

/* Fade + rise on load */
.hero-center {
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children */
.hero-eyebrow  { animation: heroFadeIn 1s 0.1s ease both; }
.hero-title    { animation: heroFadeIn 1s 0.3s ease both; }
.hero-sub      { animation: heroFadeIn 1s 0.55s ease both; }
.cta-group     { animation: heroFadeIn 1s 0.75s ease both; }

/* Slow orange glow that breathes across the bottom */
#home::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255,133,0,0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.15); }
}

/* Road lines pulse more gently */
.road-line {
    animation: linePulse 3s ease-in-out infinite;
}
.road-line:nth-child(1) { animation-delay: 0s; }
.road-line:nth-child(2) { animation-delay: 0.5s; }
.road-line:nth-child(3) { animation-delay: 1s; }
.road-line:nth-child(4) { animation-delay: 1.5s; }
.road-line:nth-child(5) { animation-delay: 2s; }

@keyframes linePulse {
    0%, 100% { opacity: inherit; width: 60px; }
    50%       { opacity: 0.9;    width: 80px; }
}

/* ── Sections ────────────────────────────────────────── */
section {
    padding: 130px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 18px auto 0;
}

/* ── About ───────────────────────────────────────────── */
#about {
    background:
        repeating-linear-gradient(45deg, #050505, #050505 20px, #070707 20px, #070707 40px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.9;
}

.stat-box {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(160,200,54,0.05) 0%, transparent 70%);
}

.stat-number {
    font-size: 5.5rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: transparent;
    -webkit-text-stroke: 1px rgba(160, 200, 54, 0.5);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-family: var(--font-head);
}

/* ── Video ───────────────────────────────────────────── */
#video-section {
    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.video-container-styled {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px;
    border-radius: 16px;
    background: rgba(10,10,10,0.8);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255,133,0,0.04);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.video-consent-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #111 0%, #000 100%);
    z-index: 10;
    text-align: center;
    padding: 30px;
    gap: 8px;
}

.video-consent-overlay p {
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.video-consent-overlay strong {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 1px;
}

.video-consent-overlay button {
    background: transparent;
    border: 1px solid rgba(160, 200, 54, 0.4);
    color: var(--secondary);
    padding: 12px 36px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-head);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

.video-consent-overlay button:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 30px var(--secondary-glow);
}

/* ── Services ────────────────────────────────────────── */
#services {
    background-color: #060606;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.04);
}

.card {
    background: #080808;
    padding: 50px 36px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(to bottom, var(--primary), transparent);
    transition: height 0.4s ease;
}

.card::after {
    content: attr(data-num);
    position: absolute;
    top: 20px; right: 20px;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    line-height: 1;
    transition: all 0.4s ease;
}

.card:hover {
    background: #0d0d0d;
}

.card:hover::before { height: 100%; }

.card:hover::after {
    -webkit-text-stroke: 1px rgba(255,133,0,0.1);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: #fff;
    letter-spacing: 2px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 18px;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.5;
    transition: color 0.3s;
}

.card li::before {
    content: '›';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4;
}

.card:hover li { color: rgba(255,255,255,0.75); }

/* ── DriversHub ─────────────────────────────────────── */
#drivershub {
    background: linear-gradient(180deg, #050505, #080808);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.hub-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hub-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 50px;
    line-height: 1.9;
}

.hub-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hub-tag {
    background: rgba(255,255,255,0.02);
    color: var(--secondary);
    padding: 12px 28px;
    border: 1px solid rgba(160, 200, 54, 0.2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-head);
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hub-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(160, 200, 54, 0.06);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hub-tag:hover::before { transform: scaleX(1); }
.hub-tag:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(160, 200, 54, 0.08);
}

/* ── Recruitment ─────────────────────────────────────── */
#recruitment {
    padding: 60px 0 120px;
}

.recruit-box {
    background: linear-gradient(135deg, #0d0d0d 0%, #111 100%);
    padding: 90px 60px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.recruit-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.recruit-box::after {
    content: '';
    position: absolute;
    bottom: -150px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 300px;
    background: radial-gradient(ellipse at center, rgba(255,133,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.recruit-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.recruit-box p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
    background: #000;
    padding: 70px 20px 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

footer a:hover { color: var(--primary); }

.footer-links {
    margin: 20px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.footer-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.1);
    display: inline-block;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-center { padding: 120px 24px 100px; }

    .hero-line { font-size: clamp(4rem, 18vw, 7rem); letter-spacing: -1px; }
    .hero-line-accent { font-size: clamp(3.5rem, 15vw, 6rem); }

    .hero-sub { font-size: 0.95rem; }

    .cta-group { justify-content: center; }

    .hero-hud { gap: 0; padding: 16px 20px; }
    .hud-item { padding: 0 18px; }
    .hud-item:nth-child(n+7) { display: none; }

    .corner-tl, .corner-tr { display: none; }
    .route-badge { display: none; }

    .nav-links { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 50px; }

    .section-title { font-size: 2rem; }

    .cards-grid { grid-template-columns: 1fr; gap: 2px; }

    .recruit-box { padding: 60px 24px; }
    .recruit-box h2 { font-size: 2rem; }

    #goUpBtn { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}