/* ============================================
   RÜMPEL KAMERADEN – Stylesheet
   ============================================ */

:root {
    --color-black: #0a0a0a;
    --color-dark: #161616;
    --color-darker: #0d0d0d;
    --color-white: #ffffff;
    --color-orange: #ff6b1a;
    --color-orange-dark: #e55a0d;
    --color-orange-light: #ff8a47;
    --color-gray-50: #fafafa;
    --color-gray-100: #f4f4f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-500: #71717a;
    --color-gray-700: #3f3f46;
    --color-gray-900: #18181b;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 10px 30px rgba(255, 107, 26, 0.35);

    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --container-narrow: 860px;

    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}
body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    background: var(--color-white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /* clip statt hidden — sonst bricht position:sticky am Header auf Mobile */
    overflow-x: clip;
    width: 100%;
    position: relative;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, select, textarea, button { font: inherit; color: inherit; }

/* ============ UTILITIES ============ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }
.text-orange { color: var(--color-orange); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}
.btn[hidden] { display: none; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn--primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 107, 26, 0.45);
}
.btn--outline {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}
.btn--outline:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}
.btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
    background: #1ea952;
    border-color: #1ea952;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}
.section--cta .btn--outline,
.footer .btn--outline {
    color: var(--color-white);
    border-color: var(--color-white);
}
.section--cta .btn--outline:hover,
.footer .btn--outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}
.btn--large {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}
.btn--full {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-gray-200);
    transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }

/* === Top-Bar mit Telefon / WhatsApp / 24-7 === */
.header__top {
    background: var(--color-black);
    color: var(--color-white);
    border-bottom: 1px solid var(--color-orange);
    font-size: 0.75rem;
    line-height: 1.1;
}
.header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.15rem 0;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.header__avail {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    line-height: 1;
}
.header__avail-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.85);
    animation: availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}
.header__contacts {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.header__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-white);
    font-weight: 700;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
}
.header__contact:hover { color: var(--color-orange); transform: translateY(-1px); }
.header__contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.header__contact--whatsapp {
    background: #25D366;
    color: var(--color-white);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
}
.header__contact--whatsapp:hover {
    background: #1ea952;
    color: var(--color-white);
    transform: translateY(-1px);
}
/* WhatsApp im Top-Balken: nur Icon mit dezenter grüner Färbung
   — lenkt den Fokus auf den Haupt-CTA */
.header__contact--wa-icon {
    color: #25D366;
    padding: 0.15rem;
}
.header__contact--wa-icon svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}
.header__contact--wa-icon:hover {
    color: #1ea952;
    transform: translateY(-1px);
}
.header__contact--wa-icon .header__contact-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
@media (max-width: 768px) {
    .header__top { font-size: 0.78rem; }
    .header__top-inner {
        padding: 0.45rem 0;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* Kompakte 24/7-Pille auf Mobile — gleicher pulsierender Punkt */
    .header__avail {
        gap: 0.35rem;
        padding: 0.25rem 0.6rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.02em;
    }
    .header__avail-dot { width: 7px; height: 7px; }
    .header__avail-extra { display: none; }
    .header__contact strong { font-size: 0.85rem; }
    .header__contact--whatsapp { padding: 0.35rem 0.8rem; }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 80px;
}
.header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    overflow: hidden;
    height: 80px;
    transition: transform var(--transition);
}
.header__logo img {
    height: 100px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}
.header__logo:hover { transform: scale(1.04); }
.nav__list {
    display: flex;
    gap: 2rem;
}
.nav__cta { display: none; }
.nav__link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width var(--transition);
}
.nav__link:hover { color: var(--color-orange); }
.nav__link:hover::after { width: 100%; }

.header__cta { font-size: 0.875rem; padding: 0.75rem 1.4rem; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 110;
}
.nav__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-black);
    border-radius: 3px;
    transition: all var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ============ HERO ============ */
