/* assets/style.css - Die Aufräumer */

:root {
    /* --- BRAND-FARBEN DIE AUFRÄUMER --- */
    --primary-color: #0e3c5e;     /* Dunkelblau (aus dem Logo "DIE") */
    --primary-hover: #0a2d47;     /* Etwas dunkler für Hover */

    --brand-red: #c62828;         /* Logo-Rot ("AUFRÄUMER") */
    --brand-red-hover: #a31f1f;

    --brand-green: #77b04c;       /* Akzent-Grün (z.B. WhatsApp / Erfolg) */
    --brand-green-hover: #669840;

    --secondary-color: #6c757d;
}

body {
    background-color: #f8f9fa;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* --- FARB-ÜBERSCHREIBUNGEN (Bootstrap Override) --- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-success {
    color: var(--brand-green) !important;
}

.bg-success {
    background-color: var(--brand-green) !important;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.bg-brand-red {
    background-color: var(--brand-red) !important;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
}

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

.btn-success {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    border-radius: 50px;
    font-weight: 600;
}

.btn-success:hover {
    background-color: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
}

/* Roter Akzent-Button (für die Marke) */
.btn-brand-red {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.btn-brand-red:hover {
    background-color: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

/* ============================================
   NAVIGATION — Mobile: Fullscreen Slide-In
                 Desktop: Pill-Navigation
   ============================================ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid rgba(14, 60, 94, 0.08);
    padding: 0.6rem 0;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-nav-brand img {
    height: 52px;
    width: auto;
    display: block;
}

@media (max-width: 400px) {
    .site-nav-brand img { height: 42px; }
}

/* --- MOBILE: Hamburger / Close Button --- */
.nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.nav-burger:hover {
    background: rgba(14, 60, 94, 0.06);
}
.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0e3c5e;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

body.nav-open .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- MOBILE: Fullscreen Overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: #0e3c5e;
    z-index: 1020;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
}
body.nav-open .nav-overlay {
    transform: translateX(0);
}

.nav-overlay-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-overlay-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-overlay-link:hover,
.nav-overlay-link:focus {
    color: #fff;
    padding-left: 0.4rem;
}
.nav-overlay-link.active {
    color: #fff;
}
.nav-overlay-link.active::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c62828;
}

.nav-overlay-link-chevron {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-overlay-sub {
    list-style: none;
    padding: 0.5rem 0 1rem 1rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.nav-overlay-group.open .nav-overlay-sub {
    max-height: 600px;
}
.nav-overlay-group.open .nav-overlay-link-chevron {
    transform: rotate(180deg);
    opacity: 0.85;
}

.nav-overlay-sub a {
    display: block;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}
.nav-overlay-sub a:hover,
.nav-overlay-sub a:focus {
    color: #fff;
    transform: translateX(4px);
}

.nav-overlay-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nav-overlay-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

body.nav-open {
    overflow: hidden;
}

/* --- DESKTOP: Pill-Navigation --- */
.nav-pill-wrap {
    display: none;
}
.nav-desktop-call {
    display: none;
}

@media (min-width: 992px) {
    .nav-burger { display: none; }
    .nav-overlay { display: none; }

    .site-nav { padding: 0.85rem 0; }

    .nav-pill-wrap {
        display: inline-flex;
        align-items: center;
        background: #f4f1ea;
        padding: 4px;
        border-radius: 999px;
    }
    .nav-pill-link {
        display: inline-flex;
        align-items: center;
        font-size: 0.92rem;
        font-weight: 500;
        color: #444441;
        text-decoration: none;
        padding: 0.5rem 1.1rem;
        border-radius: 999px;
        transition: background 0.2s ease, color 0.2s ease;
        position: relative;
        white-space: nowrap;
        line-height: 1.2;
    }
    .nav-pill-link:hover {
        color: #0e3c5e;
    }
    .nav-pill-link.active {
        background: #0e3c5e;
        color: #fff;
        font-weight: 600;
    }

    .nav-pill-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .nav-pill-dropdown > .nav-pill-link::after {
        content: "▾";
        font-size: 0.7rem;
        margin-left: 0.3rem;
        opacity: 0.6;
    }
    .nav-pill-dropdown-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        background: #fff;
        min-width: 260px;
        border-radius: 14px;
        box-shadow: 0 12px 40px rgba(14, 60, 94, 0.15);
        border: 1px solid rgba(14, 60, 94, 0.06);
        padding: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
        list-style: none;
        margin: 0;
        z-index: 100;
    }
    .nav-pill-dropdown:hover .nav-pill-dropdown-menu,
    .nav-pill-dropdown:focus-within .nav-pill-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
    }
    .nav-pill-dropdown-menu a {
        display: block;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        color: #444441;
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.15s ease, color 0.15s ease;
    }
    .nav-pill-dropdown-menu a:hover {
        background: #f4f1ea;
        color: #0e3c5e;
    }
    .nav-pill-dropdown-menu hr {
        border: 0;
        border-top: 1px solid rgba(14, 60, 94, 0.08);
        margin: 0.4rem 0.5rem;
    }

    .nav-desktop-call {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: #c62828;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .nav-desktop-call:hover {
        color: #a31f1f;
    }
}

/* --- HERO SECTION --- */
.hero-header {
    background: linear-gradient(rgba(14, 60, 94, 0.78), rgba(14, 60, 94, 0.78)), url('img/wohnungsentruempelung.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 8rem 0;
    margin-top: -76px;
    padding-top: 10rem;
}

/* --- KARTEN HOVER --- */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #eef5fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* --- FEATURE CARDS --- */
.feature-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef5fa 0%, #d6e6f1 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* --- ANIMATIONEN --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- SERVICES GRID --- */
.service-box {
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    position: relative;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-card::before {
    content: '\201C';
    font-family: serif;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

/* --- MOBILE FOOTER FIX --- */
@media (max-width: 991.98px) {
    footer {
        padding-bottom: 110px !important;
    }
}

/* --- AKZENT FÜR DAS LOGO-FEELING (Roter Unterstreich-Effekt) --- */
.brand-accent {
    position: relative;
    display: inline-block;
}

.brand-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: var(--brand-red);
    border-radius: 2px;
}

/* ============================================
   HOME PAGE — NEUE LAYOUT-STRUKTUR
   ============================================ */

/* --- HERO + BLITZANGEBOT (Variante B, Mobile First) --- */
.hero-section {
    background: #f4f1ea;
    padding: 1.5rem 0 2.5rem;
    margin-top: -76px;
    padding-top: calc(76px + 1.5rem);
}

.hero-card,
.blitz-card {
    max-width: 560px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.hero-card-top {
    background: #fff;
    padding: 1.5rem 1.25rem 1.25rem;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.85rem;
}
.hero-stars-label {
    color: #5F5E5A;
    font-size: 0.8rem;
    margin-left: 6px;
    font-weight: 500;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0e3c5e;
    margin: 0 0 0.5rem;
}

.hero-subline {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #444441;
    margin: 0;
}

.hero-card-bottom {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
}

.btn-hero-main {
    display: block;
    width: 100%;
    background: #0e3c5e;
    color: #fff;
    text-align: center;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.625rem;
    border: none;
    transition: background 0.2s ease, transform 0.1s ease;
}
.btn-hero-main:hover {
    background: #0a2d47;
    color: #fff;
    transform: translateY(-1px);
}

.btn-hero-call-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    background: #fff;
    color: #0e3c5e;
    text-decoration: none;
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    border: 1.5px solid #0e3c5e;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.btn-hero-call-single:hover {
    background: #0e3c5e;
    color: #fff;
    transform: translateY(-1px);
}
.btn-hero-call-single:hover .btn-hero-call-icon {
    background: #c62828;
    color: #fff;
}
.btn-hero-call-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c62828;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}
.btn-hero-call-single:hover .btn-hero-call-icon {
    transform: rotate(-12deg);
}

.hero-trust {
    display: flex;
    align-items: center;
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.78rem;
    color: #5F5E5A;
}

.blitz-card { margin-top: 1rem; }

.blitz-card-header {
    background: #c62828;
    color: #fff;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.blitz-icon { font-size: 1.2rem; }

.blitz-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.blitz-subtitle {
    font-size: 0.78rem;
    opacity: 0.9;
    line-height: 1.2;
    margin-top: 2px;
}

.blitz-card-body { padding: 1.125rem 1.25rem 1.25rem; }

.blitz-input {
    padding: 0.85rem 0.95rem !important;
    font-size: 0.95rem !important;
    border: 1px solid #B4B2A9 !important;
    border-radius: 8px !important;
    background: #fff !important;
    height: auto !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.blitz-input:focus {
    border-color: #0e3c5e !important;
    box-shadow: 0 0 0 3px rgba(14, 60, 94, 0.12) !important;
    outline: none !important;
}
.blitz-input::placeholder { color: #888780; }

.btn-blitz {
    background: #c62828;
    color: #fff;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
.btn-blitz:hover {
    background: #a31f1f;
    color: #fff;
    transform: translateY(-1px);
}

.blitz-disclaimer {
    font-size: 0.72rem;
    color: #888780;
    margin: 0.625rem 0 0;
    text-align: center;
    line-height: 1.45;
}
.blitz-disclaimer a {
    color: #0e3c5e;
    text-decoration: underline;
}

/* --- SECTION INTRO (alle Sektionen) --- */
.section-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c62828;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.625rem;
    padding: 0.25rem 0.75rem;
    background: rgba(198, 40, 40, 0.08);
    border-radius: 999px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0e3c5e;
    line-height: 1.25;
    margin: 0 0 0.75rem;
}

.section-lead {
    font-size: 1.05rem;
    color: #5F5E5A;
    line-height: 1.55;
    margin: 0;
}

/* --- WAS WIR RÄUMEN — Big-Tile Liste (vertikal, asymmetrisch) --- */
.services-section {
    background: #fff;
}

.big-tile-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid rgba(14, 60, 94, 0.1);
}

.big-tile {
    display: grid;
    grid-template-columns: 56px 1fr 32px;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(14, 60, 94, 0.1);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.big-tile:hover {
    background: #f4f1ea;
    color: inherit;
    padding-left: 1.5rem;
}

.big-tile-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(14, 60, 94, 0.25);
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.big-tile:hover .big-tile-num {
    color: #c62828;
}

.big-tile-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0e3c5e;
    margin: 0 0 0.25rem;
}

.big-tile-text {
    font-size: 0.9rem;
    color: #5F5E5A;
    line-height: 1.5;
    margin: 0;
}

.big-tile-arrow {
    color: #B4B2A9;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.big-tile:hover .big-tile-arrow {
    color: #c62828;
    transform: translateX(4px);
}

.big-tile-highlight {
    background: linear-gradient(90deg, rgba(198, 40, 40, 0.04) 0%, transparent 100%);
}
.big-tile-highlight .big-tile-num {
    color: rgba(198, 40, 40, 0.4);
}

/* --- TIMELINE — Vertikaler Zeitstrahl --- */
.timeline-section {
    background: #f4f1ea;
}

.timeline {
    position: relative;
    max-width: 720px;
    padding-left: 0;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: rgba(14, 60, 94, 0.15);
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0e3c5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0e3c5e;
    font-size: 1.15rem;
    z-index: 1;
    position: relative;
}

.timeline-marker-final {
    background: #77b04c;
    border-color: #77b04c;
    color: #fff;
}

.timeline-body {
    padding-top: 0.5rem;
}

.timeline-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c62828;
    background: #fff;
    border: 1px solid rgba(198, 40, 40, 0.2);
    padding: 0.2rem 0.625rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0e3c5e;
    margin: 0 0 0.5rem;
}

.timeline-text {
    font-size: 0.92rem;
    color: #5F5E5A;
    line-height: 1.55;
    margin: 0;
}

/* --- ECHTPROJEKTE / Mini-Caselets --- */
.cases-section {
    background: #fff;
}

.case-card {
    background: #fff;
    border: 1px solid rgba(14, 60, 94, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 60, 94, 0.08);
    border-color: #c62828;
}

.case-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #c62828;
    background: rgba(198, 40, 40, 0.08);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e3c5e;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.case-card-meta {
    font-size: 0.85rem;
    color: #888780;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(14, 60, 94, 0.15);
}

.case-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-card-list li {
    font-size: 0.88rem;
    color: #444441;
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
}

.case-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #77b04c;
    font-weight: 700;
}

/* --- BIG QUOTE Section --- */
.quote-section {
    background: #0e3c5e;
    color: #fff;
    padding: 4.5rem 0;
}

.big-quote {
    max-width: 760px;
    text-align: center;
    position: relative;
}

.big-quote-mark {
    font-size: 3rem;
    color: rgba(198, 40, 40, 0.6);
    margin-bottom: 0.75rem;
}

.big-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.55;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 2rem;
    border: none;
    padding: 0;
}

.big-quote-author {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.big-quote-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 0.375rem;
}

.big-quote-author strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.big-quote-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* --- FAQ --- */
.faq-section {
    background: #fff;
}

.faq-wrapper {
    max-width: 760px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #f4f1ea;
    color: #0e3c5e;
}

.faq-section .accordion-button {
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
}

/* --- FINALER CTA --- */
.final-cta {
    background: #f4f1ea;
}

.cta-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(14, 60, 94, 0.1);
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 760px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c62828 0%, #0e3c5e 100%);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0e3c5e;
    margin-bottom: 0.875rem;
}

