/* === AutoCentrum Delligsen - Stylesheet === */
:root {
    --white: #FFFFFF;
    --light: #F7F8FA;
    --blue: #2C5F7C;
    --blue-hover: #224D66;
    --blue-light: #EAF1F5;
    --red: #A52422;
    --anthrazit: #2D3436;
    --anthrazit-light: #636E72;
    --nav-dark: #1a2332;
    --border: #E8EAED;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--anthrazit); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === CONTAINER === */
.container {max-width: 1200px;margin: 0 auto;padding: 0 24px;}

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary {background: #2c5f7c;color: var(--white);border-color: #2c5f7c;}
.btn-primary:hover { background: #8C1E1C; border-color: #8C1E1C; }
.btn-outline { background: transparent; color: var(--anthrazit); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-accent { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-accent:hover { background: var(--blue-light); }
.btn-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-glass { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--anthrazit); padding: 16px 24px; display: none; }
.cookie-banner.show { display: block; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-content p { color: rgba(255,255,255,0.8); font-size: 14px; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* === TOP BAR === */
.topbar { background: #E8EAED; color: var(--anthrazit-light); font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: var(--anthrazit-light); font-size: 12px; font-weight: 500; transition: color var(--transition); }
.topbar-item:hover { color: var(--anthrazit); }
.topbar-item svg { opacity: 0.6; flex-shrink: 0; }
.topbar-phone { color: var(--anthrazit); font-weight: 700; font-size: 13px; }
.topbar-divider { color: #ccc; font-size: 12px; }

/* === NAVBAR (Weiß) === */
.navbar { position: relative; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); }
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.navbar-inner { display: flex; align-items: center; padding: 14px 0; gap: 20px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {height: 40px;width: auto;}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links > a, .nav-dropdown-trigger { font-size: 14px; font-weight: 600; color: var(--anthrazit); padding: 10px 14px; border-radius: 8px; position: relative; transition: all var(--transition); display: inline-flex; align-items: center; gap: 5px; }
.nav-links > a:hover, .nav-dropdown-trigger:hover { color: var(--blue); background: var(--blue-light); }
.nav-links > a.active, .nav-dropdown-trigger.active { color: var(--blue); }
.nav-links > a.active::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--blue); border-radius: 1px; }
.nav-dropdown-trigger svg { transition: transform 0.2s ease; opacity: 0.5; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); min-width: 300px; padding: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.25s ease; z-index: 100; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 10px; transition: background var(--transition); }
.nav-dropdown-menu a:hover { background: var(--light); }
.dropdown-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; transition: all var(--transition); }
.nav-dropdown-menu a:hover .dropdown-icon { background: var(--blue); color: var(--white); }
.nav-dropdown-menu strong { display: block; font-size: 14px; font-weight: 600; color: var(--anthrazit); margin-bottom: 2px; }
.nav-dropdown-menu span { display: block; font-size: 12px; color: var(--anthrazit-light); }

/* CTA Nav Button */
.btn-cta-nav {background: #2c5f7c;color: var(--white);padding: 10px 24px;border-radius: 8px;font-weight: 600;font-size: 14px;border: 2px solid #ffffff;transition: all var(--transition);}
.btn-cta-nav:hover {background: #602726;border-color: #8C1E1C;}
.navbar-actions { display: flex; align-items: center; gap: 12px; margin-left: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; z-index: 1001; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--anthrazit); position: absolute; left: 0; transition: all var(--transition); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* === HERO (Zentriert mit Video-Hintergrund) === */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 136px); background: var(--anthrazit); display: flex; flex-direction: column; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; z-index: 1; }
.hero-image {position: absolute;top: -23px;left: 0;width: 100%;height: 100%;object-fit: fill;z-index: 1;}
.hero-overlay {position: absolute;inset: 0;z-index: 2;background: linear-gradient(180deg, rgba(8,12,22,0.15) 0%, rgba(12,18,30,0.1) 50%, rgba(20,30,50,0.2) 100%);}

.hero-centered {
    position: relative; z-index: 3; flex: 1;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 60px 24px 80px; max-width: 900px; margin: 0 auto;
}
.hero-tagline {
    display: inline-block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,0.2);
}
.hero-centered h1 { font-size: 54px; font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-logo-car {height: 130px;width: auto;display: inline-block;margin: 10px 0px 0 0;position: relative;top: 5px;}
.hero-brand {color: #2c2d31;}
.hero-brand-c {color: #c80f0b;}
.hero-brand-city {letter-spacing: 0.1em;display: inline-block;}
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; max-width: 560px; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }

/* Hero Google Rating */
.hero-google-badge { position: absolute; bottom: 60px; right: 32px; z-index: 5; }
.hero-google-rating { margin-bottom: 1.5rem; }
.google-rating-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    background: rgb(255 255 255 / 80%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: .75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.google-rating-wrapper:hover {
    background: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-decoration: none; color: inherit;
}
.google-logo { width: 20px; height: 20px; flex-shrink: 0; }
.rating-content { display: flex; align-items: center; gap: .5rem; }
.stars { display: flex; gap: 1px; align-items: center; }
.star { width: 16px; height: 16px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.rating-text { display: flex; align-items: center; gap: .25rem; line-height: 1; }
.rating-number { font-size: 1.1rem; font-weight: 700; color: var(--anthrazit); }
.rating-subtitle { font-size: .7rem; color: var(--anthrazit-light); line-height: 1.3; }

/* Hero Service Buttons */
.hero-services-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.hero-service-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 10px;
    background: rgba(255,255,255,0.1); color: var(--white);
    font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px); transition: all 0.25s ease;
}
.hero-service-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.hero-service-btn svg { opacity: 0.8; }

.hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white); padding: 16px 32px;
    border-radius: 10px; font-weight: 700; font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3); transition: all 0.25s ease; cursor: pointer;
}
.btn-hero-primary:hover { background: #8C1E1C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(165,36,34,0.4); }
.btn-hero-primary svg { transition: transform 0.25s ease; }
.btn-hero-primary:hover svg { transform: translateX(4px); }
.hero-phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white); font-size: 18px; font-weight: 700;
    transition: all 0.25s ease;
}
.hero-phone-link svg { opacity: 0.7; }
.hero-phone-link:hover { color: rgba(255,255,255,0.8); }
.hero-phone-link:hover svg { opacity: 1; }

/* === HERO BOOKING === */
.hero-booking {
    position: absolute;
    left: 40px;
    top: 47%;
    transform: translateY(-50%);
    z-index: 10;
    width: 420px;
    background: #f0f2f5f2;
    border-radius: 24px;
    padding: 0;
    color: var(--anthrazit);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
}
.hero-booking-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue); color: var(--white);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 8px 16px; border-radius: 50px;
    margin-bottom: 16px;
}
.hero-booking-badge svg { opacity: 0.8; }
.hero-booking-title {
    font-size: 26px; font-weight: 800; line-height: 1.2;
    margin-bottom: 10px; color: var(--anthrazit);
}
.hero-booking-desc {
    font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 24px;
}
.hero-booking > .hero-booking-badge,
.hero-booking > .hero-booking-title,
.hero-booking > .hero-booking-desc,
.hero-booking > .hero-booking-form {
    padding-left: 32px; padding-right: 32px;
}
.hero-booking > .hero-booking-badge {margin-top: 32px;position: relative;left: 15px;}
.hero-booking-form { display: flex; flex-direction: column; gap: 14px; padding-bottom: 24px; }
.hero-booking-field { display: flex; flex-direction: column; gap: 6px; }
.hero-booking-field label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: #555;
}
.hero-booking-field label svg { color: var(--blue); opacity: 0.7; }
.hero-booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-booking-form select,
.hero-booking-form input,
.hero-booking-form textarea {
    width: 100%; padding: 13px 16px; border-radius: 10px;
    border: 1px solid #dde0e5; background: var(--white);
    color: var(--anthrazit); font-size: 14px; font-family: inherit;
    transition: all 0.25s ease; outline: none;
}
.hero-booking-form textarea { resize: none; }
.hero-booking-form select option { background: var(--white); color: var(--anthrazit); }
.hero-booking-form select:focus,
.hero-booking-form input:focus,
.hero-booking-form textarea:focus {
    border-color: var(--blue); background: var(--white);
    box-shadow: 0 0 0 3px rgba(30,60,115,0.08);
}
.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder { color: #aaa; }
.hero-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #2c5f7c;
    color: var(--white);
    border: none;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 4px;
}
.hero-booking-btn:hover {background: #2c5f7c;transform: translateY(-2px);box-shadow: 0 8px 24px rgba(165,36,34,0.4);}
.hero-booking-btn svg { transition: transform 0.25s ease; }
.hero-booking-btn:hover svg { transform: translateX(3px); }
.hero-booking-footer {
    background: #e8eaef; padding: 18px 32px;
    display: flex; flex-wrap: wrap; gap: 12px 20px;
}
.hero-booking-trust {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #555;
}
.hero-booking-trust svg { color: #2eab5e; flex-shrink: 0; }

/* === STATS COUNTER === */
.stats-section { padding: 0; position: relative; z-index: 4; margin-top: -40px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    top: 40px;
}
.stat-item {
    padding: 36px 24px; text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--anthrazit-light); }

/* === SECTION LABEL === */
.section-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    color: var(--blue); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Booking Form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--anthrazit); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select {
    padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: inherit; color: var(--anthrazit);
    background: var(--white); transition: border-color 0.2s ease;
    width: 100%;
}
.form-group textarea {
    padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: inherit; color: var(--anthrazit);
    background: var(--white); transition: border-color 0.2s ease;
    width: 100%; resize: none; min-height: 88px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44,95,124,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8be; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* === TRUST BAR (im Hero, am unteren Rand) === */
.trust-bar { position: relative; z-index: 5; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.trust-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--anthrazit); }
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.section-header p { font-size: 16px; color: var(--anthrazit-light); max-width: 520px; margin: 0 auto; }