.hero {
    position: relative;
    background: var(--color-white);
    color: var(--color-gray-900);
    padding: 5rem 0 6rem;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 107, 26, 0.20) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(255, 107, 26, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #fdf2e3 0%, #fff7ed 65%, #ffffff 100%);
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.hero__content {
    max-width: 100%;
    min-width: 0;
}

/* === Hero Media === */
.hero__media {
    position: relative;
    width: 100%;
}
.hero__media-glow {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 26, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(255, 107, 26, 0.25) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.85;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { transform: scale(1) rotate(0deg); opacity: 0.7; }
    to   { transform: scale(1.08) rotate(8deg); opacity: 0.95; }
}
.hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__media:hover .hero__image { transform: translateY(-4px) scale(1.01); }

/* === Floating Sticker Badges === */
.hero__sticker {
    position: absolute;
    background: var(--color-white);
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--color-gray-200);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 2;
    animation: heroSticker 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.hero__sticker--rating {
    top: 8%;
    left: -4%;
    animation-delay: 0.4s;
}
.hero__sticker--badge {
    bottom: 14%;
    right: -4%;
    animation-delay: 0.6s;
}
.hero__sticker-stars {
    color: var(--color-orange);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    line-height: 1;
}
.hero__sticker-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.15; }
.hero__sticker strong {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-black);
    font-size: 1.05rem;
    display: block;
}
.hero__sticker span {
    color: var(--color-gray-500);
    font-size: 0.78rem;
    font-weight: 600;
    display: block;
}
.hero__sticker--badge svg {
    width: 32px;
    height: 32px;
    color: var(--color-orange);
    flex-shrink: 0;
}
@keyframes heroSticker {
    from { opacity: 0; transform: translateY(20px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__media { max-width: 600px; margin: 0 auto; }
    .hero__title { font-size: clamp(2rem, 6vw, 3.5rem); }
}
@media (max-width: 600px) {
    .hero__sticker { padding: 0.65rem 0.85rem; border-radius: 12px; }
    .hero__sticker strong { font-size: 0.92rem; }
    .hero__sticker span { font-size: 0.7rem; }
    .hero__sticker--rating { top: 4%; left: -2%; }
    .hero__sticker--badge { bottom: 10%; right: -2%; }
    .hero__sticker--badge svg { width: 26px; height: 26px; }
}
.hero__badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(255, 107, 26, 0.12);
    color: var(--color-orange-dark);
    border: 1px solid rgba(255, 107, 26, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}
/* Dezenter Eyebrow statt Pillen-Badge — klassisches Editorial-Pattern,
   nennt Service + Region für SEO ohne aufdringlich zu wirken */
.hero__eyebrow {
    display: inline-block;
    color: var(--color-orange-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}
.hero__title {
    font-size: clamp(1.85rem, 3.6vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.hero__subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--color-gray-700);
    max-width: 100%;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero__trust {
    display: flex;
    gap: 0.85rem 1.4rem;
    flex-wrap: wrap;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: 0.88rem;
}
.trust__item svg {
    width: 16px;
    height: 16px;
    color: var(--color-orange);
    flex-shrink: 0;
}

/* ============ SECTIONS ============ */
.section {
    padding: 6rem 0;
    background: var(--color-white);
}
.section--light { background: var(--color-gray-50); }
.section--dark {
    background: linear-gradient(180deg, #fef7ee 0%, #fffaf3 100%);
    color: var(--color-gray-900);
    position: relative;
}
.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 107, 26, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 26, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }
.section--cta {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
}
.section--form {
    background: linear-gradient(180deg, #fff8f0 0%, var(--color-white) 100%);
    border-top: 4px solid var(--color-orange);
}

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}
.section__eyebrow {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section__eyebrow--light { color: var(--color-orange); }
.section--cta .section__eyebrow--light { color: rgba(255, 255, 255, 0.95); }
.section__title {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    margin-bottom: 1.25rem;
    color: var(--color-black);
}
.section__title--light { color: var(--color-black); }
.section--cta .section__title--light { color: var(--color-white); }
.section--cta .section__title--light .text-orange { color: var(--color-black); }
.section__lead {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}
.section__lead--light { color: var(--color-gray-700); }
.section--cta .section__lead--light { color: rgba(255, 255, 255, 0.92); }

/* ============ SERVICES ============ */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service {
    padding: 2rem 1.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(255, 107, 26, 0.1);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service__icon svg { width: 28px; height: 28px; }
.service:hover .service__icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.05);
}
.service h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--color-black);
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.service p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
}

/* ============ MAP (SVG-Einsatzgebiet-Karte) ============ */
.map {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
}
.map__svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}
.map__bg { stroke: var(--color-gray-200); stroke-width: 1; }
.map__zone { transition: opacity 0.4s ease; }

.map__route {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: mapRouteDraw 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 26, 0.25));
}
@keyframes mapRouteDraw {
    to {
        stroke-dashoffset: 0;
    }
}
.map__route-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    fill: var(--color-orange-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    animation: mapFadeIn 0.6s ease 1.6s forwards;
}
@keyframes mapFadeIn { to { opacity: 1; } }

