/* Miran Drive — Corporate Website */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-deep: #06111f;
    --bg-mid: #0c1e36;
    --bg-card: rgba(255, 255, 255, 0.04);
    --brand: #1d6ef2;
    --brand-light: #4d9bff;
    --brand-glow: #7ec8ff;
    --text: #f4f7ff;
    --text-muted: #9eb0c8;
    --border: rgba(255, 255, 255, 0.09);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Outfit", system-ui, sans-serif;
    --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-deep);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--brand);
    color: #fff;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Header / Nav ── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-h);
    border-bottom: 1px solid var(--border);
    background: rgba(6, 17, 31, 0.82);
    backdrop-filter: blur(16px);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
}

.nav-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-brand small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Language switcher (Google Translate, custom UI) ── */
.lang-switcher {
    position: relative;
    margin-left: 0.35rem;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.7rem 0.4rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(77, 155, 255, 0.28);
    background: linear-gradient(135deg, rgba(29, 110, 242, 0.18), rgba(126, 200, 255, 0.06));
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-trigger:hover,
.lang-switcher.is-open .lang-trigger {
    border-color: rgba(77, 155, 255, 0.55);
    background: linear-gradient(135deg, rgba(29, 110, 242, 0.28), rgba(126, 200, 255, 0.1));
    box-shadow: 0 0 0 3px rgba(29, 110, 242, 0.12);
}

.lang-icon {
    display: grid;
    place-items: center;
    color: var(--brand-light);
}

.lang-current {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-align: left;
}

.lang-current strong {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--brand-glow);
}

.lang-current span {
    font-size: 0.78rem;
    color: var(--text);
    max-width: 7.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    margin-left: 0.1rem;
    transition: transform 0.2s;
}

.lang-switcher.is-open .lang-caret { transform: rotate(180deg); }

.lang-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 120;
    width: min(280px, calc(100vw - 2rem));
    max-height: min(58vh, 380px);
    overflow: auto;
    padding: 0.45rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 18, 34, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.lang-switcher.is-open .lang-panel {
    display: grid;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.15s;
}

.lang-option:hover { background: rgba(29, 110, 242, 0.16); }

.lang-option.is-active {
    background: rgba(29, 110, 242, 0.22);
    box-shadow: inset 0 0 0 1px rgba(77, 155, 255, 0.35);
}

.lang-option-code {
    flex: 0 0 auto;
    min-width: 1.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand-light);
}

.lang-option-name {
    font-size: 0.8rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Einmaliger Sprach-Hinweis (freiwillig) */
.lang-welcome {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: rgba(4, 10, 20, 0.55);
    backdrop-filter: blur(6px);
}

.lang-welcome.is-visible {
    display: flex;
    animation: langWelcomeIn 0.35s ease;
}

@keyframes langWelcomeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lang-welcome-card {
    position: relative;
    width: min(440px, 100%);
    margin-bottom: max(1rem, env(safe-area-inset-bottom));
    padding: 1.35rem 1.35rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(165deg, rgba(14, 28, 52, 0.98), rgba(8, 16, 32, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    animation: langCardUp 0.4s ease;
}

@keyframes langCardUp {
    from { transform: translateY(18px); opacity: 0.6; }
    to { transform: translateY(0); opacity: 1; }
}

.lang-welcome-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
}

.lang-welcome-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.lang-welcome-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 0.35rem;
}

.lang-welcome-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.lang-welcome-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.lang-welcome-picks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.lang-welcome-pick {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.65rem 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(77, 155, 255, 0.22);
    background: rgba(29, 110, 242, 0.1);
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}

.lang-welcome-pick:hover {
    background: rgba(29, 110, 242, 0.22);
    border-color: rgba(77, 155, 255, 0.45);
}

.lang-welcome-pick strong {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--brand-glow);
}

.lang-welcome-pick span {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.lang-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lang-welcome-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
}

@media (max-width: 480px) {
    .lang-welcome-picks { grid-template-columns: repeat(2, 1fr); }
}

/* Google Translate chrome komplett ausblenden */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-spinner-pos,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

body { top: 0 !important; }
body > .skiptranslate { display: none !important; }
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
font font { background: transparent !important; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--text); }

.nav-cta {
    padding: 0.55rem 1rem !important;
    border-radius: 999px;
    background: rgba(29, 110, 242, 0.15);
    border: 1px solid rgba(77, 155, 255, 0.35);
    color: var(--brand-light) !important;
}

