/* ------------------------------------------------------- */
/* GLOBAL SETTINGS                                          */
/* ------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #05060a;
    color: #fff;
    overflow-x: hidden;
}

@media(max-width: 900px) {
}

body.nav-open {
    overflow: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ------------------------------------------------------- */
/* CLOUD + BACKGROUND ANIMATION                            */
/* ------------------------------------------------------- */

/* CLOUD-LAYER (dein echtes Unfallbild) */
.cloud-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('unfallbild.png') no-repeat 40% center;
    background-size: cover;
    opacity: 0.22;
    z-index: -9;
}

/* ------------------------------------------------------- */
/* BRIDGE ANIMATION (Based on logo curves)                 */
/* ------------------------------------------------------- */

.bridge-animation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 150%;
    height: 300px;
    background: url('elbe-logo.png') no-repeat center;
    background-size: 700px;
    opacity: 0.08;
    animation: bridgeFloat 16s ease-in-out infinite;
    z-index: -7;
}

@keyframes bridgeFloat {
    0% { transform: translateY(0);}
    50% { transform: translateY(-15px);}
    100% { transform: translateY(0);}
}

/* ---------------- HEADER ---------------- */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #1a1c22;
    z-index: 20;
}

.header-inner {
    height: 100%;
    position: relative;
    padding: 0 4%;
}

.header-logo {
    position: absolute;
    left: 3.5%;
    top: 65%;
    transform: translateY(-50%);
    height: 275px;
}


/* NAVIGATION � moderner Look */
.navigation {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-left: 120px;
}

/* ---- SPRACHUMSCHALTER (frei schwebend unter Nav) ---- */
.lang-switcher {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 19;
    pointer-events: none;
}

.lang-flags-bar {
    pointer-events: all;
}

.lang-flags-bar {
    display: flex;
    align-items: center;
    gap: 44px;
    direction: ltr;
}

.lang-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 2px 2px 5px;
    cursor: pointer;
    opacity: 0.45;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    transition: opacity 0.15s, transform 0.15s, border-color 0.15s;
}

.lang-btn .flag-img {
    display: block;
    width: 38px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
}

.lang-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lang-btn.lang-active {
    opacity: 1;
    border-bottom-color: transparent;
}

.lang-btn.lang-active .flag-img {
    box-shadow: 0 0 10px 3px rgba(255,255,255,0.55), 0 0 22px 6px rgba(0,159,227,0.3);
    border-radius: 5px;
}

/* Mobile Toggle */
.lang-toggle {
    display: none;
}

.lang-arrow {
    font-size: 11px;
    color: #7a90b0;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: rgba(8,10,20,0.97);
    border: 1px solid rgba(0,159,227,0.25);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 300;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    min-width: 260px;
}

.lang-dropdown.open {
    display: grid;
}

.lang-dropdown .lang-btn {
    border: 1px solid transparent;
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 14px;
    color: #b0c0d8;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    opacity: 1;
    transform: none;
}

.lang-dropdown .lang-btn .flag-img {
    width: 24px;
    height: 18px;
    flex-shrink: 0;
}

.lang-dropdown .lang-btn:hover {
    background: rgba(0,159,227,0.12);
    color: #fff;
    border-color: rgba(0,159,227,0.2);
    transform: none;
}

.lang-dropdown .lang-btn.lang-active {
    background: rgba(0,159,227,0.18);
    border-color: rgba(0,159,227,0.45);
    border-bottom-color: rgba(0,159,227,0.45);
    color: #fff;
}

/* NAV LINKS � edel, clean */
.navigation a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    transition: 0.25s ease;
    letter-spacing: 0.5px;
}

/* Hover */
.navigation a:hover {
    color: #fff;
    background: rgba(78,166,255,0.10);
    box-shadow: 0 0 12px rgba(78,166,255,0.35);
    transform: translateY(-2px);
}

/* Aktiver Men�punkt � aber NICHT bei Start */
.navigation a.active:not([href="#start"]) {
    color: #fff;
    background: rgba(78,166,255,0.12);
    box-shadow: 0 0 14px rgba(78,166,255,0.45);
}

.mobile-bottom-nav {
    display: none;
}



/* ------------------------------------------------------- */
/* HERO SECTION                                             */
/* ------------------------------------------------------- */

/* HERO SECTION */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    margin-top: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 10%;
    position: relative;
    top: -110px;
}


/* SUBTEXT */
.hero-subline {
    margin-top: 20px;
    font-size: 22px;
    color: #cdd3e0;
}


.hero-media {
    position: absolute;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: -3;
}


@keyframes parallaxHero {
    0% { transform: scale(1.0) translateY(0);}
    50% { transform: scale(1.06) translateY(-15px);}
    100% { transform: scale(1.0) translateY(0);}
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(5,6,10,0.95));
}


.hero-section h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    white-space: nowrap;
}

.hero-subline {
    margin-top: 20px;
    font-size: 22px;
    color: #cdd3e0;
}

/* HERO FEATURES */
.hero-features {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 35px;
    color: #97baff;
    font-size: 18px;
    opacity: 0.9;
}

/* CTA BUTTON */
.cta-button {
    margin-top: 35px;
    background: #009FE3;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(78,166,255,0.55);
    text-decoration: none !important;   /* HIER */
}