.map__pin {
    cursor: pointer;
    opacity: 0;
    animation: mapPinIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.map__pin circle { transition: all 0.25s ease; }
.map__pin:not(.map__pin--major) > circle:first-of-type {
    fill: var(--color-orange);
    stroke: var(--color-white);
    stroke-width: 2.5;
}
.map__pin:hover > circle:first-of-type {
    r: 10;
    fill: var(--color-orange-dark);
}

.map__pin--major {
    animation-delay: 0.2s !important;
}
.map__pin-circle {
    fill: var(--color-orange);
    stroke: var(--color-white);
    stroke-width: 4;
    filter: drop-shadow(0 6px 14px rgba(255, 107, 26, 0.5));
}
.map__pin--major:hover .map__pin-circle {
    r: 17;
    fill: var(--color-orange-dark);
}
.map__pin-pulse {
    fill: var(--color-orange);
    opacity: 0.35;
    transform-origin: center;
    transform-box: fill-box;
    animation: mapPulse 2.5s ease-out infinite;
}
@keyframes mapPulse {
    0%   { transform: scale(0.5); opacity: 0.55; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes mapPinIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.map__city {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    fill: var(--color-gray-700);
    text-anchor: middle;
    pointer-events: none;
    paint-order: stroke;
    stroke: var(--color-white);
    stroke-width: 4;
    stroke-linejoin: round;
}
.map__city--major {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    fill: var(--color-black);
    letter-spacing: -0.01em;
}

/* Stagger pin entry animations */
.map__pin:nth-child(1)  { animation-delay: 0.5s; }
.map__pin:nth-child(2)  { animation-delay: 0.55s; }
.map__pin:nth-child(3)  { animation-delay: 0.60s; }
.map__pin:nth-child(4)  { animation-delay: 0.65s; }
.map__pin:nth-child(5)  { animation-delay: 0.70s; }
.map__pin:nth-child(6)  { animation-delay: 0.75s; }
.map__pin:nth-child(7)  { animation-delay: 0.80s; }
.map__pin:nth-child(8)  { animation-delay: 0.85s; }
.map__pin:nth-child(9)  { animation-delay: 0.90s; }
.map__pin:nth-child(10) { animation-delay: 0.95s; }
.map__pin:nth-child(11) { animation-delay: 1.00s; }
.map__pin:nth-child(12) { animation-delay: 1.05s; }
.map__pin:nth-child(13) { animation-delay: 1.10s; }
.map__pin:nth-child(14) { animation-delay: 1.15s; }
.map__pin:nth-child(15) { animation-delay: 1.20s; }
.map__pin:nth-child(16) { animation-delay: 1.25s; }
.map__pin:nth-child(17) { animation-delay: 1.30s; }
.map__pin:nth-child(18) { animation-delay: 1.35s; }
.map__pin:nth-child(19) { animation-delay: 1.40s; }
.map__pin:nth-child(20) { animation-delay: 1.45s; }
.map__pin:nth-child(21) { animation-delay: 1.50s; }
.map__pin:nth-child(22) { animation-delay: 1.55s; }
.map__pin:nth-child(23) { animation-delay: 1.60s; }
.map__pin--major:nth-of-type(1n) { animation-delay: 0.25s !important; }

.map__tooltip {
    position: absolute;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-size: 0.85rem;
    pointer-events: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, calc(-100% - 12px));
    z-index: 5;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.map__tooltip[aria-hidden="false"] { opacity: 1; }
.map__tooltip strong {
    display: block;
    font-weight: 700;
    color: var(--color-white);
}
.map__tooltip span {
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.map__tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--color-black);
}

.map__legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}
.map__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-700);
    font-weight: 600;
}
.map__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-orange);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 1px var(--color-orange);
}
.map__legend-dot--major {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 2px var(--color-orange), 0 4px 10px rgba(255, 107, 26, 0.4);
}
.map__legend-line {
    width: 22px;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--color-orange) 0 6px, transparent 6px 10px);
    border-radius: 2px;
}