.nav-cta:hover { background: rgba(29, 110, 242, 0.28); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.orb-1 {
    width: 420px; height: 420px;
    background: #1d4ed8;
    top: -80px; right: -60px;
}

.orb-2 {
    width: 320px; height: 320px;
    background: #0ea5e9;
    bottom: 10%; left: -80px;
}

.orb-3 {
    width: 200px; height: 200px;
    background: #6366f1;
    top: 40%; left: 45%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-glow);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    background: linear-gradient(120deg, var(--brand-light), var(--brand-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #2563eb);
    color: #fff;
    box-shadow: 0 12px 30px rgba(29, 110, 242, 0.35);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-trust li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-trust strong { color: var(--text); }

.hero-card {
    justify-self: end;
    width: min(100%, 380px);
}

.hero-card-inner {
    background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.hero-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.hero-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-card > .hero-card-inner > p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0;
}

.hero-facts { display: grid; gap: 0.85rem; }

.hero-facts div {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.5rem;
}

.hero-facts dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.hero-facts dd { font-weight: 500; }

/* ── Sections ── */
.section {
    padding: 5.5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    max-width: none;
    background: rgba(255, 255, 255, 0.02);
    border-block: 1px solid var(--border);
}

.section-alt > * {
    max-width: 1200px;
    margin-inline: auto;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-glow);
    margin-bottom: 0.75rem;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-muted);
    max-width: 38rem;
}

.section-head { margin-bottom: 2.5rem; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* Uber Partner */
.uber-panel {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    border: 1px solid rgba(77, 155, 255, 0.25);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(29, 110, 242, 0.1), rgba(6, 17, 31, 0.4));
}

.uber-points {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.uber-points li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.uber-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-light);
}

.uber-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(158, 176, 200, 0.85);
    line-height: 1.7;
}

.uber-panel-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
}

.uber-badge-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.uber-badge-sub {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-glow);
}

.legal-intro {
    margin-top: 0.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--bg-deep);
    padding: 2rem 1.75rem;
    transition: background 0.25s;
}

.service-card:hover { background: rgba(29, 110, 242, 0.07); }

.service-num {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--brand);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Fleet */
.fleet-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.fleet-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.fleet-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.85);
}

.fleet-specs {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.fleet-specs article {
    background: var(--bg-card);
    padding: 1.5rem;
}

.fleet-specs strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--brand-light);
    margin-bottom: 0.2rem;
}

.fleet-specs span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* CTA */
.section-cta { padding-block: 3rem; }

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(77, 155, 255, 0.3);
    background: linear-gradient(135deg, rgba(29, 110, 242, 0.12), rgba(6, 17, 31, 0.6));
}

.cta-panel h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.cta-panel p { color: var(--text-muted); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.35rem 1.5rem;
}

.contact-card h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--brand-light);
    text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.contact-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.contact-mail-cta {
    margin-top: 1.25rem;
    display: inline-flex;
}

.booking-box {
    margin-top: 1.35rem;
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.booking-box h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 0.7rem;
}

.booking-checklist {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.booking-checklist li + li { margin-top: 0.4rem; }

.booking-note {
    margin: 0.9rem 0 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 0.9rem;
}

.booking-fields label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea {
    font: inherit;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus {
    outline: 2px solid rgba(96, 165, 250, 0.45);
    outline-offset: 1px;
}

.booking-field-full { grid-column: 1 / -1; }

.booking-preview-label {
    display: block;
    margin: 1rem 0 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.booking-preview {
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 0.95rem;
    resize: vertical;
}

@media (max-width: 720px) {
    .booking-fields { grid-template-columns: 1fr; }
}

.contact-card-highlight {
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(59, 130, 246, 0.08);
}

.contact-card-hint {
    margin: 0.55rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Jobs */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.jobs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.55rem;
}

.jobs-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 0.85rem;
}

.jobs-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.jobs-list li + li { margin-top: 0.55rem; }

.jobs-list strong { color: var(--text); }

.jobs-card-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.jobs-card-cta p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.jobs-hint {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-dim, var(--text-muted));
}

/* Standort / Google Maps */
.map-block {
    margin-top: 3rem;
    display: grid;
    gap: 1.25rem;
}

.map-block-head {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    align-items: flex-end;
    justify-content: space-between;
}

.map-block-head h2 { margin-bottom: 0.35rem; }

.map-block-head .section-text {
    margin: 0;
    max-width: 36ch;
}

.map-nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    max-height: 480px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-hint {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Legal */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.legal-grid h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-glow);
    margin-bottom: 0.65rem;
}

.legal-grid p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-grid a {
    color: var(--brand-light);
    text-decoration: none;
}

.legal-grid a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-brand strong {
    font-family: var(--font-display);
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-grid,
    .fleet-showcase,
    .contact-grid,
    .stats-grid,
    .services-grid,
    .legal-grid,
    .uber-panel,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .hero-card { justify-self: stretch; width: 100%; }

    .nav-toggle { display: flex; }

    .lang-switcher {
        margin: 0.75rem 0 0;
        width: 100%;
    }

    .lang-trigger { width: 100%; justify-content: space-between; }

    .lang-panel {
        left: 0;
        right: 0;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .nav-menu {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem 1.5rem;
        background: rgba(6, 17, 31, 0.97);
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
        gap: 0.85rem;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a { padding: 0.65rem 0; }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .section { padding: 4rem 1.25rem; }
    .hero { padding-top: calc(var(--nav-h) + 2rem); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
}
