/* =========================================================== 
   ExiTTer – Modernes, helles, mobil-freundliches Design 
   Brandfarbe: Grün (#6DE828) 
   Stand: FIX V19 (Mobile Table Background Fix)
   =========================================================== */ 

/* --- GLOBALE VARIABLEN --- */
:root { 
    --color-primary: #6DE828; 
    --color-primary-dark: #46b51d; 
    --color-primary-soft: #e9ffd4; 
    --color-dark: #0f172a; 
    --color-text: #111827; 
    --color-text-muted: #6b7280; 
    
    /* Hintergrund-Variablen */
    --color-bg: #f3f4f6; 
    --color-bg-alt: #ffffff; 
    --color-white: #ffffff; 
    --color-border: #e5e7eb; 

    --header-bg: rgba(255, 255, 255, 0.95);

    /* Ambient Gradient Farben (Light Mode) */
    --gradient-spot-1: rgba(109, 232, 40, 0.25); 
    --gradient-spot-2: rgba(79, 70, 229, 0.12); 
    --bg-base: #f9fafb;

    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08); 
    --shadow-strong: 0 18px 40px rgba(15, 23, 42, 0.18); 

    --radius-sm: 10px; 
    --radius-md: 16px; 
    --radius-lg: 22px; 

    --transition-fast: 0.2s ease-out; 
    --transition-med: 0.3s ease-out; 

    --font-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; 
} 

/* --- DARK MODE OVERRIDE --- */
body.dark-mode {
    --color-text: #f1f5f9; 
    --color-text-muted: #94a3b8; 
    
    --color-bg: #020617; 
    --color-bg-alt: #0f172a; 
    --color-white: #0f172a; 
    --color-border: #1e293b;
    
    --header-bg: rgba(2, 6, 23, 0.9);

    /* Ambient Gradient (Dark Mode) */
    --gradient-spot-1: rgba(109, 232, 40, 0.08); 
    --gradient-spot-2: rgba(99, 102, 241, 0.12); 
    --bg-base: #020617;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5); 
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.8); 
    
    --color-primary-soft: rgba(20, 83, 45, 0.3); 
}

/* Reset & Safety Basics */ 
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    overflow-wrap: break-word; 
} 

img, video, canvas, svg, iframe {
    max-width: 100%;
    height: auto;
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    width: 100%; 
    overflow-x: hidden; 
} 

body { 
    font-family: var(--font-main); 
    color: var(--color-text); 
    line-height: 1.7; 
    width: 100%;
    overflow-x: hidden; 
    position: relative;
    
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(circle at 15% 15%, var(--gradient-spot-1) 0, transparent 45%), 
        radial-gradient(circle at 85% 20%, var(--gradient-spot-2) 0, transparent 45%);
    background-attachment: fixed; 
    background-size: 100% 100%;
    
    transition: background-color 0.4s ease, color 0.3s ease;
} 

/* Scrollbar */ 
::-webkit-scrollbar { width: 8px; } 
::-webkit-scrollbar-track { background: var(--color-bg); } 
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 999px; } 