/* ============ REGIONS / CITY CHIPS ============ */
.region__groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.region__group {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.region__group:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.region__group-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--color-gray-100);
}
.region__group-head svg {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
}
.region__group-head h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-black);
    font-weight: 800;
}
.region__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.region__chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--color-gray-50);
    color: var(--color-gray-900);
    border: 1px solid var(--color-gray-200);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}
.region__chip:hover {
    background: rgba(255, 107, 26, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange-dark);
    transform: translateY(-1px);
}
.region__chip--main {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}
.region__chip--main:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    color: var(--color-white);
}

@media (max-width: 600px) {
    .map { padding: 0.4rem; }
    .map__svg { font-size: inherit; }

    /* Größere Labels für Lesbarkeit auf Mobile */
    .map__city { font-size: 16px; stroke-width: 5; }
    .map__city--major { font-size: 24px; }
    .map__route-label { font-size: 16px; letter-spacing: 0.06em; }

    /* Größere Pins damit sie auf dem kleinen Display nicht wie Punkte wirken */
    .map__pin > circle:first-of-type { r: 10; }
    .map__pin--major .map__pin-circle { r: 20; stroke-width: 5; }
    .map__pin--major .map__pin-pulse { r: 38; }

    /* Dickerer & deutlicherer Korridor */
    .map__route { stroke-width: 7; stroke-dasharray: 12 8; }

    /* Legende kompakter aber gut lesbar */
    .map__legend { gap: 0.85rem 1rem; font-size: 0.82rem; padding-top: 0.85rem; }
    .map__legend-dot { width: 12px; height: 12px; }
    .map__legend-dot--major { width: 16px; height: 16px; }

    .region__group { padding: 1.1rem; }
}

/* ============ REGIONS ============ */
.regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.region {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.region:hover {
    background: var(--color-white);
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.region__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-gray-200);
}
.region__head svg {
    width: 32px;
    height: 32px;
    color: var(--color-orange);
    flex-shrink: 0;
}
.region__head h3 {
    font-size: 1.4rem;
    color: var(--color-black);
}
.region__list li {
    padding: 0.65rem 0;
    color: var(--color-gray-700);
    border-bottom: 1px dashed var(--color-gray-200);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.98rem;
}
.region__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
}
.region__list li:last-child { border-bottom: none; }

.region__hint {
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 760px;
    margin: 0 auto;
}
.region__hint svg {
    width: 28px;
    height: 28px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.region__hint p { color: var(--color-gray-900); }

/* ============ WIZARD / KONFIGURATOR ============ */
.wizard {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}
.wizard__progress {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}
.wizard__progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.wizard__progress-step {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    font-weight: 600;
}
.wizard__progress-step strong { color: var(--color-orange); font-weight: 800; }
.wizard__progress-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-black);
}
.wizard__progress-bar {
    height: 8px;
    background: var(--color-gray-100);
    border-radius: 999px;
    overflow: hidden;
}
.wizard__progress-fill {
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(255, 107, 26, 0.5);
}

.wizard__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}
.wizard__form { display: flex; flex-direction: column; min-width: 0; }