.cta-button:hover {
    background: #009FE3;
    box-shadow: 0 0 25px rgba(78,166,255,0.75);
}

.cta-mobile-btn { display: none; }

#start {
    scroll-margin-top: 160px;
}


/* ------------------------------------------------------- */
/* SECTIONS GLOBAL                                          */
/* ------------------------------------------------------- */

section {
    padding: 80px 10% 70px;
    max-width: 1500px;
    margin: auto;
}

#unfall, #leistungen, #ablauf, #kontakt {
    min-height: 100vh;
}

#ablauf {
    padding-top: 30px;
}

#unfall {
    scroll-margin-top: -150px;
}

#ablauf, #bewertungen, #kontakt {
    scroll-margin-top: 80px;
    padding-top: 100px;
}

#kontakt {
    padding-top: 120px;
}

.section-heading h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #4ea6ff, #009FE3);
    border-radius: 12px;
    margin-bottom: 40px;
}

/* Leistungen � �berschrift + Grid zentriert */
.leistungen-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.leistungen-heading h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin: 10px 0 16px;
}

.leistungen-heading .section-sub {
    font-size: 17px;
    color: #a0b4cc;
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

/* ------------------------------------------------------- */
/* WHY SECTION                                              */
/* ------------------------------------------------------- */

.callout-desktop { display: inline; }
.callout-mobile  { display: none; }

.section-sub {
    font-size: 16px;
    color: #8a9bb8;
    max-width: 700px;
    margin: -20px auto 50px;
    line-height: 1.75;
    text-align: center;
}

/* ===================================================== */
/* WHY SECTION � Split Layout                            */
/* ===================================================== */

.why-section {
    position: relative;
    overflow: hidden;
    margin-top: 200px;
    padding: 80px 0 60px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.why-outer-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4%;
}

.why-illustration--desktop {
    display: flex;
    flex: 0 0 560px;
    align-items: center;
    justify-content: center;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.why-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-illustration--mobile { display: none; }

.why-illustration {
    position: relative;
    overflow: hidden;
}

.camera-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 35%, rgba(255,255,255,0.95) 0%, rgba(220,240,255,0.6) 40%, transparent 75%);
    opacity: 0;
    pointer-events: none;
    border-radius: inherit;
}

@keyframes cameraFlash {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    18%  { opacity: 0.3; }
    28%  { opacity: 0.9; }
    55%  { opacity: 0; }
    100% { opacity: 0; }
}

.camera-flash.flash-active {
    animation: cameraFlash 0.6s ease-out forwards;
}

.why-illustration-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Linke Spalte */
.why-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.why-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #009FE3;
    margin-bottom: 20px;
    opacity: 0.9;
}

.why-header h2 {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.why-header .section-sub {
    font-size: 13px;
    color: #7a8fa8;
    line-height: 1.65;
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.why-cta-line {
    display: flex;
    gap: 8px;
    align-items: center;
}

.why-cta-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #009FE3;
    opacity: 0.4;
    animation: dotPulse 1.8s ease-in-out infinite;
}
.why-cta-dot:nth-child(2) { animation-delay: 0.3s; }
.why-cta-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.25; transform: scale(0.85); }
    50%       { opacity: 1;    transform: scale(1.15); }
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    flex: 1;
    align-content: start;
}

.why-card {
    position: relative;
    height: 160px;
    perspective: 1000px;
    cursor: pointer;
    border-radius: 16px;
}

.why-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card.flipped .why-card-inner {
    transform: rotateY(180deg);
}

.why-card-front,
.why-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(6, 14, 22, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}

.why-card-front {
    text-align: center;
}

.why-card-back {
    transform: rotateY(180deg);
    background: rgba(0, 159, 227, 0.08);
    border-color: rgba(0,159,227,0.3);
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    text-align: left;
}

.why-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.why-card-icon svg {
    width: 100%;
    height: 100%;
}

/* Highlight-Karte (04) */
.why-card-highlight .why-card-front,
.why-card-highlight .why-card-back {
    border-color: rgba(0,159,227,0.25);
}

.why-card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 11px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,0.13);
    line-height: 1.3;
    position: relative; z-index: 1;
    letter-spacing: -0.2px;
    overflow-wrap: anywhere;
}

.why-card p {
    font-size: 12.5px;
    color: #c0cfdd;
    line-height: 1.6;
    margin: 0;
    position: relative; z-index: 1;
}

.why-scroll-bound {
    transition: none !important;
    will-change: opacity, transform, filter;
}

/* ------------------------------------------------------- */
/* SCROLL PROGRESS BAR                                      */
/* ------------------------------------------------------- */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #009FE3, #00d4ff);
    z-index: 9999;
    transition: width 0.08s linear;
}

/* ------------------------------------------------------- */
/* STATS BAND                                               */
/* ------------------------------------------------------- */

.stats-band {
    margin-top: 52px;
    padding: 28px 36px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0,159,227,0.25);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0,159,227,0.25);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0,159,227,0.6);
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: #009FE3;
}

.stat-item p {
    color: #7a90b0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ------------------------------------------------------- */
/* FLOATING WHATSAPP                                        */
/* ------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    z-index: 990;
    animation: waPulse 2.5s infinite;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ------------------------------------------------------- */
/* COOKIE BANNER                                            */
/* ------------------------------------------------------- */

#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(8, 12, 19, 0.94);
    border: 1px solid rgba(0,159,227,0.24);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45), 0 0 30px rgba(0,159,227,0.08);
    z-index: 995;
    max-width: 820px;
    width: calc(100% - 40px);
    transition: opacity 0.4s, transform 0.4s;
}

#cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.cookie-copy h3 {
    font-size: 15px;
    color: #ffffff;
    margin: 0 0 5px;
}

#cookie-banner p {
    font-size: 13px;
    color: #b8c7d6;
    margin: 0;
    line-height: 1.55;
}

#cookie-banner p a {
    color: #9bdcff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-actions a {
    color: #b8c7d6;
    font-size: 13px;
    text-decoration: none;
}

.cookie-actions a:hover {
    color: #fff;
}

#cookie-ok {
    flex-shrink: 0;
    min-height: 40px;
    padding: 0 18px;
    background: rgba(0,159,227,0.18);
    color: #ffffff;
    border: 1px solid rgba(0,159,227,0.42);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

#cookie-ok:hover {
    background: rgba(0,159,227,0.28);
    border-color: rgba(0,159,227,0.72);
}

/* ------------------------------------------------------- */
/* BACK TO TOP                                              */
/* ------------------------------------------------------- */

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,159,227,0.15);
    border: 1px solid rgba(0,159,227,0.5);
    color: #009FE3;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
    z-index: 989;
}

#back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

#back-to-top:hover {
    background: rgba(0,159,227,0.3);
}

/* ------------------------------------------------------- */
/* STATISTIKEN                                              */
/* ------------------------------------------------------- */

.info-stats-section {
    padding: 86px 4% 80px;
    max-width: 1600px;
    margin: 0 auto;
}

/* KPI Grid */
.info-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.info-kpi-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 24px 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.25s;
}

.info-kpi-card:hover {
    border-color: rgba(0, 159, 227, 0.4);
}

.info-kpi-card--highlight {
    border-color: rgba(0, 220, 120, 0.3);
    background: rgba(0, 220, 120, 0.04);
}

.info-kpi-card--highlight:hover {
    border-color: rgba(0, 220, 120, 0.55);
}

.info-kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.info-kpi-icon {
    font-size: 22px;
    line-height: 1;
}

.info-kpi-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    color: #8aa8c0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-kpi-badge--blue {
    background: rgba(0, 159, 227, 0.1);
    color: #009FE3;
    border-color: rgba(0, 159, 227, 0.25);
}

.info-kpi-badge--green {
    background: rgba(0, 220, 120, 0.1);
    color: #00dc78;
    border-color: rgba(0, 220, 120, 0.25);
}

.info-kpi-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.info-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
}

.info-kpi-unit {
    font-size: 22px;
    font-weight: 700;
    color: #009FE3;
}

.info-kpi-card--highlight .info-kpi-unit {
    color: #00dc78;
}

.info-kpi-card--highlight .info-stat-number {
    color: #00dc78;
}

.info-kpi-label {
    font-size: 14px;
    color: #c5d8e8;
    font-weight: 600;
    margin: 4px 0 0;
}

.info-kpi-source {
    font-size: 11px;
    color: #4a6070;
    margin: 0;
}

/* Bottom grid: bars + donut */
.info-bottom-grid {
    display: grid;
    grid-template-columns: 180px 1fr 220px 1fr 2fr;
    gap: 16px;
    margin-top: 16px;
}

/* Bar Chart Card */
.info-bars-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 30px 32px;
}

.info-bars-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -0.3px;
}

.info-bar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-bar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.info-bar-header span:first-child {
    font-size: 12px;
    color: #c5d8e8;
    font-weight: 500;
}

.info-bar-pct {
    font-size: 12px;
    font-weight: 700;
    color: #009FE3;
}

.info-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    overflow: hidden;
}

.info-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, #009FE3, #00c6ff);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-bar-fill.animated {
    width: var(--pct);
}

.info-bar-fill span {
    display: none;
}

/* Donut Card */
.info-donut-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-donut-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -0.3px;
    align-self: flex-start;
}

.info-donut-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(#009FE3 0% 62%, #00c9a7 62% 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-donut-ring::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0a0f1e;
}

