﻿/* ═══════════════════════════════════════════════
   RZ GEBÄUDESERVICE – Gemeinsames Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #16233f;
    --navy-light: #1f3159;
    --blue: #1d4e94;
    --blue-light: #3a72c4;
    --green: #2d8c3c;
    --green-light: #4CAF50;
    --green-bright: #6BCB77;
    --white: #ffffff;
    --off-white: #f4f7fb;
    --gray-light: #e6ecf4;
    --gray: #8496a8;
    --text: #2c3e50;
    --text-light: #5b6b7c;
    --shadow: 0 4px 30px rgba(22, 35, 63, 0.08);
    --shadow-lg: 0 20px 60px rgba(22, 35, 63, 0.14);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Logo-Motion (pixel2motion, Personality: Friendly/Approachable) */
    --p2m-duration: 850ms;
    --p2m-ease-enter: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --p2m-overshoot: 1.04;
}

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════ KEYFRAMES ═══════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes shine {
    0% { left: -80%; }
    100% { left: 130%; }
}
@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.15); }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ═══════════════ SCROLL REVEAL ═══════════════ */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal { transform: translateY(45px); }
.reveal-left { transform: translateX(-55px); }
.reveal-right { transform: translateX(55px); }
.reveal-scale { transform: scale(0.85); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════ TOP BAR ═══════════════ */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    padding: 8px 0;
    position: relative;
    z-index: 1002;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-items { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 8px; }
.topbar-item i { color: var(--green-bright); }
.topbar-item a { color: inherit; text-decoration: none; transition: var(--transition); }
.topbar-item a:hover { color: var(--white); }
.topbar-slogan { font-style: italic; color: rgba(255,255,255,0.5); }

/* ═══════════════ HEADER / NAV ═══════════════ */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 24px rgba(22, 35, 63, 0.09);
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; position: relative; overflow: hidden; border-radius: 8px; }
.nav-logo img { height: 60px; width: auto; transition: var(--transition); transform-origin: center; }
.navbar.shrunk .nav-logo img { height: 48px; }

/* ═══════════════ LOGO-MOTION (pixel2motion) ═══════════════ */
/* Reveal: Scale-Pop with Overshoot, 20:50:30, spielt einmal beim Laden der Seite */
@media (prefers-reduced-motion: no-preference) {
    .nav-logo img {
        animation: p2m-logo-pop var(--p2m-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
}
@keyframes p2m-logo-pop {
    0%   { opacity: 0; transform: scale(0.6); }
    20%  { opacity: 0; transform: scale(0.55); }                 /* Anticipation: kurzes Einholen */
    70%  { opacity: 1; transform: scale(1.04); }                 /* Action: Overshoot (--p2m-overshoot) */
    85%  { transform: scale(0.99); }                             /* Follow-through: Gegenschwung */
    100% { opacity: 1; transform: scale(1); }
}

/* Hover-Sheen: dezenter Lichtstreif in Marken-Grün/Blau, einmalig bei Hover/Fokus */
.nav-logo::after,
.img-frame.logo-panel::after,
.footer-logo-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 42%,
        rgba(107, 203, 119, 0.55) 49%,
        rgba(58, 114, 196, 0.5) 53%,
        transparent 60%);
    transform: translateX(-140%);
    opacity: 0;
    pointer-events: none;
}
.footer-logo-box { position: relative; overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
    .nav-logo:hover::after, .nav-logo:focus-visible::after,
    .img-frame.logo-panel:hover::after,
    .footer-logo-box:hover::after {
        animation: p2m-sheen 650ms cubic-bezier(0.4, 0, 0.2, 1);
    }
}
@keyframes p2m-sheen {
    0%   { opacity: 1; transform: translateX(-140%); }
    90%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(140%); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.93rem;
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active {
    background: var(--off-white);
    color: var(--green);
}
.nav-links > li > a.active { position: relative; }
.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}
.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    box-shadow: 0 6px 20px rgba(45, 140, 60, 0.3);
    margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45, 140, 60, 0.45);
}