.wizard__steps { position: relative; min-height: 380px; }
.wizard__step {
    display: none;
    animation: wizardFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wizard__step.is-active { display: block; }
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard__title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.wizard__sub {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.wizard__cards {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.wizard__cards--2 { grid-template-columns: repeat(2, 1fr); }
.wizard__cards--3 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.wizard__cards--4 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.wizard__cards--big { gap: 1rem; }
.wizard__cards--yn { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.wizard__cards--inline { display: flex; flex-wrap: wrap; }

.wcard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.1rem 0.85rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius);
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
    overflow: hidden;
}
.wcard input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.wcard__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(255, 107, 26, 0.1);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.wcard__icon svg { width: 26px; height: 26px; }
.wcard__label {
    font-weight: 700;
    color: var(--color-black);
    font-size: 0.95rem;
    line-height: 1.25;
}
.wcard__body { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.wcard__body strong { font-weight: 800; color: var(--color-black); font-size: 1.05rem; }
.wcard__body span { font-size: 0.83rem; color: var(--color-gray-500); }

.wcard:hover {
    border-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.wcard:hover .wcard__icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.05);
}
.wcard:has(input:checked) {
    border-color: var(--color-orange);
    background: linear-gradient(180deg, rgba(255, 107, 26, 0.08) 0%, rgba(255, 107, 26, 0.04) 100%);
    box-shadow: 0 8px 22px rgba(255, 107, 26, 0.18);
}
.wcard:has(input:checked) .wcard__icon {
    background: var(--color-orange);
    color: var(--color-white);
}
.wcard:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 26, 0.4);
    animation: wcardCheck 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes wcardCheck {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.wcard--rich {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 1.25rem 1.1rem;
    gap: 1rem;
}
.wcard--rich .wcard__body { align-items: flex-start; text-align: left; }

.wcard--small {
    flex: 1 1 80px;
    padding: 0.7rem 1.1rem;
    flex-direction: row;
    gap: 0.5rem;
    min-width: 100px;
    max-width: 200px;
}
.wcard__yn {
    font-weight: 700;
    color: var(--color-black);
    font-size: 0.95rem;
}

.wizard__qa { margin-top: 1.5rem; }
.wizard__qa-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-black);
    margin-bottom: 0.85rem;
    margin-top: 1.5rem;
}
.wizard__qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.wizard__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.wizard__grid--2 { grid-template-columns: repeat(2, 1fr); }
.wizard__field { display: flex; flex-direction: column; gap: 0.4rem; }
.wizard__field--full { grid-column: 1 / -1; }
.wizard__field label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gray-700);
}
.wizard__optional { color: var(--color-gray-500); font-weight: 500; font-size: 0.85em; }
.wizard__field input,
.wizard__field select,
.wizard__field textarea {
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: all var(--transition);
    font-size: 0.98rem;
    width: 100%;
}
.wizard__field input:focus,
.wizard__field select:focus,
.wizard__field textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}
.wizard__field textarea { resize: vertical; min-height: 90px; }

.wizard__upload {
    position: relative;
    border: 2px dashed var(--color-gray-300);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    background: var(--color-gray-50);
    overflow: hidden;
}
.wizard__upload.is-drag,
.wizard__upload:hover {
    border-color: var(--color-orange);
    background: rgba(255, 107, 26, 0.05);
}
.wizard__upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.wizard__upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    color: var(--color-gray-700);
}
.wizard__upload-label svg {
    width: 42px;
    height: 42px;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}
.wizard__upload-label strong { color: var(--color-black); font-size: 1rem; font-weight: 700; }
.wizard__upload-label span { font-size: 0.85rem; color: var(--color-gray-500); }
.wizard__upload-info {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--color-gray-700);
}

.wizard__check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}
.wizard__check input { margin-top: 3px; accent-color: var(--color-orange); }
.wizard__check a { color: var(--color-orange); font-weight: 600; text-decoration: underline; }

.wizard__nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-100);
}
.wizard__nav .btn { min-width: 0; }

.wizard__error {
    animation: wizardShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
.wizard__error .wcard {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}
@keyframes wizardShake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(3px); }
    30%, 50%, 70% { transform: translateX(-5px); }
    40%, 60% { transform: translateX(5px); }
}
.btn--ghost {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid transparent;
}
.btn--ghost:hover:not(:disabled) {
    background: var(--color-gray-100);
    color: var(--color-black);
}
.btn--ghost:disabled { opacity: 0.4; cursor: not-allowed; }

/* Live-Zusammenfassung */
.wizard__summary {
    background: linear-gradient(180deg, rgba(255, 107, 26, 0.04) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: sticky;
    top: 120px;
}
.summary__head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--color-gray-200);
}
.summary__head svg { width: 22px; height: 22px; color: var(--color-orange); flex-shrink: 0; }
.summary__head h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-black);
    flex: 1;
}
.summary__toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-gray-700);
    padding: 0.25rem;
    transition: transform var(--transition);
}
.summary__toggle svg { width: 22px; height: 22px; }
.summary__toggle.is-open { transform: rotate(180deg); }