.donut-inner-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.donut-pct {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.donut-sublabel {
    font-size: 10px;
    color: #6a8ea8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-donut-legend {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #8aa8c0;
    margin-bottom: 16px;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.legend-dot--blue  { background: #009FE3; }
.legend-dot--pink  { background: #00c9a7; }

/* Hamburg-Takt Karte */
.info-live-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}

.info-live-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.2px;
}

.live-big {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.live-number {
    font-size: 52px;
    font-weight: 900;
    color: #009FE3;
    letter-spacing: -3px;
}

.live-unit {
    font-size: 20px;
    font-weight: 700;
    color: #009FE3;
}

.live-sub {
    font-size: 12px;
    color: #5a7a90;
    margin: 6px 0 0;
    line-height: 1.4;
}

.live-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 18px 0;
}

.live-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.live-fact-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.live-fact-num {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.live-fact-label {
    font-size: 11px;
    color: #5a7a90;
    white-space: nowrap;
}

/* Vergleichs-Karte */
.info-compare-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-compare-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.compare-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-label {
    font-size: 11px;
    color: #5a7a90;
}

.compare-bar-track {
    height: 26px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
}

.compare-bar {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    width: 0;
    transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.compare-bar.animated { width: var(--pct); }

.compare-bar--bad  { background: linear-gradient(90deg, #ff4d4d, #ff7043); }
.compare-bar--good { background: linear-gradient(90deg, #009FE3, #00dc78); }

.compare-note {
    font-size: 12px;
    color: #8aa8c0;
    margin: 0;
}

.compare-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 2px 0;
}

.compare-cuts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cut-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #8aa8c0;
}

.cut-val {
    color: #ff6b6b;
    font-weight: 600;
}

/* Trend-Graph Karte */
.info-trend-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.18);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.info-trend-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    letter-spacing: -0.2px;
}

.trend-sub {
    font-size: 12px;
    color: #5a7a90;
    margin: 0 0 16px;
}

.trend-svg {
    width: 100%;
    height: auto;
    flex: 1;
}

.trend-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #00dc78;
    background: rgba(0, 220, 120, 0.08);
    border: 1px solid rgba(0, 220, 120, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
}

.info-donut-note {
    font-size: 12px;
    color: #5a7a90;
    line-height: 1.6;
    margin: 0;
}

.info-stats-section .section-heading {
    margin-bottom: 0;
}

.info-stats-section .section-heading h2 {
    margin-top: 6px;
    margin-bottom: 0;
}

.info-stats-section .section-heading .section-sub {
    margin-top: 8px;
    margin-bottom: 0;
}

.info-stats-section .info-kpi-grid {
    margin-top: 20px;
}

/* ------------------------------------------------------- */
/* LEISTUNGEN                                              */
/* ------------------------------------------------------- */

.services-intro {
    text-align: center;
    color: #aab4c8;
    font-size: 17px;
    margin-top: 24px;
    line-height: 1.8;
}

.services-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 860px;
    margin: 40px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.services-track-outer {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 36px 32px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 159, 227, 0.25);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.service-card::before {
    content: none;
}

/* Wasserzeichen-Zahl im Hintergrund */
.service-card::after {
    position: absolute;
    bottom: -20px;
    right: 28px;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 159, 227, 0.06);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}

.slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 159, 227, 0.4);
    background: rgba(0, 0, 0, 0.5);
    color: #009FE3;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    line-height: 1;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(0, 159, 227, 0.15);
    border-color: #009FE3;
}

.slider-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}

.dot.active {
    background: #009FE3;
    transform: scale(1.4);
}

.card-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.card-checklist span {
    font-size: 13px;
    color: #9ab5cc;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.card-checklist span::before {
    content: '?';
    color: #009FE3;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.service-icon {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 48px;
    line-height: 1;
    opacity: 0.7;
    background: none;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    pointer-events: none;
    user-select: none;
    filter: none;
}

.services-track .service-card:nth-child(1)::after { content: '01'; }
.services-track .service-card:nth-child(2)::after { content: '02'; }
.services-track .service-card:nth-child(3)::after { content: '03'; }
.services-track .service-card:nth-child(4)::after { content: '04'; }
.services-track .service-card:nth-child(5)::after { content: '05'; }

.service-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.service-num {
    display: inline-flex;
    width: fit-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #009FE3;
    text-transform: uppercase;
    background: rgba(0, 159, 227, 0.08);
    border: 1px solid rgba(0, 159, 227, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin: 0;
}

.service-card p {
    font-size: 15px;
    color: #7a96b0;
    line-height: 1.75;
    margin: 0;
    max-width: 500px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-map {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0,159,227,0.18);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.services-map::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5,6,10,0.1), rgba(5,6,10,0.18)),
        radial-gradient(circle at 30% 20%, rgba(0,159,227,0.18), transparent 34%);
}

.services-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.85) contrast(1.05);
}

.services-map-consent {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(5, 11, 18, 0.92), rgba(7, 19, 30, 0.86)),
        radial-gradient(circle at 30% 20%, rgba(0,159,227,0.18), transparent 36%);
}

.services-map-consent-box {
    width: min(260px, 85%);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(5, 8, 14, 0.86);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 48px rgba(0,0,0,0.38);
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-map-consent-box h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
}

.services-map-consent-box p {
    margin: 0 0 10px;
    color: #b6c7d8;
    font-size: 12px;
    line-height: 1.5;
}