/* Dropdown */
.dropdown-toggle i.fa-chevron-down { font-size: 0.65rem; transition: var(--transition); }
.dropdown:hover .dropdown-toggle i.fa-chevron-down { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(22, 35, 63, 0.18);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 1001;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 10px;
}
.dropdown-menu a {
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--green); padding-left: 22px; }
.dropdown-menu a i {
    width: 34px; height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.dd-elektro i { background: #fff3e0; color: #ef8b00; }
.dd-winter i { background: #e3f2fd; color: #1565c0; }
.dd-garten i { background: #e8f5e9; color: #2e7d32; }
.dd-gebaeude i { background: #ede7f6; color: #5e35b1; }
.dd-hausmeister i { background: #e0f2f1; color: #00796b; }
.dropdown-menu .dd-all { border-top: 1px solid var(--gray-light); margin-top: 6px; padding-top: 8px; }
.dropdown-menu .dd-all a { color: var(--green); font-weight: 600; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 11px;
    z-index: 1001;
    background: var(--off-white);
    border-radius: 10px;
    border: none;
}
.hamburger span {
    width: 26px; height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(45, 140, 60, 0.35);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-25deg);
}
.btn-primary:hover::after { animation: shine 0.8s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(45, 140, 60, 0.5); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }
.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green-light);
}
.btn-outline:hover { background: var(--green-light); color: var(--white); transform: translateY(-3px); }

/* ═══════════════ SECTIONS ═══════════════ */
section { padding: 90px 0; }
.bg-light {
    background-image: linear-gradient(150deg, #cfe2f6 0%, #f3f9fe 45%, #dcebfa 100%);
    background-size: 220% 220%;
    animation: gradientMove 50s ease infinite;
}
/* Weiße Sektionen: sehr zarter Blauverlauf */
section:not([class]) {
    background-image: linear-gradient(170deg, #ffffff 0%, #f2f8fd 55%, #e8f2fb 100%);
    background-size: 220% 220%;
    animation: gradientMove 55s ease infinite;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(100deg, var(--navy) 0%, #2e6da4 70%, #4b93bd 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(22, 35, 63, 0.18);
}
.section-label i { color: var(--green-bright); }
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-light); }

/* ═══════════════ PAGE HERO (Unterseiten) ═══════════════ */
.page-hero {
    background-image: linear-gradient(130deg, #0f1b33 0%, #1d4e94 45%, #5a9bd8 100%);
    background-size: 220% 220%;
    animation: gradientMove 45s ease infinite;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.14) 0%, transparent 70%);
    top: -180px; right: -120px;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    animation: fadeInUp 0.8s ease both;
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    animation: fadeInUp 0.8s ease 0.15s both;
}
.page-hero-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}
.page-hero-wave svg { width: 100%; height: 55px; display: block; }

/* ═══════════════ BILD-RAHMEN & PLATZHALTER ═══════════════ */
.img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: var(--shadow-lg);
}
.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.img-frame:hover img { transform: scale(1.05); }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.img-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 20px;
}
.img-placeholder i { font-size: 3rem; color: rgba(255, 255, 255, 0.3); }
.img-placeholder span { font-size: 0.85rem; font-weight: 500; }
.img-frame.no-img .img-placeholder { display: flex; }

/* ═══════════════ LEISTUNGS-KACHELN (Startseite) ═══════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.service-tile {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.service-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-tile .img-frame { border-radius: 0; box-shadow: none; aspect-ratio: 16 / 8.5; }
.service-tile-body {
    padding: 30px 32px 34px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.service-tile-body > *:not(.tile-bg-icon) { position: relative; z-index: 1; }
.tile-bg-icon {
    position: absolute;
    right: -18px;
    bottom: -18px;
    font-size: 8.5rem;
    opacity: 0.08;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
    transition: var(--transition);
}
.service-tile:hover .tile-bg-icon { opacity: 0.14; transform: rotate(-6deg) scale(1.06); }
.tile-bg-icon.icon-elektro { color: #ef8b00; background: none; }
.tile-bg-icon.icon-winter { color: #1565c0; background: none; }
.tile-bg-icon.icon-garten { color: #2e7d32; background: none; }
.tile-bg-icon.icon-gebaeude { color: #5e35b1; background: none; }
.tile-bg-icon.fa-toolbox { color: #00796b; }
.service-tile-icon {
    width: 62px; height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-top: -62px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    transition: var(--transition);
}
.service-tile:hover .service-tile-icon { transform: scale(1.1) rotate(-6deg); }
.icon-elektro { background: linear-gradient(135deg, #ffb74d, #ef8b00); color: #fff; }
.icon-winter { background: linear-gradient(135deg, #64b5f6, #1565c0); color: #fff; }
.icon-garten { background: linear-gradient(135deg, #81c784, #2e7d32); color: #fff; }
.icon-gebaeude { background: linear-gradient(135deg, #9575cd, #5e35b1); color: #fff; }
.service-tile h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-tile p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.service-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.92rem;
}
.service-tile-link i { transition: var(--transition); }
.service-tile:hover .service-tile-link i { transform: translateX(6px); }

/* ═══════════════ FEATURE-LISTEN ═══════════════ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 0.97rem; }
.check-list li i {
    width: 26px; height: 26px;
    background: rgba(45, 140, 60, 0.1);
    color: var(--green);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Zweispaltiges Text/Bild-Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-grid h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.split-grid .text-col > p { color: var(--text-light); margin-bottom: 22px; }

/* ═══════════════ WHY CARDS ═══════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.why-icon {
    width: 72px; height: 72px;
    background: rgba(45, 140, 60, 0.08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--green);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    transform: rotate(-8deg) scale(1.08);
}
.why-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.why-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ═══════════════ STATS BAND ═══════════════ */
.stats-band {
    background: linear-gradient(130deg, var(--navy), var(--blue));
    padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item i { font-size: 1.8rem; color: var(--green-bright); margin-bottom: 12px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); margin-top: 4px; }