/* Layout Helper */ 
.container { 
    width: 100%; 
    max-width: 1280px; 
    margin: 0 auto; 
    /* MEHR ABSTAND: Erhöht auf 1.5rem (24px) damit es nicht klebt */
    padding: 0 1.5rem; 
} 
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.section { padding: 4.5rem 0; } 
.section--light { background-color: var(--color-bg); } 
.section--dark { background: #0b1120; color: #e5e7eb; }
.section--white { background: var(--color-white); } 

/* Highlight Section (Pfiati München) */
.section--highlight {
    background-color: var(--color-primary-soft);
    color: var(--color-dark);
    /* Extra viel Padding für sichtbaren Abstand oben/unten */
    padding: 6rem 0; 
}
.section--highlight .section__title { color: #0f3010; }
.section--highlight .section__subtitle { 
    color: #14532d; 
    margin-bottom: 2.5rem; /* Mehr Platz zum Button */
}

/* Dark Mode Highlight Fix */
body.dark-mode .section--highlight,
body.dark-mode section[style*="background:var(--color-primary-soft)"], 
body.dark-mode section[style*="background: var(--color-primary-soft)"] {
    background: linear-gradient(145deg, rgba(20, 83, 45, 0.4), rgba(2, 6, 23, 0.8)) !important;
    border-top: 1px solid rgba(109, 232, 40, 0.1);
    border-bottom: 1px solid rgba(109, 232, 40, 0.1);
}
body.dark-mode .section--highlight .section__title,
body.dark-mode .section--highlight .section__subtitle,
body.dark-mode .section--highlight p,
body.dark-mode section[style*="background"] h2[style],
body.dark-mode section[style*="background"] p[style] {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.section__title { 
    font-size: clamp(1.75rem, 4vw, 2.5rem); 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 0.5rem; 
    color: var(--color-text); 
    hyphens: auto; 
} 
.section--dark .section__title { color: #fff; }

.section__subtitle { 
    max-width: 640px; margin: 0.25rem auto 2.5rem; text-align: center; 
    color: var(--color-text-muted); font-size: 0.98rem; 
} 

/* Links */ 
a { color: var(--color-primary-dark); text-decoration: none; transition: color 0.2s; } 
a:hover { text-decoration: underline; } 
body.dark-mode a { color: #4ade80; } 

/* =========================================================== 
   HEADER 
   =========================================================== */ 

.header { 
    position: sticky; top: 0; z-index: 1000; height: 74px; 
    background: var(--header-bg); 
    backdrop-filter: blur(14px); 
    border-bottom: 1px solid var(--color-border); 
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03); 
    display: flex; align-items: center; 
    transition: background-color 0.3s ease, border-color 0.3s ease;
} 

.header__inner { 
    width: 100%; max-width: 1280px; margin: 0 auto; 
    /* Sync mit Container Padding: 1.5rem (24px) */
    padding: 0 1.5rem; 
    display: flex; justify-content: space-between; align-items: center; 
} 
@media (min-width: 1024px) {
    .header__inner { padding: 0 2rem; }
}

/* LOGO */ 
.logo { 
    display: inline-flex; align-items: baseline; gap: 0.25rem; 
    font-weight: 800; font-size: 1.35rem; letter-spacing: 0.02em; 
    color: var(--color-text); 
    text-transform: uppercase; text-decoration: none; 
    font-size: clamp(1.1rem, 4vw, 1.35rem);
} 
.logo span { color: var(--color-primary); }
.logo img { height: 35px; width: auto; display: block; }
@media(min-width: 768px) { .logo img { height: 40px; } }

/* Desktop Navigation */ 
.nav { display: flex; align-items: center; gap: 1.6rem; } 

.nav__link { 
    position: relative; font-size: 0.95rem; font-weight: 500; 
    color: var(--color-text); 
    padding: 4px 0; text-decoration: none; 
    transition: color 0.2s ease; 
} 

.nav__link::after { 
    content: ""; position: absolute; left: 0; bottom: -2px; width: 0%; height: 2px; 
    background-color: var(--color-primary); transition: width 0.22s ease; border-radius: 2px; 
} 
.nav__link:hover::after { width: 100%; } 
.nav__link--active { color: var(--color-text); font-weight: 600; } 
.nav__link--active::after { width: 100%; } 
.nav__link:hover { color: var(--color-primary); }

/* CTA Button */ 
.nav__cta { 
    background: linear-gradient(135deg, var(--color-primary), #a6ff6e); 
    color: #052e16 !important; 
    font-weight: 600; padding: 0.55rem 1.35rem; 
    border-radius: 999px; border: none; box-shadow: 0 6px 18px rgba(109, 232, 40, 0.28); 
    font-size: 0.92rem; transition: all 0.2s ease-out; cursor: pointer;
    white-space: normal; 
    text-align: center;
} 
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(109, 232, 40, 0.35); } 
body.dark-mode .nav__cta { box-shadow: 0 0 15px rgba(109, 232, 40, 0.4); }
body.dark-mode .nav__cta:hover { box-shadow: 0 0 25px rgba(109, 232, 40, 0.6); }

.nav-toggle { 
    display: none; width: 38px; height: 38px; border-radius: 10px; 
    background: var(--color-white); border: 1px solid var(--color-border); 
    font-size: 1.3rem; color: var(--color-text); 
    align-items: center; justify-content: center; cursor: pointer; 
} 

.nav-mobile { display: none; } 
body.nav-open { overflow: hidden; } 

/* =========================================================== 
   HERO 
   =========================================================== */ 

.hero { 
    padding: 4rem 0 3.75rem; 
    background: transparent;
    overflow: hidden;
} 

.hero__grid { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; 
} 

.hero__media-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }

.hero__eyebrow { 
    display: inline-flex; 
    flex-wrap: wrap;             /* WICHTIG: Erlaubt Umbruch auf Mobile */
    align-items: center; 
    justify-content: center;     /* Zentriert den Inhalt */
    gap: 0.4rem; 
    padding: 0.3rem 0.8rem;      /* Etwas mehr Padding */
    
    border-radius: 12px;         /* Sieht bei mehrzeiligem Text besser aus als 999px */
    border: 1px solid rgba(190, 242, 100, 0.9); 
    background: rgba(236, 252, 203, 0.7); 
    color: #3f6212; 
    
    font-size: 0.75rem; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    margin-bottom: 0.9rem; 
    
    max-width: 100%;             /* Verhindert Rausragen aus dem Bildschirm */
    line-height: 1.4;            /* Besserer Zeilenabstand bei Umbruch */
    text-align: center;
}
body.dark-mode .hero__eyebrow { 
    background: rgba(109, 232, 40, 0.1); 
    color: #a6ff6e; 
    border-color: rgba(109, 232, 40, 0.3);
}

.hero__title { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 800; line-height: 1.15; 
    color: var(--color-text); 
    margin-bottom: 0.8rem;
    hyphens: auto; 
} 

.hero__text { 
    font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 1.5rem; line-height: 1.6;
} 

.hero__bullets { list-style: none; margin-bottom: 1.6rem; } 
.hero__bullets li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--color-text-muted); } 
.hero__bullets li + li { margin-top: 0.4rem; } 
.hero__bullets span.icon { 
    width: 22px; height: 22px; border-radius: 999px; background-color: var(--color-primary-soft); 
    color: #3f6212; display: inline-flex; align-items: center; justify-content: center; 
    font-size: 0.9rem; font-weight: 700; flex-shrink: 0; 
} 
body.dark-mode .hero__bullets span.icon {
    background-color: rgba(109, 232, 40, 0.2); color: #a6ff6e;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.9rem; } 

.btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; 
    border-radius: 999px; padding: 0.8rem 1.6rem; border: none; 
    font-size: 0.95rem; font-weight: 700; cursor: pointer; text-decoration: none; 
    transition: all var(--transition-fast); min-height: 44px; 
    max-width: 100%; 
    white-space: normal; 
    text-align: center;
} 

.btn-primary { 
    background: linear-gradient(135deg, var(--color-primary), #c5ff8a); 
    color: #052e16 !important; 
    box-shadow: var(--shadow-strong); 
} 
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(132, 204, 22, 0.5); } 
body.dark-mode .btn-primary { box-shadow: 0 0 20px rgba(109, 232, 40, 0.3); }

.btn-outline { 
    border: 2px solid var(--color-border); background-color: var(--color-white); color: var(--color-text); 
} 
.btn-outline:hover { background-color: var(--color-bg); border-color: #cbd5e1; } 

.hero__panel { 
    background-color: #0f172a; color: #e5e7eb; border-radius: var(--radius-lg); 
    padding: 1.5rem 1.4rem; box-shadow: var(--shadow-soft); 
    border: 1px solid rgba(148, 163, 184, 0.4); position: relative; overflow: hidden;
} 
body.dark-mode .hero__panel {
    background-color: #020617; 
    border-color: rgba(109, 232, 40, 0.2);
}

.hero__panel::before {
    content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(109, 232, 40, 0.2) 0%, transparent 70%); pointer-events: none;
}

.hero__badge-row { display: flex; justify-content: space-between; gap: 0.75rem; font-size: 0.85rem; margin-bottom: 0.8rem; color: #9ca3af; } 
.hero__rating { display: flex; align-items: center; gap: 0.3rem; } 
.hero__rating-stars { color: #facc15; font-size: 0.95rem; } 
.hero__meta { font-size: 0.86rem; color: #cbd5f5; margin-bottom: 1rem; } 
.hero__stat-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; } 
.hero__stat { text-align: center; } 
.hero__stat strong { display: block; font-size: 1.25rem; font-weight: 700; } 
.hero__stat span { font-size: 0.8rem; color: #9ca3af; } 

/* ===========================================================
   MANUELLES BILDER-KARUSSELL (Carousel)
   =========================================================== */
.carousel {
    position: relative; width: 100%; min-height: 250px; 
    background: #cbd5e1; overflow: hidden; border-radius: 16px; 
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); aspect-ratio: 4/3; 
}
.carousel__inner { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.carousel__slide { min-width: 100%; height: 100%; position: relative; }
.carousel__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel__prev, .carousel__next {
    position: absolute; top: 50%; transform: translateY(-50%); 
    background: rgba(255,255,255,0.9); border: none; width: 36px; height: 36px; 
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; 
    font-size: 1rem; color: #0f172a; box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transition: all 0.2s; z-index: 10;
}
.carousel__prev:hover, .carousel__next:hover { background: var(--color-primary); color: white; }
.carousel__prev { left: 8px; } .carousel__next { right: 8px; }

/* =========================================================== 
   GRIDS & CARDS 
   =========================================================== */ 

.grid { display: grid; gap: 1.5rem; } 
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { 
    .grid--2 { grid-template-columns: 1fr 1fr; }
    .grid--3 { grid-template-columns: repeat(3, 1fr); } 
}

.card { 
    background-color: var(--color-white); 
    border-radius: 16px; padding: 1.5rem 1.4rem; 
    border-top: none !important; border-left: none !important;
    border-right: 1px solid var(--color-border) !important;
    border-bottom: 1px solid var(--color-border) !important;
    
    box-shadow: inset 3px 3px 6px -3px #6DE828, 0 2px 4px rgba(15, 23, 42, 0.02) !important;
    
    background-image: radial-gradient(
        circle at 0 0, 
        rgba(109, 232, 40, 0.20) 0%, 
        rgba(109, 232, 40, 0.02) 40%, 
        transparent 60%
    );
    background-repeat: no-repeat;
    overflow: hidden; display: flex; flex-direction: column;
    transition: background-color 0.3s, border-color 0.3s;
} 
body.dark-mode .card {
    background-image: radial-gradient(circle at 0 0, rgba(109, 232, 40, 0.1) 0%, transparent 50%);
    box-shadow: inset 2px 2px 5px -3px rgba(109, 232, 40, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.card--muted { background-color: var(--color-bg); } 

.card__eyebrow { 
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; 
    color: #15803d; font-weight: 800; margin-bottom: 0.4rem; position: relative; z-index: 1;
} 
body.dark-mode .card__eyebrow { color: #6DE828; }

.card__title { 
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; 
    color: var(--color-text); 
    position: relative; z-index: 1;
} 

.card__text { 
    font-size: 0.95rem; color: var(--color-text-muted); 
    line-height: 1.5; position: relative; z-index: 1; flex-grow: 1;
} 

/* =========================================================== 
   INFO BOX 
   =========================================================== */ 
.info-box { 
    background: var(--color-white); 
    border: 1px solid var(--color-border); 
    border-radius: 16px; padding: 1.5rem; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); 
}
.info-box__header { display:flex; justify-content:space-between; margin-bottom:1rem; font-weight:700; color: var(--color-text-muted); }
.info-box__content { background: var(--color-bg); padding:1rem; border-radius:8px; border:1px solid var(--color-border); }
.info-box ul { padding:0; list-style:none; font-size:0.9rem; color: var(--color-text-muted); margin:0; }

/* =========================================================== 
   ELEMENTE: Tabellen, Listen, Badges
   =========================================================== */ 

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li { 
    background: var(--color-white); 
    padding: 1rem; border: 1px solid var(--color-border); 
    border-radius: 8px; margin-bottom: 0.75rem; 
    color: var(--color-text-muted); display: flex; align-items: start; 
}
.num-badge { 
    background: var(--color-primary-soft); color: #14532d; 
    font-weight: 700; padding: 2px 8px; border-radius: 6px; 
    margin-right: 12px; font-size: 0.9rem; flex-shrink: 0;
}
body.dark-mode .num-badge {
    background-color: rgba(109, 232, 40, 0.2); color: #a6ff6e;
}

/* Tables */
table { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: 8px; overflow: hidden; }
th { background: #15803d; color: white; padding: 1rem; text-align: left; }
td { padding: 1rem; border-bottom: 1px solid var(--color-border); color: var(--color-text-muted); word-break: break-word; }
body.dark-mode th { background-color: #064e3b; color: #ecfccb; }

/* Badges */
.badge { 
    background: var(--color-bg); color: var(--color-text); 
    padding: 5px 12px; border-radius: 99px; font-size: 0.85rem; 
    font-weight: 500; margin: 3px; display: inline-block; 
    border: 1px solid var(--color-border); 
}

/* =========================================================== 
   FAQ 
   =========================================================== */ 

.faq { max-width: 800px; margin: 0 auto; } 
.faq details { 
    background-color: var(--color-white); border-radius: 8px; 
    padding: 1rem; border: 1px solid var(--color-border); margin-bottom: 0.5rem;
} 
.faq summary { font-weight: 700; color: var(--color-text); list-style: none; cursor: pointer; } 
.faq summary::-webkit-details-marker { display: none; } 
.faq p { margin-top: 0.5rem; color: var(--color-text-muted); } 

/* =========================================================== 
   Footer 
   =========================================================== */ 

.footer { 
    border-top: 1px solid var(--color-border); padding: 1.75rem 0; 
    background-color: var(--color-white); font-size: 0.85rem; color: var(--color-text-muted); 
} 
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; } 
.footer a { color: var(--color-text-muted); } 
body.dark-mode .footer a { color: #9ca3af; }
body.dark-mode .footer a:hover { color: var(--color-primary); }

/* =========================================================== 
   Responsive Design (FIX V18)
   =========================================================== */ 

@media (max-width: 1024px) { 
    .hero__grid { grid-template-columns: 1fr; gap: 3rem; } 
    .grid--3, .pricing, .testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); } 
    .hero__media-wrapper { order: 2; } 
    .hero__content { order: 1; }
} 

@media (max-width: 900px) { 
    .header__inner { 
        /* Sync mit Container: 1.5rem */
        padding: 0 1.5rem; 
    } 
    .nav { display: none; } 
    .nav-toggle { display: flex; } 
    
    .nav-mobile { 
        display: flex; flex-direction: column; gap: 1.2rem; 
        background: var(--header-bg); backdrop-filter: blur(15px); 
        position: fixed; top: 74px; left: 0; right: 0; bottom: 0; 
        padding: 2rem 1.5rem; /* Padding erhöht */
        transform: translateY(-100%); opacity: 0; 
        pointer-events: none; transition: all 0.3s ease; z-index: 9999; 
    } 
    body.nav-open .nav-mobile { transform: translateY(0); opacity: 1; pointer-events: auto; } 
    .nav-mobile .nav__link { color: var(--color-text); font-size: 1.05rem; } 
    .nav-mobile .nav__link--active { color: var(--color-primary); } 
    .nav-mobile .nav__cta { margin-top: 1rem; width: 100%; justify-content: center; } 
} 

@media (max-width: 768px) { 
    /* Fix für "Große Box hinter Boxen": Tabelle selbst transparent machen */
    .route-table { background: transparent; box-shadow: none; border: none; border-radius: 0; }

    .hero { 
        padding: 3rem 0; 
        text-align: left; 
    } 
    .hero__grid { grid-template-columns: minmax(0, 1fr); } 
    
    .hero__text, .hero__bullets { text-align: left; margin-left: 0; margin-right: 0; } 
    
    .hero__actions { 
        justify-content: flex-start; flex-direction: column; gap: 1rem;
    }
    .hero__actions .btn { width: 100%; }

    .hero__panel { margin-top: 2rem; text-align: left; } 
    
    .section { padding: 3.4rem 0; } 
    .grid--3, .pricing, .testimonials, .contact-grid { grid-template-columns: minmax(0, 1fr); } 
    .form__row { grid-template-columns: minmax(0, 1fr); } 
    .footer__inner { flex-direction: column; align-items: flex-start; } 
    
    /* Mobil Table Fixes - make sure tr have background */
    .route-table tr { 
        margin-bottom: 1rem; 
        border: 1px solid var(--color-border); 
        border-radius: var(--radius-sm); 
        background-color: var(--color-white); 
        padding: 0.5rem; 
        box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional: add slight shadow to cards */
    }
    .section--dark .route-table tr { 
        background-color: #1e293b; /* Dark mode card bg */
        border-color: #334155; 
    }
    .route-table, .route-table tbody, .route-table tr, .route-table td { display: block; width: 100%; }
    .route-table thead { display: none; }
    .route-table td { display: flex; justify-content: space-between; align-items: center; text-align: right; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--color-border); }
    .route-table td:last-child { border-bottom: none; }
    .route-table td::before { content: attr(data-label); float: left; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; font-size: 0.8rem; }
} 

@media (max-width: 480px) { 
    .hero__title { font-size: 2rem; } 
    .hero__actions { flex-direction: column; align-items: stretch; } 
    .hero__actions .btn { width: 100%; justify-content: center; } 
}

/* =========================================================== 
   Page Hero Banner (Ganz oben)
   =========================================================== */
.page-banner {
    position: relative; width: 100%; height: 400px; 
    background-size: cover; background-position: center; 
    background-repeat: no-repeat; background-color: #cbd5e1; 
    display: flex; align-items: center; justify-content: center; margin-bottom: 0; 
}
.page-banner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.7)); z-index: 1;
}
.page-banner__content { position: relative; z-index: 2; text-align: center; color: white; padding: 0 1.5rem; max-width: 800px; }
.page-banner__eyebrow {
    display: inline-block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 0.15em; color: #6DE828; margin-bottom: 0.5rem; 
    background: rgba(15, 23, 42, 0.6); padding: 0.25rem 0.75rem; 
    border-radius: 99px; backdrop-filter: blur(4px);
}
.page-banner__title { 
    /* Massiv reduziert für Mobile */
    font-size: clamp(2rem, 5vw, 4.5rem); 
    font-weight: 800; margin-bottom: 0.5rem; line-height: 1.1; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    hyphens: auto;
}
.page-banner__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 500; color: #e2e8f0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero { padding-top: 4rem; }

/* --- TOGGLE BUTTON STYLE --- */
.theme-toggle {
    position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; 
    border-radius: 50%; background-color: var(--color-primary); color: #052e16; 
    border: none; box-shadow: var(--shadow-strong); cursor: pointer; z-index: 9999; 
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; 
    transition: transform 0.3s ease;
}
.theme-toggle:hover { transform: scale(1.1); }
/* --- REVIEW CARDS & SCROLLER --- */
.scroller-wrapper {
    position: relative;
    padding: 0 1rem; /* Platz für Pfeile an den Rändern lassen, falls gewünscht */
}

/* Container für das horizontale Scrollen */
.reviews-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem 0.5rem; /* Unten Platz für Schatten/Scrollbar */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Einrast-Effekt */
    
    /* Scrollbar styling (optional) */
    scrollbar-width: thin;
    scrollbar-color: var(--c-primary) var(--c-border);
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.reviews-scroll-container::-webkit-scrollbar-track {
    background: var(--c-bg);
    border-radius: 4px;
}
.reviews-scroll-container::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 4px;
}

/* Die einzelne Karte - jetzt mit fester Breite */
.review-card {
    flex: 0 0 350px; /* Fixe Breite, nicht schrumpfen */
    min-width: 350px;
    scroll-snap-align: start; /* Karte rastet links ein */
    
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary);
}

/* Navigation Buttons (Pfeile) */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: white;
    border: 1px solid var(--c-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
    color: var(--c-text);
}
.scroll-btn:hover {
    background: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
}
.scroll-btn.left { left: -10px; }
.scroll-btn.right { right: -10px; }

/* Mobile Anpassung: Karten etwas schmaler */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85vw; /* Auf Handy fast volle Breite */
        min-width: 85vw;
    }
    .scroll-btn { display: none; } /* Pfeile auf Handy ausblenden (Touch reicht) */
    .scroller-wrapper { padding: 0; }
}

/* Restliche Styles (Header, Body etc.) bleiben gleich wie vorher... */
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.avatar-circle { width: 48px; height: 48px; background: #e5e7eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.avatar-circle.verified { border: 2px solid var(--c-primary); background: #f0fdf4; color: #166534; }
.reviewer-name { font-weight: 700; display: block; }
.move-route { font-size: 0.8rem; color: var(--c-text-light); }
.star-rating { color: #fbbf24; font-size: 1.1rem; }
.review-body { color: #4b5563; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }
.review-footer { border-top: 1px solid var(--c-border); padding-top: 1rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--c-text-light); }
.service-tag { background: #f3f4f6; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 500; }