.services-map-load {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(0,159,227,0.4);
    background: rgba(0,159,227,0.16);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.services-map-load:hover {
    background: rgba(0,159,227,0.24);
    border-color: rgba(0,159,227,0.65);
}

.services-map-consent-box a {
    display: block;
    margin-top: 13px;
    color: #9bcbe0;
    font-size: 13px;
}

.services-map-info {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    max-width: calc(100% - 48px);
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(5, 8, 14, 0.88);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.services-map-info span {
    display: block;
    margin-bottom: 5px;
    color: #009FE3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.services-map-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
}


/* ------------------------------------------------------- */
/* BEWERTUNGEN                                              */
/* ------------------------------------------------------- */

.reviews-section {
    padding: 40px 0 80px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-section .section-heading {
    padding: 0 10%;
    max-width: 1500px;
    margin: 0 auto 50px;
}

.reviews-marquee {
    display: flex;
    flex-direction: column;
    gap: 18px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-row {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
}

.marquee-track--left {
    animation: marqueeLeft 40s linear infinite;
}

.marquee-track--right {
    animation: marqueeRight 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.review-card {
    width: 340px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 20px rgba(0,159,227,0.15);
}

.review-stars {
    color: #f5c518;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    color: #c8d4e8;
    font-size: 15px;
    line-height: 1.75;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009FE3, #005f8a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta strong {
    font-size: 14px;
    color: #ffffff;
}

.review-meta span {
    font-size: 12px;
    color: #5a6a80;
}

/* ------------------------------------------------------- */
/* TIMELINE                                                 */
/* ------------------------------------------------------- */

.process-timeline {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 8px;
    padding: 0 0 44px 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    text-align: left;
    position: relative;
    transition: none;
    min-height: auto;
}

.timeline-step:last-child {
    padding-bottom: 0;
}


.step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    background: #009FE3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(0,159,227,0.55);
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-step:hover {
    transform: none;
    box-shadow: none;
}

.timeline-step h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 0;
}

.timeline-step p {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    color: #d8e7f4;
    line-height: 1.55;
    margin: 0;
}


/* ------------------------------------------------------- */
/* KONTAKT                                                  */
/* ------------------------------------------------------- */

.contact-wrapper {
    margin-top: 50px;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* CONTACT INFO */
.contact-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 120px;
}

/* ------------------------------------------------------- */
/* FOOTER                                                   */
/* ------------------------------------------------------- */

.footer {
    padding: 25px 10%;              /* Weniger H�he */
    margin-top: -40px;
    border-top: 1px solid #1a1c22;
    text-align: center;
    color: #9ca3b5;
}

.footer-links a {
    color: #9ca3b5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-logo {
    width: 320px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    opacity: 0.75;
    display: block;
    margin: 0 auto 6px;
}
@keyframes glowBlue {
    0%, 100% { box-shadow: 0 0 15px rgba(0,159,227,0.55); }
    50% { box-shadow: 0 0 30px rgba(0,159,227,0.95); }
}

@keyframes glowGreen {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0,255,0,0.45)); }
    50% { filter: drop-shadow(0 0 20px rgba(0,255,0,0.85)); }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.2s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ------------------------------------------------------- */
/* HAMBURGER BUTTON                                         */
/* ------------------------------------------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ------------------------------------------------------- */
/* RESPONSIVE (tablet)                                      */
/* ------------------------------------------------------- */

@media(max-width: 900px) {
    .main-header {
        z-index: 1000;
    }

    .hamburger {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobile-bottom-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: min(680px, calc(100% - 28px));
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 6px;
        gap: 4px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid #1a1c22;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        z-index: 999;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    }

    .mobile-bottom-nav::-webkit-scrollbar {
        display: none;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex: 1 0 auto;
        min-width: max-content;
        height: 42px;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        color: rgba(229, 239, 255, 0.72);
        letter-spacing: 0;
        text-transform: none;
        border: 1px solid transparent;
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.03);
        text-shadow: none;
        padding: 0 12px;
        flex-direction: row;
        gap: 0;
        white-space: nowrap;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-bottom-nav a::before { display: none; }

    .mobile-bottom-nav a:hover {
        color: #fff;
        background: rgba(0, 159, 227, 0.1);
    }

    .mobile-bottom-nav a.active {
        color: #fff;
        border-color: rgba(0, 159, 227, 0.45);
        background: linear-gradient(180deg, rgba(0, 159, 227, 0.28), rgba(0, 116, 180, 0.18));
        box-shadow: 0 6px 18px rgba(0, 159, 227, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
        font-size: 13px;
    }

    .hero-section h1 { font-size: 40px; }
    .hero-subline { font-size: 18px; }
    .hero-features { flex-direction: column; gap: 14px; }
    .why-cards { grid-template-columns: 1fr 1fr; }
    .services-map { height: 420px; }
    .process-timeline { grid-template-columns: 1fr; gap: 30px; }
}

@media(min-width: 601px) and (max-width: 900px) {
    .services-map { height: 460px; }
}

/* Helleres Hero-Bild */
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* FULL sichtbar */
    animation: parallaxHero 14s ease-in-out infinite;
}

/* Rauch auf der wei�en Motorhaube */
.smoke {
    position: absolute;
    top: 47%;
    left: 63%;
    width: 180px;
    height: 180px;
    background: url('https://i.imgur.com/VxP5O6O.png') no-repeat center;
    background-size: contain;
    opacity: 0.35;
    filter: blur(1px);
    animation: smokeMove 6s ease-in-out infinite, smokeFade 6s ease-in-out infinite;
    z-index: 3;
}
/* Wrapper f�r Anruf + WhatsApp */
.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp Button Container */
.whatsapp-btn {
    position: relative;
    top: 14px;   /* ? nur nach unten */
}

/* WhatsApp Icon */
.whatsapp-btn img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 8px rgba(0,255,0,0.35));
}

.whatsapp-btn img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 0 14px rgba(0,255,0,0.55));
}
/* ZENTRIERTES, KOMPAKTES FORMULAR */
/* ===================== KONTAKT ===================== */

.kontakt-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,159,227,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.contact-map .services-map {
    height: 100%;
}