.cta-text {
    font-size: 1rem;
    color: #5F5E5A;
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

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

.btn-cta-primary,
.btn-cta-whatsapp,
.btn-cta-form {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.1s ease, background 0.2s ease;
}

.btn-cta-primary {
    background: #0e3c5e;
    color: #fff;
}
.btn-cta-primary:hover {
    background: #0a2d47;
    color: #fff;
    transform: translateY(-1px);
}

.btn-cta-whatsapp {
    background: #77b04c;
    color: #fff;
}
.btn-cta-whatsapp:hover {
    background: #669840;
    color: #fff;
    transform: translateY(-1px);
}

.btn-cta-form {
    background: #fff;
    color: #0e3c5e;
    border: 1px solid #0e3c5e;
}
.btn-cta-form:hover {
    background: #0e3c5e;
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
    .hero-section {
        padding: 2rem 0 3.5rem;
        padding-top: calc(76px + 2rem);
    }
    .hero-title { font-size: 2rem; }
    .hero-subline { font-size: 1.05rem; }
    .hero-card-top { padding: 2rem 1.75rem 1.5rem; }
    .hero-card-bottom { padding: 1.25rem 1.75rem 1.5rem; }
    .blitz-card-body { padding: 1.5rem 1.75rem 1.75rem; }

    .section-title { font-size: 2.25rem; }

    .big-tile {
        grid-template-columns: 80px 1fr 40px;
        padding: 2rem 1.5rem;
    }
    .big-tile-num { font-size: 1.75rem; }
    .big-tile-title { font-size: 1.4rem; }
    .big-tile-text { font-size: 0.95rem; }

    .timeline-item { grid-template-columns: 64px 1fr; gap: 1.5rem; }
    .timeline-marker { width: 64px; height: 64px; font-size: 1.3rem; }
    .timeline-item:not(:last-child)::before { left: 31px; top: 64px; }
    .timeline-title { font-size: 1.35rem; }

    .big-quote blockquote { font-size: 1.5rem; }

    .cta-card { padding: 3.5rem 2.5rem; }
    .cta-title { font-size: 2.25rem; }
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .hero-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
        max-width: 1140px;
    }
    .hero-card,
    .blitz-card {
        max-width: 100%;
        margin: 0;
    }
    .blitz-card { margin-top: 0; }
    .hero-title { font-size: 2.4rem; }
}