.summary__body { font-size: 0.9rem; }
.summary__empty {
    color: var(--color-gray-500);
    font-style: italic;
    line-height: 1.5;
}
.summary__group { margin-bottom: 0.85rem; }
.summary__group:last-child { margin-bottom: 0; }
.summary__key {
    font-weight: 700;
    color: var(--color-orange-dark);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    display: block;
}
.summary__value { color: var(--color-black); font-weight: 600; line-height: 1.4; word-break: break-word; }
.summary__chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.25rem; }
.summary__chip {
    background: rgba(255, 107, 26, 0.1);
    color: var(--color-orange-dark);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.wizard__success {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
    border: 2px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-lg);
    color: var(--color-gray-900);
    animation: wizardFadeIn 0.5s ease-out;
}
.wizard__success svg {
    width: 72px;
    height: 72px;
    color: rgb(34, 197, 94);
    margin: 0 auto 1.25rem;
    background: rgba(34, 197, 94, 0.15);
    padding: 16px;
    border-radius: 50%;
}
.wizard__success h3 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--color-black); }
.wizard__success p { color: var(--color-gray-700); font-size: 1.05rem; }

/* Mobile */
@media (max-width: 900px) {
    .wizard__layout { grid-template-columns: 1fr; }
    .wizard__summary {
        position: static;
        order: -1;
        margin-bottom: 1.5rem;
    }
    .summary__toggle { display: block; }
    .summary__body { display: none; }
    .summary__body.is-open { display: block; }
}
@media (max-width: 600px) {
    .wizard { padding: 1rem 1rem 1.5rem; }
    /* Auf Mobile feste 2-Spalten-Layouts — nicht auf auto-fit verlassen,
       da je nach Gerät die verfügbare Breite knapp unter dem Schwellwert
       liegen kann (Android ~360px → fällt sonst auf 1 Spalte) */
    .wizard__cards--3 { grid-template-columns: repeat(2, 1fr); }
    .wizard__cards--4 { grid-template-columns: repeat(2, 1fr); }
    .wizard__cards--2 { grid-template-columns: 1fr; }
    .wizard__grid, .wizard__grid--2 { grid-template-columns: 1fr; }
    .wizard__cards { gap: 0.6rem; }
    .wcard { padding: 0.9rem 0.5rem; }
    .wcard__icon { width: 40px; height: 40px; }
    .wcard__icon svg { width: 22px; height: 22px; }
    .wcard__label { font-size: 0.85rem; line-height: 1.2; }
    .wizard__nav { flex-direction: column-reverse; }
    .wizard__nav .btn { width: 100%; }
}
/* ============ GALLERY ============ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 2 / 3;
    background: var(--color-gray-100);
    border: 3px solid var(--color-white);
    padding: 0;
    cursor: zoom-in;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    width: 100%;
}
.gallery__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--color-orange);
    color: var(--color-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px) scale(0.85);
    transition: all var(--transition);
    box-shadow: var(--shadow-orange);
}
.gallery__zoom svg { width: 22px; height: 22px; }
.gallery__item:hover .gallery__zoom {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.gallery__note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--color-gray-500);
    font-size: 0.98rem;
}
.gallery__note a {
    color: var(--color-orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gallery__note a:hover { color: var(--color-orange-dark); }

/* ============ COVERFLOW SLIDER (Swiper.js) ============ */
.coverflow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 0;
}
.coverflow__swiper {
    width: 100%;
    padding: 2rem 0 4rem;
    overflow: visible;
}
.coverflow__slide {
    width: 380px;
    max-width: 75vw;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-gray-100);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    cursor: zoom-in;
    user-select: none;
}
.coverflow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    pointer-events: none;
}
.coverflow__slide.swiper-slide-active {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 0 4px var(--color-orange);
}

