/* ============================================================
   AUTOWELT MONOPOLI – Hauptstylesheet
   Farben: Rot #C0000C | Schwarz #111111 | Weiß #FFFFFF
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --red:       #C0000C;
    --red-dark:  #900008;
    --red-light: #e8000f;
    --black:     #111111;
    --dark:      #1a1a1a;
    --dark-2:    #222222;
    --gray-dark: #333333;
    --gray:      #666666;
    --gray-light:#999999;
    --border:    #e0e0e0;
    --bg-light:  #f8f8f8;
    --white:     #ffffff;

    --font:      'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow:    0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --radius:    8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,0,12,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Sections Layout ---------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    background: rgba(192,0,12,0.1);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
}

.section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
}

.highlight { color: var(--red); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-header {
    position: fixed;
    top: 38px; /* unterhalb Topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
}

#navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--red);
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo img#nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Logo-Hover-Animation deaktiviert */

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--red);
    background: rgba(192,0,12,0.06);
}

.nav-links a.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links a.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192,0,12,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
    /* padding-top wird über Topbar-Block gesetzt: 118px Desktop, 80px Mobile */
}

/* Vollbild-Hintergrundbild */
#hero .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    z-index: 0;
    transform: scale(1.04);
    animation: heroBgZoom 8s ease forwards;
}

@keyframes heroBgZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(10,10,10,0.96) 0%,
            rgba(10,10,10,0.82) 40%,
            rgba(10,10,10,0.35) 70%,
            rgba(10,10,10,0.10) 100%
        ),
        linear-gradient(
            to top,
            rgba(10,10,10,0.85) 0%,
            transparent 40%
        );
    z-index: 1;
}

/* Subtle rotes Glow unten rechts */
#hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,0,12,0.18) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Animated background lines */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192,0,12,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192,0,12,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192,0,12,0.15);
    border: 1px solid rgba(192,0,12,0.4);
    color: var(--red-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* hero-image-wrap wird nicht mehr benötigt – Bild ist jetzt Vollbild-BG */
.hero-image-wrap { display: none; }
.hero-car-img { display: none; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-hint a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-scroll-hint a:hover { color: var(--red); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   USP BAR
   ============================================================ */
#usp-bar {
    background: var(--red);
    padding: 1.25rem 1.5rem;
}

.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
}

.usp-item i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.usp-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.35);
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--red), var(--black));
    z-index: -1;
}

.about-portrait {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border-radius: var(--radius-lg);
}

.about-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-width: 100px;
    z-index: 3;
}

