/* ==========================================
   Vendita! Reifen & Räderservice
   Markenfarbe: #A50000
   ========================================== */

:root {
    --red: #A50000;
    --red-dark: #7A0000;
    --red-light: #C81818;
    --red-glow: rgba(165, 0, 0, 0.45);
    --bg-dark: #0F0F12;
    --bg-dark-2: #16161B;
    --bg-card-dark: #1A1A1F;
    --bg-light: #F7F7F8;
    --bg-card-light: #FFFFFF;
    --text-dark: #0F0F12;
    --text-light: #F7F7F8;
    --text-muted: #6B7280;
    --text-muted-dark: #9CA3AF;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(15, 15, 18, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============== HEADER ============== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(15, 15, 18, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Solid Header Modifier – für Unterseiten ohne Hero (Impressum, Datenschutz, Kalkulator) */
.site-header.solid {
    background: rgba(15, 15, 18, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.logo .accent {
    color: var(--red);
    font-size: 1.9rem;
    line-height: 0;
}

.logo small {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.logo small .dot {
    color: var(--red-light);
    font-weight: 700;
    margin: 0 2px;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-list {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}

.nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.25s;
    padding: 0.4rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #fff;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-mobile {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 20px var(--red-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-light), var(--red));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--red-glow);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--text-dark);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(15, 15, 18, 0.15);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.15rem 2.25rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg-dark);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://vendita-reifen.de/wp-content/uploads/2024/07/Halle-InnenAnsicht-viel-1024x772.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: grayscale(60%) contrast(1.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(165, 0, 0, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(165, 0, 0, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 15, 18, 0.7) 0%, rgba(15, 15, 18, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(165, 0, 0, 0.12);
    border: 1px solid rgba(165, 0, 0, 0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
}

.hero-tag .pulse {
    width: 8px;
    height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--red-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 24, 24, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(200, 24, 24, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 24, 24, 0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: revealWord 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin-right: 0.25em;
}

.hero h1 .word.accent {
    color: var(--red-light);
    position: relative;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.25s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.4s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.55s; }
.hero h1 .word:nth-child(5) { animation-delay: 0.7s; }
.hero h1 .word:nth-child(6) { animation-delay: 0.85s; }

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

.hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-muted-dark);
    max-width: 640px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

.hero-meta-item i {
    color: var(--red-light);
    width: 18px;
    height: 18px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-align: center;
    animation: bounce 2.5s ease-in-out infinite;
}

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

/* ============== USP BAR ============== */
.usp-bar {
    background: var(--bg-dark-2);
    color: #fff;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
}

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

.usp-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.usp-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-dark);
}

.usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(165, 0, 0, 0.12);
    border: 1px solid rgba(165, 0, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
}

.usp-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.usp-label {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

/* ============== SECTIONS ============== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-dark);
    color: #fff;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 32px;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--red);
    transform: translateY(-50%);
}

.section-dark .eyebrow {
    color: var(--red-light);
}

.section-dark .eyebrow::before {
    background: var(--red-light);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-dark .section-sub {
    color: var(--text-muted-dark);
}

/* ============== SERVICE CARDS ============== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(165, 0, 0, 0.12);
    border-color: rgba(165, 0, 0, 0.2);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(165, 0, 0, 0.1), rgba(165, 0, 0, 0.03));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.service-card .badge-new {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.1em;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.92rem;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 0.85rem;
}

/* ============== DETAIL ROWS ============== */
.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.reverse {
    direction: rtl;
}

.detail-row.reverse > * {
    direction: ltr;
}

.detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.detail-image:hover img {
    transform: scale(1.05);
}

.detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(165, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.detail-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.25rem;
}

.detail-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.section-dark .detail-content p {
    color: var(--text-muted-dark);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 3px;
}

.section-dark .feature-list li i {
    color: var(--red-light);
}

/* ============== GALLERY (Werkstatt) ============== */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 560px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,15,18,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    font-size: 0.95rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============== SPECIAL: "Wo andere scheitern" ============== */
.expertise-section {
    background: var(--bg-dark);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(165, 0, 0, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.expertise-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.expertise-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.expertise-headline .highlight {
    color: var(--red-light);
    display: inline-block;
    position: relative;
}

.expertise-headline .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.expertise-lead {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.expertise-bang {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 30px var(--red-glow);
}

.expertise-bang strong {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.expertise-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-tag:hover {
    background: rgba(165, 0, 0, 0.15);
    border-color: rgba(165, 0, 0, 0.5);
    transform: translateY(-2px);
}

.expertise-tag i {
    width: 14px;
    height: 14px;
    color: var(--red-light);
}

/* ============== WDK CERTIFIED ============== */
.wdk-section {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
}

.wdk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px var(--red-glow);
}

.wdk-badge i {
    width: 16px;
    height: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(165, 0, 0, 0.2);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover .brand-name,
.brand-card:hover .brand-icon {
    color: #fff;
    position: relative;
    z-index: 1;
}

.brand-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.6rem;
    color: var(--red);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-sub {
    color: rgba(255, 255, 255, 0.85);
}

/* ============== EXTRA SERVICES (Ölwechsel/HU-AU) ============== */
.extra-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.extra-card {
    background: rgba(165, 0, 0, 0.04);
    border: 1px solid rgba(165, 0, 0, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.extra-card:hover {
    background: rgba(165, 0, 0, 0.08);
    border-color: rgba(165, 0, 0, 0.4);
    transform: translateY(-3px);
}

.extra-card-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.extra-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.extra-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.extra-badge-daily {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

/* ============== LEASING / SHUTTLE ============== */
.leasing-banner {
    background: linear-gradient(135deg, #1A1A1F 0%, #0F0F12 100%);
    color: #fff;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.leasing-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(165, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.leasing-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.leasing-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(165, 0, 0, 0.15);
    color: var(--red-light);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(165, 0, 0, 0.3);
}

.leasing-banner h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
}

.leasing-banner p {
    color: var(--text-muted-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.leasing-banner p strong {
    color: #fff;
}

.leasing-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.leasing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.leasing-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leasing-feature-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.leasing-feature-text span {
    color: var(--text-muted-dark);
    font-size: 0.82rem;
}

/* ============== CTA BANNER ============== */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #5a0000 100%);
    color: #fff;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 28px 28px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.cta-inner p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-banner .btn-primary::before {
    background: linear-gradient(135deg, #fff, #f5f5f5);
}

.cta-banner .btn-primary:hover {
    color: var(--red-dark);
}

.cta-banner .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
}

/* ============== CONTACT ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(4px);
    border-color: rgba(165, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(165, 0, 0, 0.06);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(165, 0, 0, 0.08);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.contact-card a, .contact-card p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.contact-card a:hover {
    color: var(--red);
}

.opening-hours {
    background: var(--bg-dark);
    color: #fff;
    padding: 2rem;
    border-radius: 14px;
}

.opening-hours h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.95rem;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours .day {
    color: var(--text-muted-dark);
}

.opening-hours .time {
    color: #fff;
    font-weight: 500;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    min-height: 500px;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

/* ============== FOOTER ============== */
.site-footer {
    background: #0A0A0D;
    color: var(--text-muted-dark);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--text-muted-dark);
    transition: color 0.25s;
    font-size: 0.92rem;
}

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

.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.footer-about {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom .made {
    color: var(--text-muted);
}

.footer-bottom .red-dot {
    color: var(--red-light);
}

/* ============== LEGAL PAGES ============== */
.legal-page {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-page .container {
    max-width: 880px;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-page .legal-sub {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.75;
}

.legal-page ul, .legal-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-dark);
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid var(--border-light);
}

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

/* ============== PREISKALKULATOR ============== */
.calc-page {
    padding-top: 0;
    background: var(--bg-light);
    min-height: 100vh;
}

.calc-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.calc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(165, 0, 0, 0.3) 0%, transparent 60%);
}

.calc-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.calc-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.calc-hero p {
    color: var(--text-muted-dark);
    font-size: 1.15rem;
}

.calc-progress-wrap {
    background: var(--bg-dark);
    padding-bottom: 0;
    position: relative;
}

.calc-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.calc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    width: 25%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px var(--red-glow);
}

.calc-main {
    padding: 4rem 0;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.calc-stage {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.calc-step {
    display: none;
    animation: stepIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-step.active {
    display: block;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calc-step-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.calc-step h2 {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.calc-step .step-sub {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.option-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.option-card {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    user-select: none;
}

.option-card:hover {
    border-color: rgba(165, 0, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(165, 0, 0, 0.08);
}

.option-card.selected {
    border-color: var(--red);
    background: rgba(165, 0, 0, 0.03);
    box-shadow: 0 8px 20px rgba(165, 0, 0, 0.12);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.option-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.option-price {
    margin-top: 0.6rem;
    font-weight: 700;
    color: var(--red);
    font-size: 0.95rem;
}

/* Quantity controls */
.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-light);
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.qty-btn:disabled {
    background: var(--text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* Summary panel */
.calc-summary {
    background: var(--bg-dark);
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.calc-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.summary-list {
    list-style: none;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.92rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    color: var(--text-muted-dark);
    flex: 1;
    padding-right: 1rem;
}

.summary-item .value {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.summary-empty {
    color: var(--text-muted-dark);
    font-style: italic;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.summary-total {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 14px;
    text-align: center;
}

.summary-total-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

.summary-total-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
}

.summary-disclaimer {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted-dark);
    text-align: center;
    line-height: 1.5;
}

.summary-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-reset {
    background: transparent;
    color: var(--text-muted-dark);
    border: 1px solid var(--border-dark);
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
}

.btn-reset:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Info-Box (z.B. Hinweise) */
.info-box {
    background: rgba(165, 0, 0, 0.06);
    border-left: 3px solid var(--red);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.info-box i {
    color: var(--red);
    margin-right: 0.5rem;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .calc-summary {
        position: static;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-wrap {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--border-dark);
    }
    .nav-list.open {
        display: flex;
    }
    .btn-mobile {
        display: block;
    }
    .header-cta {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .expertise-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .extra-services {
        grid-template-columns: 1fr;
    }
    .leasing-banner {
        padding: 2rem 1.5rem;
    }
    .leasing-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .detail-row, .detail-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .gallery-item {
        aspect-ratio: 4/3;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: auto;
    }
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .usp-item:not(:last-child)::after {
        display: none;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .section {
        padding: 4rem 0;
    }
    .calc-stage {
        padding: 1.75rem 1.5rem;
    }
    .option-grid.cols-2 {
        grid-template-columns: 1fr;
    }
    .summary-total-amount {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 3rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============== UTILITIES ============== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}