/* === DUAL SECTION === */
.dual-section { padding: 80px 0; background: var(--white); }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.dual-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; transition: all var(--transition); }
.dual-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.dual-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 2px solid var(--blue-light); }
.dual-card-header svg { color: var(--blue); flex-shrink: 0; }
.dual-card-header h3 { font-size: 22px; font-weight: 800; }
.dual-card > p { font-size: 15px; color: var(--anthrazit-light); line-height: 1.7; margin-bottom: 20px; }
.dual-list li { padding: 8px 0 8px 24px; font-size: 14px; position: relative; border-bottom: 1px solid var(--border); }
.dual-list li:last-child { border: none; }
.dual-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.dual-card .btn { margin-top: 20px; }

/* === SERVICES === */
.services { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; transition: all var(--transition); }
.service-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { color: var(--blue); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--anthrazit-light); line-height: 1.7; margin-bottom: 16px; }

/* === ABOUT TEASER === */
.about-teaser { padding: 100px 0; background: var(--light); }
.about-video-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; padding-top: 64px; }
.about-video-text h3 { font-size: 24px; font-weight: 800; color: var(--anthrazit); margin-bottom: 12px; }
.about-video-text p { font-size: 15px; color: var(--anthrazit-light); line-height: 1.7; }
.about-video-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-video { width: 100%; display: block; }
.about-inner { display: flex; align-items: stretch; gap: 60px; }
.about-image-wrapper { flex: 1; position: relative; }
.about-main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.about-founder-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--white); border-radius: var(--radius); padding: 16px 20px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.about-founder-card .founder-info strong { display: block; font-size: 15px; font-weight: 700; color: var(--anthrazit); }
.about-founder-card .founder-info span { font-size: 12px; color: var(--anthrazit-light); }
.about-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: 34px; font-weight: 800; margin-bottom: 20px; }
.about-text > p { font-size: 16px; color: var(--anthrazit-light); line-height: 1.7; margin-bottom: 28px; }