/* ═══════════════ PROCESS ═══════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 54px;
    left: 17%; right: 17%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--green-light) 0 12px, transparent 12px 24px);
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
    width: 108px; height: 108px;
    background: var(--white);
    border: 3px solid var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--green);
    transition: var(--transition);
}
.process-step:hover .process-number {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 14px 36px rgba(45, 140, 60, 0.35);
}
.process-step h4 { font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); max-width: 280px; margin: 0 auto; }

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
    background-image: linear-gradient(130deg, #0f1b33 0%, #1d4e94 50%, #5a9bd8 100%);
    background-size: 220% 220%;
    animation: gradientMove 45s ease infinite;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 550px; height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.16) 0%, transparent 70%);
    top: -220px; right: -120px;
}
.cta-banner .container { text-align: center; position: relative; z-index: 2; }
.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-banner p { font-size: 1.08rem; color: rgba(255, 255, 255, 0.72); max-width: 580px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════ SERVICE-DETAILSEITEN ═══════════════ */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.detail-content h2 { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin: 36px 0 16px; letter-spacing: -0.02em; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content p { color: var(--text-light); margin-bottom: 18px; }
.detail-content .img-frame { margin: 28px 0; }
.detail-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }

.sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}
.sidebar-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition);
}
.sidebar-nav a:hover { background: var(--off-white); color: var(--green); padding-left: 20px; }
.sidebar-nav a.current {
    background: rgba(45, 140, 60, 0.08);
    color: var(--green);
    font-weight: 700;
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    text-align: center;
    border: none;
}
.sidebar-cta h4 { color: var(--white); }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; }

/* ═══════════════ KONTAKT ═══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.contact-info > p { color: var(--text-light); font-size: 0.95rem; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}
.contact-card:hover { transform: translateX(10px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
    width: 56px; height: 56px;
    background: rgba(45, 140, 60, 0.09);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
}
.contact-card strong {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
}
.contact-card em { font-style: normal; color: var(--navy); font-size: 1.04rem; font-weight: 600; }

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 { font-size: 1.28rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--off-white);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 6px; justify-content: center; }
.form-status { display: none; font-size: 0.85rem; font-weight: 600; text-align: center; padding: 10px 14px; margin-top: 10px; border-radius: 6px; }
.form-status:not(:empty) { display: block; }
.form-status-pending { background: var(--gray-light); color: var(--text-light); }
.form-status-success { background: rgba(45, 140, 60, 0.12); color: var(--green); }
.form-status-error { background: rgba(192, 57, 43, 0.12); color: #c0392b; }
.form-submit.is-sending { opacity: 0.65; pointer-events: none; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--navy); padding: 66px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo-box {
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    display: inline-block;
    max-width: 230px;
}
.footer-logo-box img { width: 100%; height: auto; }
.footer-brand p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; margin-top: 18px; line-height: 1.7; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-bright); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact-item i { color: var(--green-bright); width: 20px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--green-bright); }
.footer-bottom {
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--green-bright); }

/* ═══════════════ FLOATING BUTTONS ═══════════════ */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(45, 140, 60, 0.35);
    z-index: 999;
    border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); }

.whatsapp-float {
    position: fixed;
    bottom: 32px; left: 32px;
    width: 62px; height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.9rem;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    text-decoration: none;
    animation: pulseRing 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ═══════════════ STARTSEITEN-HERO ═══════════════ */
.hero {
    min-height: calc(100vh - 120px);
    background-image: linear-gradient(130deg, #0f1b33 0%, #1d4e94 45%, #5a9bd8 100%);
    background-size: 220% 220%;
    animation: gradientMove 45s ease infinite;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-glow-1, .hero-glow-2 { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.14) 0%, transparent 70%);
    top: -140px; right: -140px;
    animation: float 10s ease-in-out infinite;
}
.hero-glow-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(58, 114, 196, 0.14) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    animation: float 13s ease-in-out infinite reverse;
}
.hero-star {
    position: absolute;
    color: rgba(255,255,255,0.5);
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}
.hero-star:nth-of-type(1) { top: 18%; left: 10%; font-size: 14px; }
.hero-star:nth-of-type(2) { top: 26%; right: 14%; font-size: 18px; animation-delay: 0.8s; }
.hero-star:nth-of-type(3) { bottom: 28%; left: 20%; font-size: 12px; animation-delay: 1.6s; }
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(76, 175, 80, 0.14);
    border: 1px solid rgba(76, 175, 80, 0.35);
    color: var(--green-bright);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 26px;
    animation: fadeInUp 0.8s ease both;
}
.hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.14;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 .highlight {
    background: linear-gradient(120deg, var(--green-bright), #9ae6a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.45s both; }
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    animation: fadeInUp 1s ease 0.5s both;
}
.hero-img-frame {
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 460px;
}
.hero-logo-card {
    background: var(--white);
    border-radius: 26px;
    padding: 34px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: float 6s ease-in-out infinite;
    max-width: 400px;
}
.hero-check-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-check {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
}
.hero-check i { color: var(--green-bright); }
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}
.hero-wave svg { width: 100%; height: 65px; display: block; }