.coverflow__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    color: var(--color-black);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}
.coverflow__btn svg { width: 22px; height: 22px; }
.coverflow__btn:hover,
.coverflow__btn:focus-visible {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-orange);
    outline: none;
}
.coverflow__btn--prev { left: 1rem; }
.coverflow__btn--next { right: 1rem; }
.coverflow__btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.coverflow__pagination.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}
.coverflow__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--color-gray-300);
    opacity: 1;
    transition: all var(--transition);
    margin: 0 !important;
}
.coverflow__pagination .swiper-pagination-bullet:hover {
    border-color: var(--color-orange);
    transform: scale(1.2);
}
.coverflow__pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    width: 36px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .coverflow__slide { width: 280px; }
    .coverflow__swiper { padding: 1rem 0 3rem; }
    .coverflow__btn { width: 44px; height: 44px; }
    .coverflow__btn--prev { left: 0.25rem; }
    .coverflow__btn--next { right: 0.25rem; }
}
@media (max-width: 480px) {
    .coverflow__slide { width: 240px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: lightboxIn 0.2s ease-out;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    animation: lightboxImgIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox__close,
.lightbox__nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.85rem;
    line-height: 1;
    padding: 0;
    z-index: 2;
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
    z-index: 2;
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: scale(1.05);
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
@keyframes lightboxIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes lightboxImgIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ============ STEPS ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
    position: relative;
}
.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all var(--transition);
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}
.step__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-stroke: 1px var(--color-orange);
    color: transparent;
}
.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}
.step p { color: var(--color-gray-500); font-size: 0.95rem; }

/* ============ BENEFITS ============ */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.benefit:hover {
    border-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.benefit svg {
    width: 26px;
    height: 26px;
    color: var(--color-orange);
    flex-shrink: 0;
    padding: 4px;
    background: rgba(255, 107, 26, 0.1);
    border-radius: 50%;
}
.benefit div { display: flex; flex-direction: column; gap: 2px; }
.benefit strong { font-weight: 700; font-size: 1rem; color: var(--color-black); }
.benefit span { font-size: 0.875rem; color: var(--color-gray-500); }

/* ============ TESTIMONIALS ============ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial {
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial:hover {
    background: var(--color-white);
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial__stars {
    color: var(--color-orange);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.testimonial p {
    color: var(--color-gray-900);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonial__author {
    color: var(--color-gray-500);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq__item[open] {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-sm);
}
.faq__item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background var(--transition);
}
.faq__item summary:hover { background: var(--color-gray-50); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-orange);
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray-700);
    line-height: 1.65;
}

/* ============ CONTACT ============ */
.contact {
    position: relative;
    z-index: 1;
}
.contact__content { max-width: 920px; margin: 0 auto; text-align: center; }
.contact__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}
.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: left;
    backdrop-filter: blur(8px);
}
.contact__item:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-4px);
}
.contact__item:hover svg { color: var(--color-orange); }
.contact__item:hover span { color: var(--color-gray-700); }
.contact__item:hover strong { color: var(--color-black); }
.contact__item svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    flex-shrink: 0;
    transition: color var(--transition);
}
.contact__item div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact__item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: color var(--transition);
}
.contact__item strong {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}