/* About Feature Boxes */
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.about-feature-box {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px; background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.about-feature-box svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.about-feature-box strong { display: block; font-size: 15px; font-weight: 700; color: var(--anthrazit); margin-bottom: 2px; }
.about-feature-box span { font-size: 13px; color: var(--anthrazit-light); }

/* === SERVICES V2 (4 Columns) === */
.services { padding: 100px 0; background: var(--white); }
/* Service Carousel (3D Center) */
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.carousel-stage {
    position: relative; width: 100%; height: 420px; perspective: 1200px;
    overflow: hidden;
}
.carousel-card {
    position: absolute; width: 380px; height: 380px; border-radius: 20px;
    top: 50%; left: 50%; text-decoration: none; color: inherit;
    display: flex; align-items: flex-end; overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0; z-index: 1; pointer-events: none;
}
.carousel-card.active {
    transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; pointer-events: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.carousel-card.prev {
    transform: translate(calc(-50% - 320px), -50%) scale(.78) rotateY(8deg);
    opacity: .6; z-index: 2; pointer-events: none;
}
.carousel-card.next {
    transform: translate(calc(-50% + 320px), -50%) scale(.78) rotateY(-8deg);
    opacity: .6; z-index: 2; pointer-events: none;
}
.carousel-card.far-prev {
    transform: translate(calc(-50% - 560px), -50%) scale(.6) rotateY(12deg);
    opacity: .25; z-index: 1; pointer-events: none;
}
.carousel-card.far-next {
    transform: translate(calc(-50% + 560px), -50%) scale(.6) rotateY(-12deg);
    opacity: .25; z-index: 1; pointer-events: none;
}
.svc-slide-werkstatt { background: linear-gradient(145deg, #2D3436, #1a1a2e); }
.svc-slide-reifen { background: linear-gradient(145deg, #A52422, #6b1614); }
.svc-slide-hu { background: linear-gradient(145deg, #2c5f7c, #1a3a4f); }
.svc-slide-handel { background: linear-gradient(145deg, #1a1a2e, #2D3436); }
.svc-slide-flat { background: linear-gradient(145deg, #3a6b4f, #1e3b2a); }
.svc-slide-unfall { background: linear-gradient(145deg, #5a3e2b, #3a2518); }
.carousel-card-icon {
    position: absolute; top: 0; left: 0; right: 0; bottom: 35%; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.12);
}
.carousel-card-icon svg { width: 130px; height: 130px; }
.carousel-card-content {
    padding: 32px; width: 100%; position: relative; z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.carousel-card-content h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.carousel-card-content p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.carousel-card-link {
    display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700;
    color: #fff; opacity: .7;
}
.carousel-card.active .carousel-card-link { opacity: 1; }
.carousel-btn {
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5; flex-shrink: 0; transition: all .2s;
    color: var(--anthrazit);
}
.carousel-btn:hover { background: var(--anthrazit); color: var(--white); border-color: var(--anthrazit); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--border);
    border: none; cursor: pointer; transition: all .3s; padding: 0;
}
.carousel-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* Legacy icon grid fallback */
.services-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 24px; }
.service-icon-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; text-decoration: none; color: inherit; }
.service-icon-circle { width: 80px; height: 80px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.service-icon-circle svg { width: 32px; height: 32px; color: var(--anthrazit); }
.service-icon-circle:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.service-icon-item span { font-size: 14px; font-weight: 600; color: var(--anthrazit); }

.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card-v2 {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 24px; transition: all var(--transition); position: relative;
}
.service-card-v2:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-6px); }
.service-icon-v2 {
    width: 64px; height: 64px; border-radius: 14px; background: var(--blue-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    transition: all var(--transition);
}
.service-icon-v2 svg { color: var(--blue); transition: color var(--transition); }
.service-card-v2:hover .service-icon-v2 { background: var(--blue); }
.service-card-v2:hover .service-icon-v2 svg { color: var(--white); }
.service-card-v2 h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card-v2 p { font-size: 14px; color: var(--anthrazit-light); line-height: 1.7; margin-bottom: 16px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--blue);
    transition: all var(--transition);
}
.service-link:hover { gap: 10px; color: var(--blue-hover); }

/* === WHY CHOOSE US === */
.why-us { padding: 100px 0; background: linear-gradient(135deg, var(--anthrazit) 0%, #1b1f21 50%, #16191b 100%); }
.why-us-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-logo { max-width: 200px; height: auto; margin-bottom: 24px; }
.why-us-content .section-label { color: rgba(255,255,255,0.5); }
.why-us-content h2 { font-size: 34px; font-weight: 800; color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.why-us-highlight {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px; background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px;
}
.why-highlight-number { font-size: 48px; font-weight: 800; color: var(--red); line-height: 1; flex-shrink: 0; }
.why-us-highlight strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-us-highlight p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.why-us-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-feature {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: rgba(255,255,255,0.05); border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.why-feature svg { color: var(--white); flex-shrink: 0; opacity: 0.8; }
.why-feature span { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Why Us Stats Cards */
.why-us-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
    transition: all var(--transition);
}
.why-stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-stat-card.accent { background: var(--blue); border-color: var(--blue); }
.why-stat-number { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.why-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }
.why-stat-card.accent .why-stat-label { color: rgba(255,255,255,0.85); }

/* === PRESS / BEKANNT AUS (inside why-us) === */
.why-us-press { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.why-press-label { text-align: center; }
.why-press-label .section-label { color: rgba(255,255,255,0.5); }
.why-press-label h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-press-label p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
.press-image-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}
.press-cover-img {
    max-width: 360px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(59, 130, 246, 0.08);
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.press-cover-img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(59, 130, 246, 0.12);
}

/* === PRICING === */
.pricing { padding: 100px 0; }
.pricing.eflat-section .section-label { color: #4ecdc4; }
.pricing.eflat-section .section-header h2 { color: var(--white); }
.pricing.eflat-section .section-header p { color: rgba(255,255,255,0.6); }
.pricing.eflat-section .pricing-note { color: rgba(255,255,255,0.4); }
.pricing.eflat-section .pricing-card { background: var(--white); }
.pricing.eflat-section .pricing-card.featured:not(.eflat-battery) { border-color: var(--blue); }
/* === E-FLAT VERTICAL LAYOUT === */
.eflat-vertical-wrapper {
    display: flex; align-items: stretch; gap: 0; margin-top: 64px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.eflat-vertical-label {
    writing-mode: vertical-rl; text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 28px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
    color: #4ecdc4; background: rgba(78,205,196,0.08);
    padding: 32px 18px; display: flex; align-items: center; justify-content: center;
    border-right: 2px solid rgba(78,205,196,0.3); flex-shrink: 0;
    white-space: nowrap;
}
.eflat-vertical-content {
    flex: 1; padding: 40px 36px; min-width: 0;
}
.eflat-vertical-content .eflat-subheader { margin-top: 0; margin-bottom: 32px; text-align: left; }
.eflat-vertical-content .eflat-subheader h2 { color: var(--white); }
.eflat-vertical-content .eflat-subheader p { color: rgba(255,255,255,0.6); }
.eflat-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px;
}
@media (max-width: 768px) {
    .eflat-vertical-wrapper { flex-direction: column; }
    .eflat-vertical-label {
        writing-mode: horizontal-tb; transform: none;
        padding: 16px 24px; border-right: none; border-bottom: 2px solid rgba(78,205,196,0.3);
        font-size: 22px;
    }
    .eflat-vertical-content { padding: 24px 20px; }
    .eflat-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .eflat-features-grid { grid-template-columns: 1fr; }
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px 28px; text-align: center; transition: all var(--transition); position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: var(--white); font-size: 11px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-badge {
    display: inline-block; background: var(--blue-light); color: var(--blue);
    font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.pricing-card.featured .pricing-badge { background: var(--blue); color: var(--white); }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pricing-target { font-size: 13px; color: var(--anthrazit-light); margin-bottom: 16px; }
.pricing-includes { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 4px; text-align: left; }
.pricing-note { text-align: center; font-size: 13px; color: var(--anthrazit-light); margin-top: 24px; }
/* === E-FLAT SECTION === */
.eflat-section {
    background: linear-gradient(135deg, #0a1a2e 0%, #122a42 40%, #1a3d5c 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
/* Abstract background elements */
.eflat-section::before {
    content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
    animation: eglow1 14s ease-in-out infinite;
}
.eflat-section::after {
    content: ''; position: absolute; bottom: -15%; left: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(78,205,196,0.14) 0%, transparent 70%);
    animation: eglow2 18s ease-in-out infinite;
    border-radius: 50%; pointer-events: none;
}
.eflat-section .container { position: relative; z-index: 1; }
.eflat-bg-shapes {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.eflat-bg-shapes svg { position: absolute; opacity: 0.15; stroke: #4ecdc4; fill: none; stroke-width: 1.5; }
.eflat-bg-shapes .shape-1 { width: 350px; height: 350px; top: 5%; left: 3%; animation: efloat1 18s ease-in-out infinite; }
.eflat-bg-shapes .shape-2 { width: 250px; height: 250px; top: 60%; right: 5%; animation: efloat2 22s ease-in-out infinite; }
.eflat-bg-shapes .shape-3 { width: 300px; height: 300px; bottom: 5%; left: 20%; animation: efloat3 20s ease-in-out infinite; }
.eflat-bg-shapes .shape-4 { width: 220px; height: 220px; top: 10%; right: 20%; animation: efloat4 16s ease-in-out infinite; }
.eflat-bg-shapes .shape-5 { width: 400px; height: 400px; top: 30%; left: 50%; animation: efloat5 24s ease-in-out infinite; }

@keyframes eglow1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.7; }
}
@keyframes eglow2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(20px, -25px) scale(1.15); opacity: 0.6; }
}
@keyframes efloat1 {
    0%, 100% { transform: rotate(-15deg) translate(0, 0); opacity: 0.15; }
    50% { transform: rotate(-5deg) translate(20px, -15px); opacity: 0.2; }
}
@keyframes efloat2 {
    0%, 100% { transform: rotate(25deg) translate(0, 0); opacity: 0.15; }
    50% { transform: rotate(15deg) translate(-15px, 20px); opacity: 0.1; }
}
@keyframes efloat3 {
    0%, 100% { transform: rotate(10deg) translate(0, 0); opacity: 0.15; }
    50% { transform: rotate(18deg) translate(25px, 10px); opacity: 0.2; }
}
@keyframes efloat4 {
    0%, 100% { transform: rotate(-30deg) translate(0, 0); opacity: 0.12; }
    50% { transform: rotate(-20deg) translate(-10px, -20px); opacity: 0.18; }
}
@keyframes efloat5 {
    0%, 100% { transform: translateX(-50%) rotate(5deg) scale(1); opacity: 0.15; }
    50% { transform: translateX(-50%) rotate(-3deg) scale(1.05); opacity: 0.1; }
}
.eflat-section .section-label { color: #4ecdc4; }
.eflat-section .section-header h2 { color: var(--white); }
.eflat-section .section-header p { color: rgba(255,255,255,0.6); }
.eflat-section .pricing-note { color: rgba(255,255,255,0.4); }

/* === E-FLAT SHOWCASE === */
.eflat-showcase {
    display: flex; flex-direction: column; align-items: center; gap: 0;
}
.eflat-visual {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 20px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.eflat-visual:hover { border-color: #4ecdc4; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); background: rgba(255,255,255,0.1); }
.eflat-visual svg { width: 44px; height: 44px; color: #4ecdc4; margin-bottom: 10px; }
.eflat-visual span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.3; }
.eflat-card { width: 100%; max-width: 420px; transform: none; position: relative; margin: 0 auto; }

/* Battery shape */
.eflat-battery {
    border-radius: 20px; margin-top: 20px;
    border: 3px solid #4ecdc4;
    background: linear-gradient(180deg, var(--white) 0%, #f0faf9 100%);
}
.battery-terminal {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 14px;
    background: #4ecdc4; border-radius: 6px 6px 0 0;
}
.eflat-battery .pricing-badge { background: #4ecdc4; color: #0a1a2e; }
.eflat-battery .pricing-popular { background: #0a1a2e; color: #4ecdc4; }
.eflat-battery .btn-primary { background: #4ecdc4; color: #0a1a2e; border-color: #4ecdc4; }
.eflat-battery .btn-primary:hover { background: #3dbdb5; border-color: #3dbdb5; }
.eflat-battery .pricing-list li::before { color: #4ecdc4; }


.eflat-section .pricing-card { background: var(--white); }
.eflat-section .pricing-card.featured { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pricing-amount { font-size: 52px; font-weight: 800; color: var(--anthrazit); margin-bottom: 20px; line-height: 1; }
.pricing-amount span { font-size: 20px; font-weight: 600; color: var(--anthrazit-light); }
.pricing-list { text-align: left; margin-bottom: 24px; }
.pricing-list li { padding: 10px 0 10px 28px; font-size: 14px; position: relative; border-bottom: 1px solid var(--border); }
.pricing-list li:last-child { border: none; }
.pricing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* === FAQ SECTION === */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.faq-item.active { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: var(--white); border: none; cursor: pointer;
    font-family: inherit; font-size: 16px; font-weight: 600; color: var(--anthrazit);
    text-align: left; gap: 16px; transition: all var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question svg { flex-shrink: 0; color: var(--anthrazit-light); transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--blue); }
.faq-item.active .faq-question { color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--anthrazit-light); line-height: 1.7; }

/* === APPOINTMENT SECTION === */
.appointment-section { padding: 100px 0; background: var(--anthrazit); }
.appointment-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.appointment-logo {max-width: 200px;height: auto;margin-bottom: 20px;}
.appointment-info .section-label { color: rgba(255,255,255,0.5); }
.appointment-info h2 { font-size: 34px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.appointment-info > p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.appointment-contact-items { display: flex; flex-direction: column; gap: 20px; }
.appointment-contact-item {
    display: flex; align-items: flex-start; gap: 14px;
}
.appointment-contact-item svg { color: var(--white); flex-shrink: 0; margin-top: 2px; opacity: 0.8; }
.appointment-contact-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.appointment-contact-item a,
.appointment-contact-item span { font-size: 14px; color: rgba(255,255,255,0.6); }
.appointment-contact-item a:hover { color: var(--white); }
.appointment-form-wrapper {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-lg);
}

/* === PARTNERS (old) === */
.partners { padding: 60px 0; background: var(--white); border-top: 1px solid var(--border); }
.partner-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.partner-item {
    display: flex; align-items: center; justify-content: center;
    padding: 16px 32px; background: var(--light); border-radius: 10px;
    font-size: 15px; font-weight: 700; color: var(--anthrazit-light);
    border: 1px solid var(--border); min-width: 140px;
}

/* === PARTNERS SECTION (Das sind wir) === */
.partners-section {padding: 100px 0 0 0;background: var(--light);overflow: hidden;}
.partners-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.partners-header .section-label { color: var(--blue); }
.partners-header h2 { font-size: 34px; font-weight: 800; color: var(--anthrazit); margin-bottom: 24px; line-height: 1.2; }
.partners-header .text-highlight { color: var(--blue); }
.partners-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 24px; }
.partners-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 50px; padding: 8px 18px;
    font-size: 14px; font-weight: 600; color: var(--anthrazit);
}
.partners-badge svg { color: var(--blue); flex-shrink: 0; }
.partners-desc { font-size: 16px; color: var(--anthrazit-light); line-height: 1.7; }
.partners-slider { overflow: hidden; width: 100%; padding: 20px 0; }
.partners-track {
    display: flex; gap: 80px; align-items: center;
    animation: partners-scroll 30s linear infinite;
    width: max-content;
}
.partners-slide { flex-shrink: 0; }
.partners-slide img {
    width: 280px; height: 280px; object-fit: contain;
    filter: grayscale(100%); opacity: 0.5;
    transition: filter var(--transition), opacity var(--transition);
}
.partners-slide img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === ACTIONS === */
.actions {
    padding: 120px 0 280px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #f0f7ff 0%, #f7f8fa 40%, #fff5f5 100%);
}
.actions-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.actions-shape {
    position: absolute; fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.actions-shape-1 {
    width: 180px; height: 180px; top: 4%; left: 3%;
    stroke: var(--blue); stroke-width: 1; opacity: 0.12;
    animation: actSpin1 30s linear infinite;
}
.actions-shape-2 {
    width: 220px; height: 220px; top: -5%; right: 4%;
    stroke: var(--blue); stroke-width: 0.8; opacity: 0.1;
    animation: actSpin2 40s linear infinite;
}
.actions-shape-3 {
    width: 280px; height: 280px; bottom: -8%; left: -2%;
    stroke: var(--blue); stroke-width: 1.5; opacity: 0.08;
    animation: actSpin3 50s linear infinite;
}
.actions-shape-4 {
    width: 120px; height: 120px; top: 35%; right: 2%;
    stroke: var(--red); stroke-width: 1.2; opacity: 0.12;
    animation: actBob4 6s ease-in-out infinite;
}
.actions-shape-5 {
    width: 100px; height: 100px; top: 50%; left: 5%;
    stroke: #16a34a; stroke-width: 1.5; opacity: 0.14;
    animation: actPulse5 4s ease-in-out infinite;
}
.actions-shape-6 {
    width: 250px; height: 250px; bottom: 2%; right: -2%;
    stroke: none; fill: var(--blue); opacity: 0.06;
    animation: actDrift6 25s ease-in-out infinite;
}

@keyframes actSpin1 { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes actSpin2 { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }
@keyframes actSpin3 { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes actBob4 {
    0%,100% { transform: translateY(0); opacity: 0.12; }
    50% { transform: translateY(-12px); opacity: 0.18; }
}
@keyframes actPulse5 {
    0%,100% { transform: scale(1); opacity: 0.14; }
    50% { transform: scale(1.15); opacity: 0.22; }
}
@keyframes actDrift6 {
    0%,100% { transform: translate(0,0); opacity: 0.06; }
    50% { transform: translate(-15px, -10px); opacity: 0.1; }
}

.actions .container { position: relative; z-index: 1; }
.actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.action-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center; border: 1px solid var(--border);
    transition: all 0.4s ease; position: relative;
    display: flex; flex-direction: column; align-items: center;
}
.action-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-6px); border-color: transparent; }

.action-card-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--blue-light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; transition: all 0.4s ease;
}
.action-card-icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.action-card:hover .action-card-icon { background: var(--blue); transform: scale(1.1); }
.action-card:hover .action-card-icon svg { stroke: var(--white); }

.action-card-highlight {
    background: linear-gradient(160deg, var(--white) 0%, #f0f7ff 100%);
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(44,95,124,0.1);
}
.action-card-highlight .action-card-icon { background: var(--blue); }
.action-card-highlight .action-card-icon svg { stroke: var(--white); }
.action-card-highlight:hover .action-card-icon { background: var(--blue-hover); }

.action-badge {
    display: inline-block; background: var(--blue); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 4px 14px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px;
}
.action-badge-free { background: #16a34a; }

.action-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--anthrazit); }
.action-price { font-size: 44px; font-weight: 800; color: var(--blue); margin-bottom: 12px; line-height: 1; }
.action-price span { font-size: 16px; font-weight: 600; color: var(--anthrazit-light); }
.action-price-ab { font-size: 13px; font-weight: 500; color: var(--anthrazit-light); vertical-align: middle; }

.action-price-dual { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 12px; }
.action-price-item { text-align: center; }
.action-price-label { display: block; font-size: 11px; font-weight: 600; color: var(--anthrazit-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.action-price-value { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.action-price-value small { font-size: 13px; font-weight: 600; color: var(--anthrazit-light); }
.action-price-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.action-card p { font-size: 13px; color: var(--anthrazit-light); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.action-card .btn { margin-top: auto; }
.actions-deco-image { position: absolute; bottom: 0; right: 0; pointer-events: none; z-index: 0; }
.actions-deco-image img {width: 80%;height: auto;display: block;left: 250px;position: relative;top: 30px;}
@media (max-width: 1200px) { .actions-deco-image img {max-width: 90%;} }
@media (max-width: 768px) { .actions-deco-image { display: none; } }

/* === CONTACT TEASER === */
.contact-teaser { padding: 80px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border: none; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--blue); font-weight: 600; }
.contact-info p { margin-bottom: 16px; line-height: 1.7; }
.contact-phone { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.contact-email { font-size: 14px; color: var(--anthrazit-light); }
.contact-email:hover { color: var(--blue); }
.map-placeholder { border-radius: 12px; overflow: hidden; min-height: 200px; }
.map-consent { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 200px; background: var(--bg); border-radius: 12px; padding: 24px; gap: 12px; }
.map-consent-icon { color: var(--blue); opacity: 0.6; }
.map-consent-text { font-size: 13px; color: var(--anthrazit-light); line-height: 1.5; max-width: 280px; }
.map-consent-text a { color: var(--blue); text-decoration: underline; }
.map-consent-btn { background: var(--blue); color: var(--white); border: none; padding: 10px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.map-consent-btn:hover { background: var(--blue-dark, #1a5cb0); }

/* === CTA SECTION === */
.cta-section { padding: 0; margin: 0; }
.cta-inner { background: var(--anthrazit); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-text h2 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* === FOOTER === */
/* Footer */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.55); padding: 64px 0 0; }

/* Nav-Spalten */
.ft-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.ft-nav-col { display: flex; flex-direction: column; gap: 0; }
.ft-nav-col h5 { color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.ft-nav-col a { font-size: 14px; color: rgba(255,255,255,0.5); padding: 6px 0; transition: color .2s; display: block; }
.ft-nav-col a:hover { color: var(--white); }

/* Trennlinien */
.ft-rule { border: none; height: 1px; background: rgba(255,255,255,0.08); margin: 40px 0; }

/* Info-Zeile */
.ft-info { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.ft-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); }
.ft-info-item svg { opacity: .4; flex-shrink: 0; }
.ft-info-item a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color .2s; }
.ft-info-item a:hover { color: var(--white); }

/* Bottom */
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; }
.ft-logo { height: 28px; filter: brightness(0) invert(1); opacity: .5; }
.ft-bottom-center p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.ft-social { display: flex; gap: 6px; }
.ft-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; color: rgba(255,255,255,0.35); transition: all .2s; }
.ft-social a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* === HERO ENTRANCE ANIMATIONS === */
.hero-anim {
    opacity: 0; transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
}
.hero-anim-1 { animation-delay: 0.2s; }
.hero-anim-2 { animation-delay: 0.4s; }
.hero-anim-3 { animation-delay: 0.6s; }
.hero-anim-4 { animation-delay: 0.85s; }
.hero-anim-5 { animation-delay: 1.1s; }

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-50px) translateY(0); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(50px) translateY(0); }
.reveal-right.visible { transform: translateX(0); }

/* Staggered children */
.stagger-children > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.36s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.48s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* === IMAGE STRIP === */
.image-strip { padding: 0; overflow: hidden; }
.image-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.image-strip-item { overflow: hidden; height: 320px; }
.image-strip-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.image-strip-item:hover img { transform: scale(1.08); }

/* === VEHICLES PREVIEW === */
.vehicles-preview { padding: 100px 0; background: var(--light); overflow: hidden; }

.vehicles-ticker-wrapper { position: relative; margin: 40px 0 32px; }
.vehicles-ticker-wrapper::before,
.vehicles-ticker-wrapper::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.vehicles-ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.vehicles-ticker-wrapper::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.vehicles-ticker { overflow: hidden; }
.vehicles-ticker-track {
    display: flex; gap: 24px; width: max-content;
    animation: vehicleTicker 45s linear infinite;
}
.vehicles-ticker-track:hover { animation-play-state: paused; }

@keyframes vehicleTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.vehicle-card {
    flex-shrink: 0; width: 300px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.3s ease; text-decoration: none; color: inherit;
    display: block;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--blue);
}
.vehicle-card-img { position: relative; height: 200px; overflow: hidden; background: #f0f0f0; }
.vehicle-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-card-noimg {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: #ccc;
}
.vehicle-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--white); color: var(--anthrazit);
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vehicle-card-body { padding: 20px; }
.vehicle-card-brand {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--blue); margin-bottom: 4px;
}
.vehicle-card-model {
    font-size: 15px; font-weight: 600; color: var(--anthrazit); margin-bottom: 12px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vehicle-card-specs {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.vehicle-card-specs span {
    font-size: 12px; color: #777; font-weight: 500;
    background: var(--light); padding: 4px 8px; border-radius: 4px;
}
.vehicle-card-price {
    font-size: 20px; font-weight: 800; color: var(--anthrazit);
}

/* === VEHICLE SELLING POINTS === */
.vehicles-selling-points {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 32px;
}
.vsp-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.3s ease;
}
.vsp-item:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.vsp-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.vsp-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--anthrazit); margin-bottom: 2px; }
.vsp-item span { font-size: 13px; color: var(--anthrazit-light); line-height: 1.4; }

@media (max-width: 640px) {
    .vehicles-selling-points { grid-template-columns: 1fr; }
}

.vehicles-preview-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* === NEUFAHRZEUGE BANNER === */
.newcar-banner { padding: 0 0 60px; }
.newcar-banner-inner {
    display: flex; align-items: center; gap: 32px;
    background: linear-gradient(135deg, var(--blue) 0%, #1a4a5e 100%);
    color: var(--white); padding: 40px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(44, 95, 124, 0.25);
}
.newcar-banner-icon {
    flex-shrink: 0; width: 80px; height: 80px;
    background: rgba(255,255,255,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.newcar-banner-icon svg { stroke: var(--white); }
.newcar-banner-content { flex: 1; }
.newcar-banner-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.newcar-banner-content p { font-size: 15px; opacity: 0.9; line-height: 1.6; margin: 0; }
.newcar-banner .btn-primary {
    flex-shrink: 0; background: var(--white); color: var(--blue);
    border-color: var(--white); font-weight: 700; white-space: nowrap;
}
.newcar-banner .btn-primary:hover { background: var(--light); border-color: var(--light); }

@media (max-width: 768px) {
    .newcar-banner-inner { flex-direction: column; text-align: center; padding: 32px 24px; gap: 20px; }
    .newcar-banner-icon { width: 64px; height: 64px; }
    .newcar-banner-icon svg { width: 36px; height: 36px; }
}

/* === STAT ICONS === */
.stat-icon { width: 28px; height: 28px; stroke: var(--blue); margin-bottom: 8px; }
.stat-item .stat-seal ~ .stat-icon, .stat-item:has(.stat-seal) .stat-icon { width: 44px; height: 44px; }
.stat-seal { font-size: 15px; font-weight: 700; color: var(--blue); line-height: 1.2; }
.why-stat-icon { width: 24px; height: 24px; stroke: rgba(255,255,255,0.5); margin-bottom: 8px; }
.why-stat-card.accent .why-stat-icon { width: 40px; height: 40px; stroke: rgba(255,255,255,0.85); }
.why-stat-card.accent .why-stat-number { font-size: 16px; }

/* === ABOUT SECONDARY IMAGE === */
.about-secondary-img {
    position: absolute; bottom: -30px; left: -30px; width: 180px; height: 180px;
    object-fit: cover; border-radius: var(--radius); border: 4px solid var(--white);
    box-shadow: var(--shadow-lg); z-index: 2;
}

/* === PARALLAX STATS === */
.stats-grid .stat-item { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stats-grid .stat-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 1; position: relative; }

/* === FLATPICKR OVERRIDES === */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #b0b0b0;
    background: #f0f0f0;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* === RESPONSIVE === */
/* === RESPONSIVE: 1800px - Hero Content nach rechts verschieben === */
@media (max-width: 1800px) {
    .hero-centered { margin-left: 480px; margin-right: auto; max-width: 750px; padding: 50px 24px 60px; }
    .hero-centered h1 { font-size: 48px; }
    .hero-subtitle { font-size: 17px; max-width: 520px; }
    .hero-services-row { gap: 10px; }
    .hero-service-btn { padding: 12px 18px; font-size: 13px; }
    .hero-cta-row { gap: 16px; }
    .btn-hero-primary { padding: 14px 24px; font-size: 14px; }
}

/* === RESPONSIVE: 1500px - kompakter === */
@media (max-width: 1500px) {
    .hero-booking { width: 380px; left: 30px; }
    .hero-centered { margin-left: 440px; max-width: 680px; }
    .hero-centered h1 { font-size: 42px; }
    .hero-subtitle { font-size: 16px; max-width: 480px; }
    .hero-service-btn { padding: 10px 16px; font-size: 12px; gap: 8px; }
    .hero-service-btn svg { width: 18px; height: 18px; }
}

/* === RESPONSIVE: 1280px - Booking-Widget schmaler === */
@media (max-width: 1280px) {
    .hero-booking { width: 350px; left: 20px; }
    .hero-booking-title { font-size: 22px; }
    .hero-booking > .hero-booking-badge,
    .hero-booking > .hero-booking-title,
    .hero-booking > .hero-booking-desc,
    .hero-booking > .hero-booking-form { padding-left: 20px; padding-right: 20px; }
    .hero-booking-footer { padding: 14px 20px; }
    .hero-centered { margin-left: 390px; max-width: 600px; }
    .hero-centered h1 { font-size: 38px; }
    .hero-services-row { flex-wrap: wrap; gap: 8px; }
    .hero-service-btn { padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 1024px) {
    .hero-booking { display: none; }
    .hero-centered { margin-left: auto; margin-right: auto; max-width: 900px; padding: 50px 24px 60px; }
    .hero-centered h1 { font-size: 46px; }
    .hero-subtitle { font-size: 17px; max-width: 500px; }
    .hero-services-row { gap: 10px; flex-wrap: wrap; }
    .hero-service-btn { padding: 12px 18px; font-size: 13px; }

    .carousel-card { width: 300px; height: 320px; }
    .carousel-card.prev { transform: translate(calc(-50% - 240px), -50%) scale(.78) rotateY(8deg); }
    .carousel-card.next { transform: translate(calc(-50% + 240px), -50%) scale(.78) rotateY(-8deg); }
    .carousel-card.far-prev, .carousel-card.far-next { opacity: 0; }
    .services-icon-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-us-layout { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .appointment-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-inner { grid-template-columns: 1fr; }
    .ft-nav { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ft-info { flex-direction: column; gap: 12px; }
    .ft-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .navbar-inner { padding: 10px 0; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 999; padding: 24px; }
    .nav-links.open { display: flex; }
    .nav-links > a, .nav-dropdown-trigger { font-size: 18px; padding: 12px 16px; color: var(--anthrazit); }
    .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; min-width: auto; padding: 0 0 0 20px; }
    .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
    .navbar-actions { display: none; }
    .hamburger { display: block; margin-left: auto; }

    .logo-img { height: 56px; }

    /* Hero Mobile */
    .hero { min-height: calc(100vh - 80px); min-height: calc(100svh - 80px); }
    .hero-centered { padding: 40px 20px 50px; }
    .hero-centered h1 { font-size: 32px; margin-bottom: 16px; }
    .hero-tagline { font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 10px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 28px; max-width: 100%; line-height: 1.6; }
    .hero-google-rating { margin-bottom: 1.2rem; }
    .google-rating-wrapper { padding: .6rem .8rem; }
    .google-logo { width: 18px; height: 18px; }
    .star { width: 14px; height: 14px; }
    .rating-number { font-size: 1rem; }
    .rating-subtitle { font-size: .65rem; }
    .hero-services-row { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 24px; }
    .hero-service-btn { justify-content: center; padding: 12px 16px; font-size: 13px; }
    .hero-cta-row { flex-direction: column; gap: 12px; }
    .btn-hero-primary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }
    .hero-phone-link { font-size: 16px; justify-content: center; }

    .stats-section { margin-top: -20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 24px 16px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-number { font-size: 32px; }
    .stat-seal { font-size: 14px; }

    .trust-inner { gap: 16px; }
    .trust-item { font-size: 12px; }

    .about-teaser, .services, .why-us, .pricing, .faq-section, .appointment-section, .vehicles-preview { padding: 60px 0; }
    .vehicle-card { width: 260px; }
    .vehicle-card-img { height: 160px; }
    .vehicles-preview-cta { flex-direction: column; align-items: stretch; }
    .about-inner { flex-direction: column; gap: 32px; }
    .about-video-section { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; }
    .about-founder-card { position: static; margin-top: 16px; display: inline-flex; }
    .about-secondary-img { position: static; width: 100%; height: 180px; margin-top: 12px; border: none; }
    .about-text h2 { font-size: 28px; }
    .about-features { flex-direction: column; }
    .image-strip-inner { grid-template-columns: 1fr; }
    .image-strip-item { height: 220px; }

    .carousel-stage { height: 340px; }
    .carousel-card { width: 260px; height: 280px; }
    .carousel-card.prev { transform: translate(calc(-50% - 180px), -50%) scale(.75) rotateY(6deg); }
    .carousel-card.next { transform: translate(calc(-50% + 180px), -50%) scale(.75) rotateY(-6deg); }
    .carousel-card.far-prev, .carousel-card.far-next { opacity: 0; }
    .carousel-card-icon svg { width: 80px; height: 80px; }
    .carousel-card-content { padding: 20px; }
    .carousel-card-content h3 { font-size: 18px; }
    .services-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .services-grid-4 { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 28px; }

    .why-us-layout { grid-template-columns: 1fr; }
    .why-us-content h2 { font-size: 28px; }
    .why-us-features { grid-template-columns: 1fr; }
    .why-us-stats { grid-template-columns: 1fr 1fr; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }

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

    .appointment-layout { grid-template-columns: 1fr; }
    .appointment-info h2 { font-size: 28px; }

    .partners-section { padding: 60px 0; }
    .partners-header h2 { font-size: 28px; }
    .partners-badges { gap: 10px; }
    .partners-badge { font-size: 13px; padding: 6px 14px; }
    .partners-slide img { width: 180px; height: 180px; }
    .partners-track { gap: 48px; }

    .contact-inner { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
    .ft-nav { grid-template-columns: 1fr; gap: 24px; }
    .cookie-content { flex-direction: column; text-align: center; }
}

/* === RESPONSIVE: Kleine Smartphones === */
@media (max-width: 480px) {
    .hero-centered { padding: 32px 16px 40px; }
    .hero-centered h1 { font-size: 26px; line-height: 1.15; margin-bottom: 12px; }
    .hero-tagline { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 12px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
    .hero-google-rating { margin-bottom: 1rem; }
    .google-rating-wrapper { padding: .5rem .7rem; gap: .35rem; }
    .star { width: 12px; height: 12px; }
    .rating-number { font-size: 0.9rem; }
    .hero-services-row { margin-bottom: 20px; }
    .hero-service-btn { padding: 10px 14px; font-size: 12px; gap: 8px; }
    .hero-service-btn svg { width: 18px; height: 18px; }
    .btn-hero-primary { padding: 12px 20px; font-size: 13px; }
    .hero-phone-link { font-size: 15px; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }
    .vehicle-card { width: 230px; }
    .vehicle-card-img { height: 140px; }
    .vehicle-card-body { padding: 14px; }
    .vehicle-card-price { font-size: 17px; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-number { font-size: 28px; }
    .stat-seal { font-size: 13px; }
    .stat-label { font-size: 11px; }
}

/* === RESPONSIVE: Sehr kleine Geräte === */
@media (max-width: 360px) {
    .hero-centered h1 { font-size: 23px; }
    .hero-subtitle { font-size: 13px; }
    .hero-service-btn { font-size: 11px; padding: 9px 12px; }
    .btn-hero-primary { font-size: 12px; padding: 11px 16px; }
}