/* ═══════════════ TEAM / ÜBER UNS ═══════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
    background: var(--white);
    border-radius: 22px;
    padding: 38px 30px;
    border-top: 5px solid var(--green-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-card i { font-size: 1.9rem; color: var(--green); margin-bottom: 16px; }
.value-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .hero .container, .split-grid { grid-template-columns: 1fr; }
    .hero .container { text-align: center; gap: 48px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .detail-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { gap: 44px; }
}
@media (max-width: 768px) {
    section { padding: 64px 0; }
    .topbar-slogan { display: none; }
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 32px;
        gap: 4px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
        overflow-y: auto;
        z-index: 1000;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: rgba(255, 255, 255, 0.85); padding: 14px 18px; }
    .nav-links > li > a:hover, .nav-links > li > a.active { background: rgba(255, 255, 255, 0.1); color: var(--white); }
    .nav-links > li > a.active::after { display: none; }
    .nav-cta { justify-content: center; margin: 10px 0 0; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
        display: none;
        min-width: 0;
        margin-top: 4px;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { color: rgba(255, 255, 255, 0.75); }
    .dropdown-menu a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
    .dropdown-menu .dd-all { border-color: rgba(255,255,255,0.1); }
    .dropdown-menu .dd-all a { color: var(--green-bright); }
    .why-grid, .process-grid, .contact-grid, .form-row, .values-grid, .detail-imgs { grid-template-columns: 1fr; }
    .process-grid { gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 26px; }
    .service-tile-body { padding: 24px; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 1.6rem; bottom: 24px; left: 24px; }
    .back-to-top { bottom: 24px; right: 24px; }
    .topbar-items { gap: 14px; font-size: 0.76rem; }
}

/* ═══════════════ HERO-SPLIT (Bild als Hintergrund rechts) ═══════════════ */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
@keyframes bounceDown {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.65; }
    50% { transform: translate(-50%, 10px); opacity: 1; }
}
.hero-split { min-height: 92vh; }
.hero-split .container {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-split .hero-content { max-width: 600px; }
.hero-bg-img {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 60%;
    background-size: cover;
    background-position: center right;
    z-index: 0;
    transform-origin: center right;
    animation: slowZoom 22s ease-in-out infinite alternate;
}
.hero-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        var(--navy) 0%,
        rgba(22, 35, 63, 0.85) 18%,
        rgba(22, 35, 63, 0.35) 45%,
        rgba(22, 35, 63, 0.12) 75%,
        rgba(22, 35, 63, 0.35) 100%);
}
.hero-bg-img::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(22, 35, 63, 0.55));
}
.rotate-wrap { display: inline-block; min-width: 1ch; }
#rotateWord {
    display: inline-block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
#rotateWord.word-out { opacity: 0; transform: translateY(14px); }