/* ============================================
   FORMULAR-VALIDIERUNG (Blitzangebot)
   ============================================ */
.blitz-input.is-invalid {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12) !important;
    background: #fff8f8 !important;
}

.blitz-error {
    color: #c62828;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.35rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}
.blitz-error::before {
    content: "⚠";
    flex: 0 0 auto;
    font-size: 0.85rem;
    line-height: 1;
}

/* ============================================
   LEISTUNGEN-SEKTION (Bild + Text)
   ============================================ */
.leistungen-section {
    background: #fff;
}

.leistungen-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1080px;
    margin: 0 auto;
}

.leistung-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.leistung-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f4f1ea;
}

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

.leistung-row:hover .leistung-image img {
    transform: scale(1.03);
}

.leistung-badge {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    background: #c62828;
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.leistung-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e3c5e;
    line-height: 1.2;
    margin: 0 0 0.875rem;
}

.leistung-text p {
    font-size: 1rem;
    color: #5F5E5A;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.leistung-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.leistung-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    color: #444441;
    line-height: 1.5;
}

.leistung-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 1rem;
    height: 2px;
    background: #c62828;
}

@media (min-width: 768px) {
    .leistungen-grid { gap: 5rem; }

    .leistung-row {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .leistung-row-reverse .leistung-image {
        order: 2;
    }
    .leistung-text h3 { font-size: 1.85rem; }
}

@media (min-width: 992px) {
    .leistung-row { gap: 4rem; }
    .leistung-text h3 { font-size: 2rem; }
}

/* ============================================
   MOBILE ACTION BAR — Geteilte Pille
   ============================================ */
.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 1040;
    padding: 0 1rem;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.mobile-action-pill {
    pointer-events: auto;
    display: inline-flex;
    align-items: stretch;
    background: #0e3c5e;
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(14, 60, 94, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-width: calc(100vw - 2rem);
}

body.action-bar-hidden .mobile-action-pill {
    transform: translateY(120%);
    opacity: 0;
}

.mobile-action-call,
.mobile-action-chat {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, transform 0.1s ease, color 0.2s ease;
    white-space: nowrap;
}

.mobile-action-call {
    background: #c62828;
    color: #ffffff;
    padding: 0.7rem 1.2rem 0.7rem 1.4rem;
    border-radius: 999px 4px 4px 999px;
    font-size: 0.95rem;
}
.mobile-action-call:hover,
.mobile-action-call:active {
    background: #a31f1f;
    color: #ffffff;
}
.mobile-action-call i {
    font-size: 1rem;
}

.mobile-action-chat {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    border-radius: 4px 999px 999px 4px;
    font-size: 0.85rem;
    font-weight: 500;
}
.mobile-action-chat:hover,
.mobile-action-chat:active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.mobile-action-chat i {
    font-size: 1.05rem;
    color: #77b04c;
}

@media (max-width: 360px) {
    .mobile-action-call {
        padding: 0.65rem 1rem 0.65rem 1.15rem;
        font-size: 0.9rem;
    }
    .mobile-action-chat {
        padding: 0.65rem 1rem 0.65rem 0.85rem;
        font-size: 0.8rem;
    }
}