.about-badge-overlay i {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.about-badge-overlay span {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    max-width: 90px;
}

.about-text .section-label { display: inline-block; margin-bottom: 0.75rem; }

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text strong { color: var(--dark); }

.about-signature {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.signature-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    font-style: italic;
}

.signature-sub {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
#leistungen {
    background: var(--bg-light);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.leistung-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.leistung-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.leistung-card:hover::before {
    transform: scaleX(1);
}

.leistung-icon {
    width: 56px;
    height: 56px;
    background: rgba(192,0,12,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.leistung-icon i {
    font-size: 1.4rem;
    color: var(--red);
}

.leistung-card:hover .leistung-icon {
    background: var(--red);
}

.leistung-card:hover .leistung-icon i {
    color: var(--white);
}

.leistung-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.leistung-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   ANKAUF FORMULAR
   ============================================================ */
#ankauf {
    background: var(--white);
}

.ankauf-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Info Spalte */
.ankauf-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.75rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.steps-list li > div strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.steps-list li > div p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.ankauf-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(192,0,12,0.05);
    border: 1px solid rgba(192,0,12,0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.ankauf-guarantee i {
    font-size: 1.5rem;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.ankauf-guarantee strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.ankauf-guarantee p {
    font-size: 0.83rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.ankauf-form-wrap {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

.form-section-title:first-child { margin-top: 0; }

.form-section-title i { color: var(--red); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0.95rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,0,12,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.form-group textarea { resize: vertical; min-height: 110px; }

/* Checkbox */
.form-checkbox { margin-top: 0.5rem; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    accent-color: var(--red);
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-label a { color: var(--red); text-decoration: underline; }

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: var(--radius);
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-message i { font-size: 1.1rem; flex-shrink: 0; }

.form-success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #166534;
}

.form-error {
    background: rgba(192,0,12,0.08);
    border: 1px solid rgba(192,0,12,0.3);
    color: var(--red-dark);
}

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt {
    background: var(--bg-light);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.kontakt-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.kontakt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(192,0,12,0.2);
}

.kontakt-icon {
    width: 60px;
    height: 60px;
    background: rgba(192,0,12,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.kontakt-icon i {
    font-size: 1.3rem;
    color: var(--red);
}

.kontakt-card:hover .kontakt-icon {
    background: var(--red);
}
.kontakt-card:hover .kontakt-icon i {
    color: var(--white);
}

.kontakt-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.kontakt-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.kontakt-link {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    word-break: break-all;
}

.kontakt-link:hover { color: var(--red-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand img.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-links h4,
.footer-leistungen h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links ul li,
.footer-leistungen ul li {
    margin-bottom: 0.6rem;
    font-size: 0.87rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--red-light);
    padding-left: 4px;
}

.footer-leistungen ul li {
    color: rgba(255,255,255,0.65);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact ul li i {
    color: var(--red);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact ul li a {
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-contact ul li a:hover { color: var(--red-light); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

.footer-legal a:hover { color: var(--red-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(192,0,12,0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    font-size: 0.9rem;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
    .kontakt-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .about-portrait { height: 420px; }
    .nav-links li a { font-size: 0.85rem; padding: 0.4rem 0.7rem; }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* ----- NAVBAR ----- */
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 1rem 1rem;
        gap: 0.15rem;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-bottom: 3px solid var(--red);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 1rem;
        color: var(--gray-dark);
        font-size: 0.95rem;
        border-radius: var(--radius);
    }

    .nav-links a.nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-logo img#nav-logo-img { height: 52px; }

    /* ----- HERO ----- */
    .hero-content { text-align: center; padding: 2rem 1.25rem; }
    .hero-inner { max-width: 100%; }
    .hero-logo-wrap { display: flex; justify-content: center; }
    .hero-logo { height: 72px; }
    .hero-badge { font-size: 0.72rem; }
    .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .hero-sub { margin: 0 auto 2rem; font-size: 1rem; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }
    .hero-stats { margin-top: 2rem; padding: 1rem; }
    .hero-stat { padding: 0.4rem 0.75rem; }
    .hero-stat strong { font-size: 1.3rem; }
    .hero-stat-divider { display: none; }
    .hero-scroll-hint { bottom: 1.5rem; }

    /* ----- USP BAR ----- */
    .usp-container { flex-wrap: wrap; gap: 0; }
    .usp-divider { display: none; }
    .usp-item { padding: 0.5rem 1rem; font-size: 0.8rem; width: 50%; justify-content: center; }

    /* ----- ÜBER UNS ----- */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-portrait { height: 380px; object-position: center 12%; }
    .about-secondary-img img { height: 160px; }
    .about-badge-overlay { right: 1rem; }
    .about-text h2 { font-size: 1.8rem; }

    /* ----- LEISTUNGEN ----- */
    .leistungen-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .leistung-card { padding: 1.5rem; }

    /* ----- BESTAND ----- */
    .bestand-content { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
    .bestand-title { font-size: 1.8rem; }
    .bestand-card-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .bestand-info-card { padding: 1.1rem 0.9rem; }
    .bestand-actions { flex-direction: column; }
    .bestand-actions .btn { width: 100%; justify-content: center; }
    .bestand-bg-img { background-attachment: scroll; }

    /* ----- ANKAUF ----- */
    .ankauf-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .ankauf-form-wrap { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .ankauf-contact-direct { flex-direction: column; }
    .ankauf-contact-direct .btn { width: 100%; }

    /* ----- FAQ ----- */
    .faq-grid { grid-template-columns: 1fr; gap: 0.6rem; }
    .faq-question { padding: 1rem 1.25rem; font-size: 0.9rem; }
    .faq-answer p { padding: 0 1.25rem 1.2rem; }

    /* ----- KONTAKT ----- */
    .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .kontakt-card { padding: 1.5rem 1rem; }

    /* ----- FOOTER ----- */
    .footer-container { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 1.25rem 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; padding: 1.25rem; }
    .footer-legal { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .footer-brand p { max-width: 100%; }

    /* ----- FLOAT BUTTONS ----- */
    #whatsapp-float { bottom: 5rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.4rem; }
    .wa-tooltip { display: none; }
    #back-to-top { bottom: 1.5rem; right: 1.25rem; width: 44px; height: 44px; }

    /* ----- MODAL ----- */
    .modal { padding: 0; align-items: flex-end; }
    .modal-box { max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .modal-header { padding: 1.25rem; }
    .modal-body { padding: 1.25rem; }

    /* ----- SECTION CONTAINER ----- */
    .section-container { padding: 3.5rem 1.25rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.7rem; }
    .section-sub { font-size: 0.95rem; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

    /* ----- HERO ----- */
    .hero-content { padding: 1.5rem 1rem; }
    .hero-logo { height: 60px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-stats { gap: 0; }
    .hero-stat { flex: 0 0 50%; padding: 0.5rem 0.5rem; }
    .hero-stat strong { font-size: 1.2rem; }

    /* ----- USP ----- */
    .usp-item { width: 100%; padding: 0.5rem 1rem; font-size: 0.82rem; }

    /* ----- ABOUT ----- */
    .about-portrait { height: 320px; object-position: center 10%; }
    .about-badge-overlay { right: 0.5rem; padding: 0.6rem 0.8rem; min-width: 80px; }
    .about-badge-overlay span { font-size: 0.7rem; }
    .about-badge-overlay i { font-size: 1.1rem; }

    /* ----- LEISTUNGEN ----- */
    .leistungen-grid { grid-template-columns: 1fr; }

    /* ----- BESTAND ----- */
    .bestand-card-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .bestand-info-card { padding: 0.9rem 0.7rem; }
    .bestand-info-card i { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .bestand-info-card strong { font-size: 0.82rem; }
    .bestand-info-card p { font-size: 0.75rem; }

    /* ----- KONTAKT ----- */
    .kontakt-grid { grid-template-columns: 1fr; }

    /* ----- BUTTONS ----- */
    .btn { padding: 0.8rem 1.5rem; font-size: 0.88rem; }
    .btn-lg { padding: 0.9rem 1.75rem; font-size: 0.95rem; }

    /* ----- FOOTER ----- */
    .footer-container { padding: 2rem 1rem 1.25rem; }

    /* ----- FLOATS ----- */
    #whatsapp-float { bottom: 4.5rem; right: 1rem; width: 48px; height: 48px; font-size: 1.3rem; }
    #back-to-top { bottom: 1.25rem; right: 1rem; width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
#topbar {
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 1rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-left a,
.topbar-left span,
.topbar-right a {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    white-space: nowrap;
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--red-light);
}

.topbar-left i,
.topbar-right i {
    font-size: 0.75rem;
    color: var(--red);
    flex-shrink: 0;
}

.topbar-right a:first-child {
    background: rgba(192,0,12,0.15);
    color: rgba(255,255,255,0.85);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(192,0,12,0.3);
}

.topbar-right a:first-child:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.topbar-right a:last-child {
    color: #25D366;
}

.topbar-right a:last-child i {
    color: #25D366;
    font-size: 0.9rem;
}

.topbar-right a:last-child:hover {
    color: #1ebe5d;
}

/* Hero padding-top: 38px Topbar + 90px Navbar */
#hero {
    padding-top: 128px;
}

@media (max-width: 768px) {
    #topbar { display: none; }
    #main-header { top: 0 !important; }
    #hero { padding-top: 90px; }
}

/* ============================================================
   HERO LOGO + STATS
   ============================================================ */
.hero-inner {
    max-width: 700px;
}

.hero-logo-wrap {
    margin-bottom: 1.75rem;
}

.hero-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6)) brightness(1.05);
}

/* Große Buttons */
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
}

/* Weißer Button */
.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    color: var(--red);
}

/* Outline-Light (auf dunklem Hintergrund) */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white);
}

/* Outline-Dark (auf hellem Hintergrund) */
.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--gray-dark);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    flex: 1;
    min-width: 80px;
}

.hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .hero-stats {
        gap: 0.75rem;
        padding: 1rem;
        justify-content: center;
    }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0.5rem 1rem; flex: 0 0 calc(50% - 1rem); }
    .hero-stat strong { font-size: 1.3rem; }
    .hero-logo { height: 70px; }
}

/* ============================================================
   ABOUT – Dual Image Layout
   ============================================================ */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.about-secondary-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-secondary-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-secondary-img:hover img {
    transform: scale(1.04);
}

.about-secondary-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 1.5rem 1rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-secondary-label i {
    color: var(--red-light);
}

/* About Values Checklist */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1.5rem 0 2rem;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.about-value i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================
   LEISTUNGEN – Link
   ============================================================ */
.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.leistung-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.leistung-link:hover {
    color: var(--red-dark);
    gap: 0.6rem;
}

.leistung-link:hover i {
    transform: translateX(3px);
}

/* ============================================================
   FAHRZEUGBESTAND SECTION
   ============================================================ */
#bestand {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.bestand-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    z-index: 0;
}

.bestand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,10,0.96) 0%,
        rgba(10,10,10,0.88) 50%,
        rgba(10,10,10,0.72) 100%
    );
    z-index: 1;
}

.bestand-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Section Label auf dunklem Hintergrund */
.section-label-light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
}

.bestand-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bestand-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.bestand-features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
}

.bestand-feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.bestand-feat i {
    color: var(--red);
    font-size: 0.85rem;
    flex-shrink: 0;
    background: rgba(192,0,12,0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestand-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Bestand Karten-Grid rechts */
.bestand-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bestand-info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.bestand-info-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(192,0,12,0.4);
    transform: translateY(-4px);
}

.bestand-info-card i {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: block;
}

.bestand-info-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.bestand-info-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .bestand-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .bestand-bg-img {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .bestand-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bestand-actions {
        flex-direction: column;
    }
    .bestand-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bestand-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .bestand-info-card {
        padding: 1rem 0.75rem;
    }
}

/* ============================================================
   ANKAUF – Background Image + Overlay
   ============================================================ */
#ankauf {
    position: relative;
    overflow: hidden;
}

.ankauf-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.ankauf-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248,248,248,0.97);
    z-index: 1;
}

.ankauf-content {
    position: relative;
    z-index: 2;
}

/* Direkte Kontaktoptionen im Ankauf */
.ankauf-contact-direct {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ankauf-contact-direct p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    margin: 0 0 0.25rem;
}

.ankauf-contact-direct .btn {
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
#faq {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(192,0,12,0.2);
}

.faq-item.open {
    border-color: rgba(192,0,12,0.35);
    box-shadow: 0 4px 20px rgba(192,0,12,0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background: rgba(192,0,12,0.03);
    color: var(--red);
}

.faq-item.open .faq-question {
    background: rgba(192,0,12,0.04);
    color: var(--red);
}

.faq-question span {
    flex: 1;
    line-height: 1.45;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--gray);
    background: rgba(0,0,0,0.05);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
    background: var(--red);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

.faq-answer p a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOOTER LOGO IMAGE
   ============================================================ */
.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
    display: block;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-banner.cookie-visible {
    transform: translateY(0);
}

#cookie-banner.cookie-hiding {
    transform: translateY(110%);
    transition: transform 0.35s ease-in;
}

.cookie-inner {
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.18);
    border-top: 3px solid var(--red);
    padding: 1.5rem 2rem;
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.cookie-text strong i {
    color: var(--red);
    font-size: 1.1rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.cookie-text p a {
    color: var(--red);
    text-decoration: underline;
}

.cookie-text { flex: 1; min-width: 260px; }

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font);
}

.cookie-btn-accept {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.cookie-btn-accept:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192,0,12,0.35);
}

.cookie-btn-info {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--border);
}