.hero-stats-row {
    display: flex;
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 22px 6px;
    max-width: 600px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hs-item { flex: 1; text-align: center; padding: 0 14px; position: relative; }
.hs-item + .hs-item::before {
    content: '';
    position: absolute;
    left: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}
.hs-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    white-space: nowrap;
}
.hs-num .hs-stars { color: #f5b301; font-size: 1.15rem; margin-right: 2px; }
.hs-num .hs-sub { font-size: 1.05rem; color: rgba(255, 255, 255, 0.5); font-weight: 600; }
.hs-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hero-scroll {
    position: absolute;
    bottom: 92px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    animation: bounceDown 2.2s ease-in-out infinite;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .hero-split { min-height: auto; }
    .hero-bg-img { width: 100%; animation: none; }
    .hero-bg-img::before { background: rgba(22, 35, 63, 0.86); }
    .hero-split .hero-content { max-width: 640px; margin: 0 auto; }
    .hero-stats-row { margin-left: auto; margin-right: auto; }
    .hero-scroll { display: none; }
}
@media (max-width: 480px) {
    .hero-stats-row { flex-direction: column; gap: 18px; padding: 22px 16px; }
    .hs-item + .hs-item::before {
        left: 20%; right: 20%; top: -9px; bottom: auto;
        width: auto; height: 1px;
    }
}

/* ═══════════════ HERO-BILD (professionell mit Karten) ═══════════════ */
.hero-figure {
    position: relative;
    max-width: 540px;
    width: 100%;
}
.hero-figure::before {
    content: '';
    position: absolute;
    top: 28px; right: -22px; bottom: -22px; left: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.45), rgba(58, 114, 196, 0.35));
    z-index: 0;
}
.hero-figure .img-frame {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.float-card {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 44px rgba(22, 35, 63, 0.32);
    animation: float 6s ease-in-out infinite;
}
.float-card strong {
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.15;
    display: block;
}
.float-card span { color: var(--gray); font-size: 0.75rem; font-weight: 500; display: block; }
.float-card .fc-stars {
    color: #f5b301;
    font-size: 0.72rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3px;
}
.float-card .fc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.float-card.fc-rating { bottom: -26px; left: -16px; }
.float-card.fc-customers { top: -22px; right: -12px; animation-delay: 1.4s; }
@media (max-width: 1024px) {
    .hero-figure { margin: 0 auto; }
    .float-card.fc-rating { left: 10px; }
    .float-card.fc-customers { right: 10px; }
}

/* ═══════════════ LEISTUNGS-CHIPS (Mehrfachauswahl) ═══════════════ */
.service-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip input { display: none; }
.chip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid var(--gray-light);
    background: var(--off-white);
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}
.chip span i { color: var(--green); transition: var(--transition); }
.chip span:hover { border-color: var(--green-light); background: var(--white); }
.chip input:checked + span {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 18px rgba(45, 140, 60, 0.3);
}
.chip input:checked + span i { color: var(--white); }

/* ═══════════════ BUCHUNGSKALENDER ═══════════════ */
.cal {
    border: 2px solid var(--gray-light);
    border-radius: 14px;
    background: var(--off-white);
    padding: 16px;
}
.cal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
#calTitle { font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.cal-nav {
    width: 36px; height: 36px;
    border: none;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-size: 0.85rem;
}
.cal-nav:hover:not(:disabled) { background: var(--green-light); color: var(--white); }
.cal-nav:disabled { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays { margin-bottom: 4px; }
.cal-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    padding: 2px 0;
}
.cal-day {
    aspect-ratio: 1;
    border: none;
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.cal-day:hover:not(:disabled):not(.sel) { background: rgba(76, 175, 80, 0.18); }
.cal-day.empty { background: transparent; cursor: default; }
.cal-day:disabled {
    color: #bcc7d2;
    background: #e9eef4;
    cursor: not-allowed;
    text-decoration: line-through;
}
.cal-day.teilweise::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #f5a623;
}
.cal-day.sel {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    box-shadow: 0 6px 16px rgba(45, 140, 60, 0.35);
}
.cal-legend {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    font-size: 0.74rem;
    color: var(--text-light);
    flex-wrap: wrap;
}
.cal-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .lg { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.lg-free { background: var(--white); border: 1px solid var(--gray-light); }
.lg-booked { background: #e9eef4; border: 1px solid #bcc7d2; }
.lg-sel { background: var(--green-light); }

/* ═══════════════ FOTO-UPLOAD (Kontaktformular) ═══════════════ */
.upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px dashed #c3d2e2;
    border-radius: 14px;
    padding: 28px 20px;
    cursor: pointer;
    background: var(--off-white);
    transition: var(--transition);
    text-align: center;
    color: var(--text-light);
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--green-light);
    background: var(--white);
}
.upload-zone i { font-size: 1.7rem; color: var(--green); }
.upload-zone span { font-weight: 600; color: var(--navy); font-size: 0.93rem; }
.upload-zone small { font-size: 0.76rem; }
.upload-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.upload-previews img {
    width: 74px; height: 74px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gray-light);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    margin-top: 10px;
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