.contact__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    text-align: left;
    backdrop-filter: blur(8px);
}
.contact__meta strong {
    display: block;
    color: var(--color-black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.contact__meta p { color: var(--color-white); font-size: 0.95rem; line-height: 1.5; }
.section--cta .btn--primary {
    background: var(--color-black);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.section--cta .btn--primary:hover {
    background: var(--color-darker);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* ============ FOOTER ============ */
.footer {
    background: #1f1f23;
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--color-orange);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer__logo-wrap {
    display: inline-block;
    margin-bottom: 1.25rem;
    background: var(--color-white);
    padding: 0.5rem;
    border-radius: var(--radius);
}
.footer__logo {
    height: 72px;
    width: auto;
    display: block;
}
.footer__brand p { color: rgba(255, 255, 255, 0.7); line-height: 1.6; max-width: 360px; }
.footer__col h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    font-size: 0.95rem;
}
.footer__col a:hover { color: var(--color-orange); }
.footer__col li { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============ FAB ============ */
.fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-orange);
    z-index: 50;
    transition: all var(--transition);
}
.fab svg { width: 20px; height: 20px; }
.fab:hover {
    background: var(--color-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(255, 107, 26, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .header__cta { display: none; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .section__head { margin-bottom: 2.5rem; }

    /* WICHTIG: backdrop-filter erzeugt einen Containing-Block für fixed
       Kinder. Da <nav> im DOM innerhalb des Headers liegt, würde sie sonst
       relativ zum Header positioniert (statt zum Viewport) und kollabieren.
       Auf Mobile deshalb solider Hintergrund ohne blur. */
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--color-white);
    }

    .nav {
        position: fixed;
        top: var(--header-h, 120px);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        background: var(--color-white);
        padding: 1rem 1.5rem 1.5rem;
        border-left: none;
        z-index: 110;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* Transition erst aktivieren wenn die Seite geladen ist — verhindert
       sichtbares Flackern beim Initial-Render auf iOS Safari */
    html:not(.preload) .nav { transition: opacity var(--transition), visibility var(--transition); }

    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0 0 1.5rem;
    }
    .nav__list li { width: 100%; }
    .nav__link {
        display: block;
        padding: 1.1rem 0.25rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--color-black);
        border-bottom: 1px solid var(--color-gray-100);
        transition: color var(--transition), padding-left var(--transition);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--color-orange);
        padding-left: 0.6rem;
    }
    .nav__link::after { display: none; }

    .nav__cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid var(--color-gray-100);
    }
    .nav__cta .btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        justify-content: center;
    }
    .nav__cta .btn svg { width: 1.15em; height: 1.15em; }

    .nav__toggle { display: flex; position: relative; z-index: 120; }

    .hero { padding: 3rem 0 4rem; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { justify-content: center; width: 100%; }
    /* Kompaktere Trust-Liste auf Mobile, damit das Hero-Bild
       mehr Aufmerksamkeit bekommt */
    .hero__trust {
        gap: 0.45rem 0.85rem;
        margin-top: 0.25rem;
    }
    .trust__item {
        font-size: 0.78rem;
        gap: 0.35rem;
    }
    .trust__item svg { width: 13px; height: 13px; }

    .form { padding: 1.5rem; }
    .form__grid { grid-template-columns: 1fr; }
    .form__radios { flex-direction: column; }
    .form__radio { width: 100%; }

    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

    .fab { padding: 0.75rem; }
    .fab span { display: none; }

    .contact__items { grid-template-columns: 1fr; }

    .gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .carousel__stage { height: 65vh; min-height: 380px; }
    .carousel__slide { padding: 1rem; }
    .carousel__btn { width: 44px; height: 44px; }
    .carousel__btn--prev { left: 0.5rem; }
    .carousel__btn--next { right: 0.5rem; }
    .carousel__counter { top: 0.75rem; right: 0.75rem; padding: 0.4rem 0.85rem; font-size: 0.85rem; }
    .carousel__hint { bottom: 1.25rem; font-size: 0.78rem; padding: 0.45rem 0.9rem; }
    .lightbox { padding: 1rem; }
    .lightbox__close { top: 0.75rem; right: 0.75rem; width: 42px; height: 42px; font-size: 1.5rem; }
    .lightbox__nav { width: 44px; height: 44px; font-size: 1.1rem; }
    .lightbox__nav--prev { left: 0.5rem; }
    .lightbox__nav--next { right: 0.5rem; }
}

@media (max-width: 768px) {
    .header__inner { height: 72px; }
    .header__logo { height: 72px; }
    .header__logo img { height: 90px; }
}

@media (max-width: 480px) {
    .header__inner { gap: 1rem; height: 64px; }
    .header__logo { height: 64px; }
    .header__logo img { height: 80px; }
    .container { padding: 0 1rem; }
    .form { padding: 1.25rem; border-radius: var(--radius); }
    .form__legend { font-size: 1.15rem; }
    .form__step { width: 30px; height: 30px; font-size: 0.9rem; }

    .gallery { grid-template-columns: 1fr; }
}

/* ============ ANIMATIONS / SCROLL REVEAL ============ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transition:
            opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
        will-change: opacity, transform;
    }
    .reveal--up    { transform: translateY(40px); }
    .reveal--down  { transform: translateY(-30px); }
    .reveal--left  { transform: translateX(-40px); }
    .reveal--right { transform: translateX(40px); }
    .reveal--zoom  { transform: scale(0.94); }
    .reveal--fade  { transform: none; }
    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
}