.cookie-btn-info:hover {
    border-color: var(--red);
    color: var(--red);
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; justify-content: center; }
}

/* ============================================================
   MOBILE.DE BUTTON
   ============================================================ */
.btn-mobilede {
    background: #fff;
    color: #003f7f;
    border-color: #003f7f;
    font-weight: 700;
}
.btn-mobilede:hover {
    background: #003f7f;
    color: #fff;
    border-color: #003f7f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,63,127,0.35);
}

/* ============================================================
   FAHRZEUGBESTAND BANNER
   ============================================================ */
#bestand-banner {
    background: linear-gradient(135deg, #003f7f 0%, #00285a 100%);
    padding: 1.5rem;
}

.bestand-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bestand-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.bestand-text i {
    font-size: 2rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.bestand-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.bestand-text p {
    font-size: 0.88rem;
    opacity: 0.8;
    margin: 0;
}

.bestand-btn {
    flex-shrink: 0;
    background: #fff !important;
    color: #003f7f !important;
    border-color: #fff !important;
}

.bestand-btn:hover {
    background: #e8f0ff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

/* ============================================================
   FOOTER BRAND NAME (ohne Logo)
   ============================================================ */
.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

/* ============================================================
   FOOTER LEGAL BUTTONS
   ============================================================ */
.footer-legal-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-family: var(--font);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.footer-legal-btn:hover { color: var(--red-light); }

/* ============================================================
   LINK-BUTTON (inline, wie Link aussehen)
   ============================================================ */
.link-btn {
    background: none;
    border: none;
    color: var(--red);
    font-family: var(--font);
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: var(--transition);
}
.link-btn:hover { color: var(--red-dark); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 900;
    transition: var(--transition);
    text-decoration: none;
}

#whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* Pulsierender Ring */
#whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37,211,102,0.25);
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.55); opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: var(--font);
}

#whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-visible .modal-backdrop {
    opacity: 1;
}

.modal-box {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
    overflow: hidden;
}

.modal-visible .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-hiding .modal-box {
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}

.modal-header h2 i { color: var(--red); }

.modal-close {
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
}

.modal-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 0.4rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--red);
}

.modal-body h3:first-of-type { margin-top: 0.75rem; }

.modal-body p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.modal-body a {
    color: var(--red);
    text-decoration: underline;
}

.modal-body em {
    color: var(--gray-light);
    font-size: 0.82rem;
}

.legal-date {
    margin-top: 1.5rem;
    font-size: 0.78rem !important;
    color: var(--gray-light) !important;
}

/* Body scroll lock */
body.modal-open { overflow: hidden; }

/* ============================================================
   RECHTLICHE SEITEN (impressum, datenschutz, agb)
   ============================================================ */
.legal-page {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-light);
}

.legal-hero {
    background: var(--black);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,0,12,0.08) 0%, transparent 70%);
}

.legal-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.legal-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.legal-content a {
    color: var(--red);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    text-decoration: none;
}

.legal-back:hover { gap: 0.75rem; }

.legal-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.legal-box p { margin: 0; }