.damage-card-small {
    flex: 1;
    width: auto;
    margin: 0;
    padding: 35px;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.form-title {
    font-size: 28px;
    margin-bottom: 5px;
}

.form-sub {
    color: #c9d2df;
    margin-bottom: 25px;
    font-size: 15px;
}


.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.damage-form-small {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.damage-form-small label {
    font-size: 13px;
    color: #9ab0c4;
    font-weight: 600;
    margin-bottom: -4px;
}

.damage-form-small input,
.damage-form-small textarea {
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}

.damage-form-small textarea {
    height: 80px;
    resize: none;
}

.damage-form-small input:focus,
.damage-form-small textarea:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 10px rgba(0,159,227,0.45);
}

/* UPLOAD AREA */
.upload-area {
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.2);
    padding: 28px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
}

.upload-area:hover {
    border-color: #009FE3;
    background: rgba(255,255,255,0.12);
}

.upload-area input {
    display: none;
}
.upload-hint {
    margin-top: -8px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.45;
    color: #9ab5cc;
}

.upload-locked {
    opacity: 0.45;
    cursor: not-allowed;
}

.upload-locked:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.preview img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
}

/* Kontakt unter dem Formular */
.contact-note {
    margin-top: 20px;
    font-size: 14px;
    color: #d0d7e2;
    text-align: center;
}

.contact-note p {
    margin-bottom: 10px;
}

.privacy-check {
    text-align: center;
    margin-top: 20px;
}

.damage-btn {
    margin-top: -10px;
}

.damage-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.damage-btn.btn-locked {
    position: relative;
    cursor: not-allowed;
}

.damage-btn.btn-locked::after {
    content: '?? Datenschutz akzeptieren';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.damage-btn.btn-locked:hover::after {
    opacity: 1;
}

.privacy-check a {
    color: #fff;
    text-decoration: underline;
}
/* Impressum / Datenschutz */
.legal-section {
    max-width: 1100px;
    margin: 160px auto;
    padding: 0 6%;
    color: #fff;
}

.legal-section .section-heading h2 {
    font-size: 32px;
}

.legal-section h1 {
    font-size: 50px;
    font-weight: 800;
}

.legal-section .underline {
    width: 140px;
    height: 4px;
    background: #4ea6ff;
    border-radius: 6px;
    margin: 10px 0 40px;
}

.legal-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    line-height: 1.7;
    font-size: 18px;
}

.legal-box h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffffff;
}

.legal-box h3 {
    margin-top: 26px;
    font-size: 21px;
    color: #009FE3;
}

.legal-box--white h3 {
    color: #ffffff;
}

.legal-box a {
    color: #e3ecff;
    text-decoration: none;
    transition: 0.2s;
}

.legal-box a:hover {
    color: #fff;
}
/* Legal Pages (Impressum / Datenschutz) */
.legal-section {
    max-width: 1100px;
    margin: 160px auto;
    padding: 0 6%;
    color: #fff;
}

.legal-section h1 {
    font-size: 50px;
    font-weight: 800;
}

.legal-section .underline {
    width: 140px;
    height: 4px;
    background: #4ea6ff;
    border-radius: 6px;
    margin: 10px 0 40px;
}

.legal-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    line-height: 1.7;
    font-size: 18px;
}

.legal-box h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
}

.legal-box ul {
    margin-left: 22px;
}

.legal-box a {
    color: #e3ecff;
    text-decoration: none;
}

.legal-box a:hover {
    color: #fff;
}

/* ------------------------------------------------------- */
/* RESPONSIVE MOBILE (muss ganz am Ende stehen!)           */
/* ------------------------------------------------------- */