/* ═══════════════ FLYER-BAND (Häkchen-Leiste) ═══════════════ */
.ribbon-band {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(100deg, var(--navy) 0%, #2e6da4 60%, #57a7c4 100%);
    color: var(--white);
    border-radius: 999px;
    padding: 16px 44px;
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 14px 40px rgba(22, 35, 63, 0.22);
    max-width: 760px;
    margin: -32px auto 0;
    position: relative;
    z-index: 10;
}
.ribbon-band i { color: var(--green-bright); margin-right: 9px; }

/* ═══════════════ GALERIE ═══════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--navy), var(--blue));
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(22, 35, 63, 0.88));
    color: var(--white);
    padding: 36px 18px 14px;
    font-size: 0.92rem;
    font-weight: 600;
}
.gallery-caption i { color: var(--green-bright); margin-right: 8px; }

/* ═══════════════ BLOG ═══════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card .img-frame { border-radius: 0; box-shadow: none; aspect-ratio: 16 / 9; }
.blog-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.blog-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 140, 60, 0.09);
    color: var(--green);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-date { font-size: 0.78rem; color: var(--gray); font-weight: 500; }
.blog-date i { margin-right: 5px; }
.blog-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; flex: 1; }
.blog-card .service-tile-link { font-size: 0.88rem; }

/* Artikel-Seite */
.artikel-content h2 { font-size: 1.55rem; font-weight: 800; color: var(--navy); margin: 34px 0 14px; letter-spacing: -0.02em; }
.artikel-content h2:first-of-type { margin-top: 0; }
.artikel-content p { color: var(--text-light); margin-bottom: 18px; line-height: 1.85; }
.artikel-content .img-frame { margin: 26px 0; }
.artikel-content strong { color: var(--navy); }
.artikel-hinweis {
    background: rgba(45, 140, 60, 0.07);
    border-left: 4px solid var(--green-light);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 26px 0;
}
.artikel-hinweis p { margin: 0; font-size: 0.95rem; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════ BEWERTUNGEN ═══════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f5b301; margin-bottom: 14px; letter-spacing: 3px; font-size: 0.95rem; }
.review-text { font-style: italic; color: var(--text); margin-bottom: 18px; line-height: 1.7; flex: 1; }
.review-author { font-weight: 700; color: var(--navy); font-size: 0.92rem; display: flex; align-items: center; gap: 12px; }
.review-author .review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2e6da4);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.review-author span { display: block; color: var(--gray); font-weight: 500; font-size: 0.78rem; }

/* ═══════════════ FAQ ═══════════════ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--green-light); box-shadow: var(--shadow); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
}
.faq-q i { transition: var(--transition); color: var(--green); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 26px 22px; color: var(--text-light); font-size: 0.95rem; }

/* ═══════════════ EINSATZGEBIET ═══════════════ */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.area-chip:hover { transform: translateY(-3px); border-color: var(--green-light); }
.area-chip i { color: var(--green); }
.map-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--gray-light);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 1024px) {
    .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .area-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
    .ribbon-band { gap: 14px; padding: 14px 26px; font-size: 0.92rem; margin-top: -20px; }
}

/* ═══════════════════════════════════════════════
   HERO-FEINSCHLIFF: Text links, sichtbare Boxen,
   Bild-Diashow
   ═══════════════════════════════════════════════ */

/* Text weiter nach links */
.hero-split .container { max-width: 1400px; }
.hero-split .hero-content { max-width: 560px; }

/* Diashow: Bilder überblenden sich sanft */
.hero-bg-img { overflow: hidden; animation: none; }
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    transition: opacity 2s ease;
    transform-origin: center right;
    animation: slowZoom 22s ease-in-out infinite alternate;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-img::before, .hero-bg-img::after { z-index: 2; }

/* Badge & Statistik-Box: klar sichtbar auf blauem Grund */
.hero-badge {
    background: var(--white);
    border: 2px solid rgba(76, 175, 80, 0.55);
    color: var(--green);
    box-shadow: 0 10px 30px rgba(10, 20, 40, 0.35);
}
.hero-badge i { color: var(--green); }
.hero-subtitle { color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 10px rgba(10, 20, 40, 0.45); }
.hero-split h1 { text-shadow: 0 2px 14px rgba(10, 20, 40, 0.40); }

