/* ============================================
   EA-Aufbereitung - Stylesheet
   ============================================ */

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

html {
    overflow-y: scroll;
}

:root {
    --primary: #dd0734;
    --primary-dark: #b8052b;
    --dark: #1a1a1a;
    --darker: #111;
    --light: #ffffff;
    --gray: #888;
    --gray-light: #f5f5f5;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
}

header .btn {
    position: absolute;
    left: 110px;
    white-space: nowrap;
}

header nav {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ── Navigation ──────────────────────────────────── */
nav ul {
    display: flex;
    gap: 0;
    list-style: none;
}

/* nur direkte Kinder der Haupt-ul, nicht Dropdown-li */
nav > ul > li {
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1);
}

nav > ul > li:first-child {
    border-left: 1px solid rgba(255,255,255,0.1);
}

nav > ul > li > a {
    display: block;
    padding: 8px 20px;
    color: var(--light);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

nav > ul > li > a:hover,
nav > ul > li > a.active {
    color: var(--primary);
    background: rgba(255,255,255,0.04);
}

/* ── Dropdown ────────────────────────────────────── */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -1px;
    min-width: 100%;
    flex-direction: column;
    background: rgb(13,13,13);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
    pointer-events: none;
}

.nav-has-dropdown.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown li {
    position: static;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

/* Trennlinie nur zwischen den Items, nicht über dem ersten */
.nav-dropdown li + li a {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.nav-dropdown a:hover {
    background: rgba(221,7,52,0.1);
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   Hero Slider
   ============================================ */

.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 5s linear;
}

.hero-slider .slide.zooming {
    transform: scale(1.1);
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide.fade-out {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.hero-slider h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-slider h1 span {
    color: var(--primary);
    display: block;
}

.hero-slider p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.7);
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-arrow {
    display: none;
}

/* ============================================
   Section Styling
   ============================================ */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ============================================
   Services Section
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--darker);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Icons mit grün/türkis Tönen invertieren */
.service-card img.icon-invert {
    filter: invert(1) brightness(2);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Pricing Teaser Section (Startseite)
   ============================================ */

.pricing-teaser {
    background: var(--darker);
}

.pricing-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-teaser-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-teaser-text p {
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.pricing-teaser-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-highlight {
    background: var(--dark);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.3s;
}

.pricing-highlight:hover {
    border-color: var(--primary);
}

.highlight-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ============================================
   Leistungen Detail Page
   ============================================ */

.leistungen-hero {
    background: var(--darker);
    padding: 160px 0 80px;
    text-align: center;
}

.leistungen-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.leistungen-hero p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.leistungen-grid-section {
    padding: 80px 0;
}

.leistungen-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leistung-card {
    background: var(--darker);
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.leistung-card:hover {
    border-color: #333;
    transform: translateY(-6px);
}

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

.leistung-card-img {
    width: calc(100% + 60px);
    margin: -36px -30px 0;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #1e1e1e;
    flex-shrink: 0;
}

.leistung-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.leistung-card:hover .leistung-card-img img {
    transform: scale(1.04);
}

.leistung-card-img.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.leistung-card-img.placeholder span {
    font-size: 0.8rem;
    color: #444;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.leistung-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.leistung-card .leistung-desc {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
}

.leistung-card .leistung-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.leistung-tag {
    font-size: 0.75rem;
    color: rgba(221, 7, 52, 0.9);
    background: rgba(221, 7, 52, 0.08);
    border: 1px solid rgba(221, 7, 52, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.leistung-card .leistung-cta {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s;
}

.leistung-card .leistung-cta::after {
    content: ' →';
}

.leistungen-cta-bar {
    background: var(--darker);
    border-top: 1px solid #222;
    padding: 70px 0;
    text-align: center;
}

.leistungen-cta-bar h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.leistungen-cta-bar p {
    color: var(--gray);
    margin-bottom: 30px;
}

.leistungen-cta-bar .btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ============================================
   Preise Page
   ============================================ */

.preise-hero {
    background: var(--darker);
    padding: 160px 0 80px;
    text-align: center;
}

.preise-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.preise-hero p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.preise-section {
    padding: 80px 0;
}

.preise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.preis-item {
    background: var(--darker);
    border: 1px solid #242424;
    border-radius: 10px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s;
}

.preis-item:hover {
    border-color: #333;
}

.preis-item-icon {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #1e1e1e;
}

.preis-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preis-item-icon.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(221, 7, 52, 0.08);
    border: 1px solid rgba(221, 7, 52, 0.15);
    font-size: 0.55rem;
    color: #444;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px;
}

.preis-item-info {
    flex: 1;
}

.preis-item-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.preis-item-info p {
    font-size: 0.82rem;
    color: var(--gray);
}

.preis-item-info a.preis-details {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.preis-item-info a.preis-details:hover {
    opacity: 0.75;
}

.preis-item-info a.preis-details::after {
    content: ' →';
}

.preis-item-price {
    text-align: right;
    flex-shrink: 0;
}

.preis-item-price .amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.preis-item-price .suffix {
    font-size: 0.78rem;
    color: var(--gray);
}

.preise-note {
    margin-top: 50px;
    background: var(--darker);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.preise-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.preise-note h4 {
    margin-bottom: 8px;
}

.preise-note p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.preise-cta-bar {
    background: var(--darker);
    border-top: 1px solid #222;
    padding: 70px 0;
    text-align: center;
}

.preise-cta-bar h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.preise-cta-bar p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0);
}

.feature h4 {
    margin-bottom: 5px;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    background: var(--darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-card .quote {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Sterne */
.testimonial-sterne {
    margin-bottom: 14px;
}

.testimonial-sterne .stern {
    font-size: 1rem;
    color: #555;
}

.testimonial-sterne .stern.aktiv {
    color: #f5a623;
}

/* Avatar (Initials-Kreis, ersetzt Profilbild) */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Datum */
.testimonial-datum {
    display: block;
    color: var(--gray);
    font-size: 0.78rem;
    margin-top: 2px;
}

/* Leer-Zustand */
.bewertung-leer {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.bewertung-leer-icon {
    margin: 0 auto 20px;
    width: 56px;
    height: 56px;
    opacity: 0.3;
}

.bewertung-leer-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gray);
}

.bewertung-leer p {
    font-size: 1rem;
    color: var(--gray);
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('../images/CTA-BG.png') center/cover no-repeat;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--darker);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.footer-brand p {
    color: var(--gray);
}

footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a {
    color: var(--gray);
    transition: color 0.3s;
}

footer ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: var(--gray);
}

/* ============================================
   Hamburger Menu Button
   ============================================ */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Mobile Nav Dropdown
   ============================================ */

.mobile-nav {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    z-index: 998;
    padding: 8px 0 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 24px;
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, background 0.2s;
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
}

/* Dropdown-Unterlinks im Mobile-Menü */
.mobile-nav .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: none;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    min-width: 0;
}

.mobile-nav .nav-dropdown::before {
    display: none;
}

.mobile-nav .nav-has-dropdown > a::after {
    display: none;
}

.mobile-nav .nav-dropdown a {
    padding: 11px 24px 11px 40px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 0;
}

.mobile-nav .nav-dropdown a:hover {
    background: rgba(221,7,52,0.07);
    color: var(--primary);
}

.mobile-nav-cta {
    padding: 16px 24px 8px;
}

.mobile-nav-cta .btn {
    display: block;
    text-align: center;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-teaser-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    header .btn {
        display: none;
    }

    .hero-slider h1 {
        font-size: 2rem;
    }

    .hero-slider h1 span {
        font-size: 1.8rem;
    }

    .hero-slider p {
        font-size: 1rem;
    }


    .about-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .leistungen-cards {
        grid-template-columns: 1fr;
    }

    .pricing-teaser-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .leistungen-hero h1,
    .preise-hero h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Galerie Page
   ============================================ */

.galerie-hero {
    background: var(--darker);
    padding: 160px 0 80px;
    text-align: center;
}

.galerie-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.galerie-hero p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.galerie-section {
    padding: 80px 0;
}

.galerie-grid {
    columns: 3;
    column-gap: 16px;
}

.galerie-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    border: 1px solid #242424;
}

.galerie-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.galerie-item:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

/* Platzhalter für noch nicht vorhandene Bilder */
.galerie-item.placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: default;
    border: 1px dashed #2e2e2e;
}

.galerie-item.placeholder.tall {
    aspect-ratio: 3 / 4;
}

.galerie-item.placeholder.wide {
    aspect-ratio: 16 / 9;
}

.galerie-placeholder-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #222;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galerie-placeholder-icon svg {
    width: 20px;
    height: 20px;
    stroke: #444;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.galerie-placeholder-label {
    font-size: 0.75rem;
    color: #383838;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.galerie-info-bar {
    background: var(--darker);
    border-top: 1px solid #1e1e1e;
    padding: 60px 0;
    text-align: center;
}

.galerie-info-bar p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .galerie-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .galerie-grid {
        columns: 1;
    }

    .galerie-hero h1 {
        font-size: 2rem;
    }
}