@media(max-width: 768px) {

    /* HEADER */
    .main-header {
        height: 74px;
        position: fixed !important;
        inset: 0 0 auto 0;
        width: 100%;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid #1a1c22;
        box-shadow: none;
        pointer-events: all;
    }

    .main-header a,
    .main-header button {
        pointer-events: all;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 22px;
        position: relative;
        height: 100%;
    }

    .header-logo {
        position: absolute;
        left: 52%;
        top: 62%;
        transform: translate(-50%, -50%);
        height: 168px;
        margin: 0;
        z-index: 1;
    }

    .hamburger {
        position: absolute;
        top: 18px;
        right: 22px;
        display: flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        border-radius: 12px;
        box-shadow: none;
        z-index: 1100;
    }

    .hamburger span {
        width: 20px;
        background: #eaf6ff;
        box-shadow: none;
    }

    /* Mobile: Flaggenleiste verstecken, Toggle oben-links im Header */
    .lang-switcher {
        position: fixed;
        top: 0;
        left: 22px;
        right: auto;
        height: 74px;
        justify-content: flex-start;
        pointer-events: all;
        z-index: 1100;
    }

    .lang-flags-bar {
        display: none;
    }

    .lang-toggle {
        display: flex;
        align-items: center;
        gap: 2px;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 10px;
        padding: 6px 10px;
        cursor: pointer;
    }

    #lang-current-flag {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 3px;
        box-shadow: none;
    }

    /* Mobile Navigation als Burger-Dropdown in der Logo-Leiste */
    .navigation {
        position: fixed;
        top: 74px;
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        height: auto;
        max-height: calc(100svh - 108px);
        padding: 10px;
        background: #05060a;
        border: 1px solid #1a1c22;
        border-radius: 18px;
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        overflow-y: auto;
        z-index: 1090;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .navigation a {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navigation a.active:not([href="#start"]) {
        background: linear-gradient(180deg, rgba(0, 159, 227, 0.28), rgba(0, 116, 180, 0.17));
        border-color: rgba(0, 159, 227, 0.44);
        box-shadow: 0 8px 22px rgba(0, 159, 227, 0.2);
    }

    .mobile-bottom-nav {
        display: none;
    }

    /* HERO */
    .hero-section {
        margin-top: 124px;
        height: calc(100svh - 124px);
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 40px;
    }

    #unfall {
        margin-top: 0;
        scroll-margin-top: 124px;
        padding-top: 44px;
        padding-bottom: 16px;
        min-height: unset;
        overflow: hidden;
    }

    #leistungen, #ablauf, #bewertungen, #kontakt {
        padding-top: 30px;
        scroll-margin-top: 124px;
    }

    #statistiken {
        scroll-margin-top: 124px;
    }

    #leistungen {
        margin-top: 0;
    }

    .services-map-consent {
        min-height: 280px;
        padding: 18px;
    }

    .services-map-consent-box {
        padding: 22px 18px;
    }

    .services-map-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 12px 14px;
    }

    .services-map-info strong {
        font-size: 13px;
    }

    .hero-section h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .hero-subline {
        font-size: 15px;
        margin-top: 8px;
    }

    .hero-content {
        top: 0;
        padding: 0 5%;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: calc(100svh - 284px);
    }

    .hero-content .stats-band {
        order: 1;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .hero-content .cta-wrapper {
        order: 2;
    }

    .cta-wrapper {
        width: max-content;
        margin: 0 auto 0 8%;
        transform: none;
    }

    .cta-button {
        font-size: 16px;
        padding: 13px 22px;
    }

    .cta-button:hover {
        box-shadow: 0 0 30px rgba(0,159,227,0.95);
    }

    .cta-desktop { display: none; }
    .cta-mobile-btn { display: inline-flex; }

    .whatsapp-btn img {
        width: 70px;
        height: 70px;
    }

    .whatsapp-btn img:hover {
        filter: drop-shadow(0 0 20px rgba(0,255,0,0.85));
    }

    /* SECTIONS */
    section {
        padding: 70px 5% 60px;
        max-width: 100%;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .divider {
        margin-bottom: 14px;
    }

    .why-callout {
        padding: 16px 18px;
        gap: 12px;
    }

    .why-callout p {
        font-size: 14px;
    }

    /* WHY SECTION � APPLE SCROLL EFFECTS */
    .why-header {
        opacity: 0;
        transform: scale(0.78) translateY(50px);
        filter: blur(20px);
        transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .why-header.why-visible {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }

    .why-cards .why-card:nth-child(odd),
    .why-cards .why-card:nth-child(even) {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    /* WHY SECTION MOBILE */
    .why-section {
        display: block;
        margin-top: 0;
        padding: 56px 16px 48px;
        min-height: auto;
        overflow: visible;
    }

    .why-outer-layout {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        width: 100%;
    }

    .why-left {
        flex-direction: column;
        width: 100%;
        gap: 24px;
        padding: 0;
    }

    .why-header {
        position: static;
        text-align: center;
    }

    .why-header h2 {
        font-size: 25px;
        line-height: 1.2;
        white-space: normal;
        margin-bottom: 12px;
    }

    .why-header .section-sub {
        font-size: 13px;
        line-height: 1.55;
        text-align: center;
        margin: 0;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        transform: none;
    }

    .why-card {
        height: 185px;
        border-radius: 14px;
        isolation: isolate;
    }

    .why-card-inner {
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .why-card-front {
        position: absolute;
        inset: 0;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .why-card-back {
        position: absolute;
        inset: 0;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        display: flex;
    }

    .why-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px;
        padding-bottom: 8px;
        line-height: 1.3;
        position: relative;
        z-index: 1;
    }

    .why-card p {
        font-size: 13px;
        color: #c0cfdd;
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .why-illustration--desktop { display: none; }

    .why-illustration--mobile {
        display: block;
        width: 96%;
        margin: 60px auto 80px;
        border-radius: 16px;
        overflow: visible;
    }

    .why-illustration--mobile .why-illustration-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .section-sub { font-size: 14px; margin-bottom: 24px; }

    .info-stats-section {
        width: 100%;
        padding: 64px 16px 80px;
        overflow-x: hidden;
    }

    .info-live-card,
    .info-donut-card,
    .info-trend-card {
        display: none;
    }

    .info-kpi-grid .info-kpi-card:nth-child(5) {
        display: none;
    }


    .info-stats-section .section-heading {
        padding: 0;
        margin-bottom: 0;
    }

    .info-stats-section .section-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .info-stats-section .section-heading .section-sub {
        max-width: 100%;
        margin: 10px 0 24px;
        text-align: center;
    }

    .info-kpi-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 0;
    }

    .info-kpi-card {
        padding: 18px 18px 16px;
        border-radius: 14px;
    }

    .info-kpi-top {
        margin-bottom: 4px;
    }

    .info-stat-number {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .info-kpi-unit {
        font-size: 18px;
    }

    .info-kpi-label {
        font-size: 13px;
    }

    .info-kpi-source {
        font-size: 10.5px;
    }

    .info-bottom-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .info-live-card,
    .info-bars-card,
    .info-donut-card,
    .info-compare-card,
    .info-trend-card {
        width: 100%;
        min-width: 0;
        padding: 20px 18px;
        border-radius: 14px;
    }

    .info-live-card h3,
    .info-bars-card h3,
    .info-donut-card h3,
    .info-compare-card h3,
    .info-trend-card h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .live-big {
        justify-content: center;
    }

    .live-number {
        font-size: 46px;
    }

    .live-sub {
        text-align: center;
    }

    .live-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .live-fact-row {
        display: block;
        padding: 10px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
    }

    .live-fact-num,
    .live-fact-label {
        display: block;
    }

    .info-bar-list {
        gap: 12px;
    }

    .info-bar-header span:first-child,
    .info-bar-pct {
        font-size: 11.5px;
    }

    .info-donut-card {
        align-items: center;
    }

    .info-donut-ring {
        width: 142px;
        height: 142px;
        align-self: center;
        margin-bottom: 16px;
    }

    .info-donut-ring::before {
        width: 88px;
        height: 88px;
    }

    .info-donut-legend {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .info-donut-note {
        font-size: 12px;
        text-align: center;
    }

    .compare-row {
        gap: 8px;
        margin-bottom: 14px;
    }

    .compare-label {
        font-size: 12px;
    }

    .compare-bar-track {
        height: 28px;
    }

    .compare-bar span {
        right: 8px;
        font-size: 11px;
    }

    .compare-note,
    .cut-row,
    .trend-sub {
        font-size: 12px;
    }

    .trend-svg {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .trend-badge {
        display: inline-block;
        max-width: 100%;
        white-space: normal;
    }

    .services-slider-wrapper {
        gap: 12px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .service-card {
        padding: 24px 20px 28px;
    }

    .service-icon {
        display: none;
    }

    .card-checklist {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-text {
        gap: 10px;
    }

    .service-num {
        font-size: 10px;
        padding: 4px 12px;
    }

    .service-card h3 {
        font-size: 22px;
        letter-spacing: -0.5px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* BEWERTUNGEN */
    .reviews-section {
        padding: 50px 0;
    }

    .reviews-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .reviews-section .section-heading {
        padding: 0 5%;
        margin-bottom: 30px;
    }

    .review-card {
        width: 280px;
        padding: 18px 16px;
        gap: 10px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.55;
    }

    .review-stars {
        font-size: 14px;
    }

    .review-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .review-meta strong {
        font-size: 13px;
    }

    .review-meta span {
        font-size: 11px;
    }

    /* TIMELINE */
    #ablauf {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 24px;
    }

    .timeline-step {
        grid-template-columns: 36px 1fr;
        column-gap: 16px;
        row-gap: 4px;
        padding: 0 0 28px 0;
    }


    .process-timeline {
        position: relative;
    }

    .timeline-snake {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        overflow: visible;
    }

    .timeline-step:hover {
        transform: none;
        box-shadow: none;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .timeline-step h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 16px;
        margin-top: 6px;
        margin-bottom: 0;
    }

    .timeline-step p {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        line-height: 1.5;
        color: #c8d4e8;
        margin: 0;
    }

    /* STATS BAND */
    .stats-band {
        padding: 14px 12px;
        margin-top: -20px;
        margin-bottom: 0;
        border-radius: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 0;
    }

    .stat-item { padding: 8px 10px; }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item:nth-child(3)::after { display: none; }
    .stat-number { font-size: 28px; }
    .stat-suffix { font-size: 16px; }
    .stat-item p { font-size: 10px; letter-spacing: 0.3px; }

    /* FLOATING BUTTONS */
    .whatsapp-float { width: 50px; height: 50px; bottom: 28px; right: 20px; }
    .whatsapp-float img { width: 28px; height: 28px; }
    #back-to-top { bottom: 88px; right: 24px; width: 38px; height: 38px; font-size: 17px; }

    #cookie-banner {
        grid-template-columns: 1fr;
        align-items: stretch;
        bottom: 104px;
        width: calc(100% - 28px);
        padding: 16px;
        gap: 14px;
    }

    .cookie-actions {
        justify-content: space-between;
    }

    #cookie-ok {
        min-width: 132px;
    }

    /* KONTAKT FORMULAR */
    .kontakt-layout {
        flex-direction: column;
    }

    .damage-card-small {
        width: 100%;
        margin: 0;
        padding: 28px 20px;
    }

    .contact-map {
        height: 200px;
        min-height: 200px;
    }

    .contact-map .services-map {
        height: 420px;
    }

    /* FOOTER */
    .footer {
        padding: 10px 5% 80px;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-logo {
        width: 220px;
        height: 150px;
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
    }

    .footer p,
    .footer-links {
        margin: 0;
    }

    /* LEGAL PAGES */
    .legal-section {
        margin: 120px auto 60px;
        padding: 0 5%;
    }

    .legal-section h1 {
        font-size: 32px;
    }

    .legal-box {
        padding: 22px 16px;
        font-size: 15px;
    }
}

/* ======================== LOGO INTRO ======================== */
#logo-intro {
    position: fixed;
    inset: 0;
    background: #0a0e14;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#intro-logo {
    height: 600px;
    max-width: 90vw;
    object-fit: contain;
    opacity: 0;
    transform-origin: center center;
}