.hero-stats-row {
    background: var(--white);
    border: 2px solid #dfe9f4;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 22px 60px rgba(10, 20, 40, 0.40);
}
.hs-item + .hs-item::before { background: var(--gray-light); }
.hs-label { color: var(--text-light); }
.hero-stats-row .hs-num { background: none; -webkit-text-fill-color: currentColor; }
.hs-item:nth-child(1) .hs-num { color: #2e7d32; }
.hs-item:nth-child(2) .hs-num { color: #1565c0; }
.hs-item:nth-child(3) .hs-num { color: #ef8b00; }
.hero-stats-row .hs-num .hs-sub { color: #9fb0c0; -webkit-text-fill-color: #9fb0c0; }
.hero-stats-row .hs-num .hs-stars { color: #f5b301; -webkit-text-fill-color: #f5b301; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   DESIGN 1B – "Modern & dynamisch"
   Dunkelblau -> Gruen Verlaeufe, Mint-Akzente,
   weisse Karten, Poppins-Headlines
   ═══════════════════════════════════════════════ */

:root {
    --navy: #0e1f33;
    --navy-light: #0e2942;
    --blue: #155038;
    --blue-light: #2f7d4f;
    --green: #2f7d4f;
    --green-light: #52b788;
    --green-bright: #7be08a;
    --off-white: #f4f7f5;
    --gray-light: #e2e9e4;
    --gray: #8795a0;
    --text: #37454e;
    --text-light: #5c6b74;
}

body { background: #f4f7f5; }
h1, h2, h3, h4, .section-title, .hs-num, .stat-number { font-family: 'Poppins', 'Inter', sans-serif; }

/* Verlaeufe: Dunkelblau -> Gruen (langsam animiert) */
.hero, .page-hero, .cta-banner {
    background-image: linear-gradient(120deg, #0e2942 0%, #155038 55%, #2f7d4f 100%);
    background-size: 220% 220%;
    animation: gradientMove 45s ease infinite;
}
.stats-band { background: linear-gradient(120deg, #0e2942 0%, #155038 60%, #2f7d4f 120%); }
.sidebar-card.sidebar-cta { background: linear-gradient(135deg, #0e2942, #155038 70%, #2f7d4f); border: none; }
.footer {
    background: linear-gradient(120deg, #0e1f33 0%, #0e2942 50%, #155038 100%);
    border-top: 3px solid #7be08a;
}
.topbar { background: #0e1f33; }
.footer h4::after {
    content: '';
    display: block;
    width: 36px; height: 3px;
    margin-top: 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, #7be08a, #2f7d4f);
}

/* Wellen raus, Startseite mit Diagonalschnitt */
.hero-wave, .page-hero-wave { display: none; }
.hero-split { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); padding-bottom: 90px; }
.hero-scroll { bottom: 120px; }
.page-hero { padding-bottom: 72px; }

/* Mint-Linie unter der Navigation */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7be08a 0%, #2f7d4f 55%, #0e2942 100%);
}

/* Buttons: Mint mit Dunkelblau-Text */
.btn-primary {
    background: #7be08a;
    color: #0e1f33;
    box-shadow: 0 10px 28px rgba(123, 224, 138, 0.40);
}
.btn-primary:hover { background: #8ee89b; box-shadow: 0 14px 36px rgba(123, 224, 138, 0.55); }
.nav-cta {
    background: #7be08a !important;
    color: #0e1f33 !important;
    box-shadow: 0 6px 20px rgba(123, 224, 138, 0.40);
}
.nav-cta:hover { box-shadow: 0 10px 28px rgba(123, 224, 138, 0.55); }
.btn-outline { color: #2f7d4f; border-color: #2f7d4f; }
.btn-outline:hover { background: #2f7d4f; color: #ffffff; }

/* Karten: weiss mit dezentem Schatten */
.service-tile, .blog-card, .why-card, .value-card, .review-card, .contact-card,
.faq-item, .sidebar-card, .contact-form-wrapper, .about-feature, .gallery-item {
    background: #ffffff;
    border: 1px solid #e6ece8;
    box-shadow: 0 6px 24px rgba(14, 31, 51, 0.07);
}
.service-tile:hover, .blog-card:hover, .why-card:hover, .value-card:hover,
.review-card:hover, .contact-card:hover {
    box-shadow: 0 16px 44px rgba(14, 31, 51, 0.14);
}
.value-card { border-top: 4px solid #7be08a; }
.cal { background: #ffffff; border-color: #e2e9e4; }
.upload-zone { border-color: #cfdcd3; }

/* Sektions-Label + Titel-Unterstreichung */
.section-label { background: linear-gradient(120deg, #0e2942, #2f7d4f); box-shadow: 0 6px 18px rgba(14, 31, 51, 0.20); }
.section-label i { color: #7be08a; }
.section-header .section-title::after {
    content: '';
    display: block;
    width: 74px; height: 5px;
    border-radius: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #7be08a, #2f7d4f);
}

/* Sterne: Gold */
.review-stars, .fc-stars, .hero-stats-row .hs-num .hs-stars { color: #f0c040 !important; -webkit-text-fill-color: #f0c040; }

/* Hero-Statistik: neue Farben */
.hs-item:nth-child(1) .hs-num { color: #2f7d4f; }
.hs-item:nth-child(2) .hs-num { color: #0e2942; }
.hs-item:nth-child(3) .hs-num { color: #155038; }
.hero-stats-row { border-color: #e2e9e4; }

/* Dropdown-Icons einheitlich gruen */
.dropdown-menu a i { background: rgba(47, 125, 79, 0.10); color: #2f7d4f; }

/* Leistungs-Chips: Mint bei Auswahl */
.chip input:checked + span { background: #7be08a; border-color: transparent; color: #0e1f33; box-shadow: 0 6px 18px rgba(123, 224, 138, 0.40); }
.chip input:checked + span i { color: #0e1f33; }

/* Blog-Kategorie-Tags einheitlich gruen */
.blog-cat { background: rgba(47, 125, 79, 0.10) !important; color: #2f7d4f !important; }

/* ── LEISTUNGEN: 2 grosse Spalten, alle Karten einheitlich ── */
.services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-tile { background: var(--white); }
.service-tile h3 { font-size: 1.28rem; }
.service-tile p { font-size: 0.95rem; }
.service-tile .service-tile-link { font-size: 0.93rem; }
.service-tile .tile-bg-icon { font-size: 8rem; color: #2f7d4f; opacity: 0.08; }

/* Icon-Kopf: bei allen Karten derselbe gruene Verlauf */
.services-grid .tile-icon-head {
    background: linear-gradient(150deg, #0e2942 0%, #155038 75%, #2f7d4f 140%);
    aspect-ratio: 16 / 5;
    font-size: 3.4rem;
}

/* ── BLOG: Bild oben mit fester Hoehe ── */
.blog-card .img-frame { aspect-ratio: auto; height: 185px; }
.blog-card h3 { font-size: 1.05rem; }

/* Helle Flaechen */
.bg-light {
    background-image: linear-gradient(150deg, #e8f1ea 0%, #f8fbf8 50%, #eaf3ec 100%);
    background-size: 220% 220%;
    animation: gradientMove 50s ease infinite;
}
section:not([class]) { background: transparent; animation: none; }

/* Responsive fuer das Leistungsraster */
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ FEINSCHLIFF: Beige-Wort, Anruf-Icon, groessere Boxen ═══════════════ */

/* Wechselndes Wort im Hero: Beige */
.hero h1 .highlight.rotate-wrap, .hero h1 .highlight.rotate-wrap #rotateWord {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #e9d8a6;
    color: #e9d8a6;
}

/* Anruf-Icon in der Headerleiste */
.nav-phone {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(47, 125, 79, 0.10);
    border: 2px solid rgba(47, 125, 79, 0.35);
    color: #2f7d4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 1rem;
}
.nav-phone:hover {
    background: #2f7d4f !important;
    border-color: #2f7d4f;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(47, 125, 79, 0.35);
}
@media (max-width: 768px) {
    .nav-phone { width: 100%; border-radius: 12px; height: 48px; }
}

/* Leistungs-Boxen groesser, Raum besser gefuellt */
#leistungen .container { max-width: 1420px; }
.services-grid { gap: 30px; }
.service-tile-body { padding: 34px 36px 38px; }
.service-tile h3 { font-size: 1.32rem; }
.service-tile p { font-size: 0.97rem; }
.service-tile .service-tile-link { font-size: 0.95rem; }
.service-tile .tile-bg-icon { font-size: 8rem; }

/* Jede zweite Sektion: gruener Verlauf als Hintergrund */
section:not([class]):nth-of-type(even) {
    background-image: linear-gradient(150deg, #d9e9de 0%, #f3f8f4 50%, #ddeee3 100%);
    background-size: 220% 220%;
    animation: gradientMove 50s ease infinite;
}

/* ═══════════════ ICON-KACHELN & ICON-BANNER (statt KI-Fotos) ═══════════════ */
.tile-icon-head {
    aspect-ratio: 16 / 5.5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}
.tile-icon-head i { transition: var(--transition); }
.service-tile:hover .tile-icon-head i { transform: scale(1.12) rotate(-6deg); }
.icon-hausmeister { background: linear-gradient(135deg, #4db6ac, #00796b); color: #fff; }
.icon-grau { background: linear-gradient(135deg, #90a4ae, #546e7a); color: #fff; }

.icon-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 22px;
    padding: 44px 24px;
    margin: 28px 0;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}
.icon-banner i { font-size: 3.2rem; }
.icon-banner span { font-size: 0.95rem; font-weight: 600; opacity: 0.92; }

.img-frame.logo-panel {
    background: linear-gradient(150deg, #f3f8f4, #ffffff 55%, #e7f1ea);
    border: 1px solid var(--gray-light);
}
.img-frame.logo-panel img {
    object-fit: contain;
    padding: 11%;
}

/* ═══════════════ COOKIE-BANNER ═══════════════ */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: -200px;
    z-index: 9999;
    max-width: 900px;
    margin: 0 auto;
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible { bottom: 20px; }
.cookie-banner-text {
    flex: 1 1 380px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--gray-light);
}
.cookie-banner-text a { color: var(--green-bright); text-decoration: underline; }
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 11px 22px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-btn-accept { background: var(--green-light); color: var(--white); }
.cookie-btn-accept:hover { background: var(--green-bright); transform: translateY(-2px); }
.cookie-btn-decline { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.35); }
.cookie-btn-decline:hover { background: rgba(255, 255, 255, 0.1); }

#cookieEinstellungenLink { margin-left: 14px; cursor: pointer; }

@media (max-width: 600px) {
    .cookie-banner { left: 12px; right: 12px; padding: 20px; }
    .cookie-banner-buttons { width: 100%; }
    .cookie-btn { flex: 1; }
}
.img-frame.logo-panel:hover img { transform: scale(1.03); }
