/* ============================================================
   GÖRZEN HAUSHALTSAUFLÖSUNG & ENTRÜMPELUNG
   Hochwertiges, authentisches Handwerker-Designsystem 2026
   100% DSGVO-konform · Keine externen Google Fonts · Höchste Performance
   ============================================================ */

:root {
    /* Farbwelt Handwerk & Vertrauen */
    --primary:          #1d4ed8;  /* Handwerker-Blau */
    --primary-dark:     #1e40af;
    --primary-deep:     #0f172a;  /* Schiefer Dunkel */
    --primary-light:    #eff6ff;
    --primary-glow:     rgba(29, 78, 216, 0.16);

    --accent:           #10b981;  /* WhatsApp / Bestätigungsgrün */
    --accent-dark:      #059669;
    --accent-light:     #ecfdf5;

    --success:          #16a34a;
    --success-bg:       #dcfce7;
    --warning:          #d97706;
    --warning-bg:       #fef3c7;

    --text:             #0f172a;  /* Schiefer dunkel für beste Lesbarkeit */
    --text-muted:       #475569;  /* Ruhiges Schiefergrau */
    --text-light:       #64748b;
    --text-inverse:     #ffffff;

    --border:           #e2e8f0;
    --border-subtle:    rgba(15, 23, 42, 0.08);
    --border-focus:     #1d4ed8;

    --bg:               #ffffff;
    --bg-subtle:        #f8fafc;
    --bg-muted:         #f1f5f9;
    --surface-card:     #ffffff;
    --surface-dark:     #0f172a;

    --radius-xs:        6px;
    --radius-sm:        10px;
    --radius-md:        16px;
    --radius-lg:        24px;
    --radius-full:      9999px;

    /* Subtile, architektonische Schatten */
    --shadow-xs:        0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm:        0 2px 6px -1px rgba(15, 23, 42, 0.06);
    --shadow-md:        0 8px 24px -4px rgba(15, 23, 42, 0.08);
    --shadow-lg:        0 20px 40px -8px rgba(15, 23, 42, 0.12);
    --shadow-blue:      0 8px 20px -3px rgba(29, 78, 216, 0.25);

    --transition:       all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --container-pad:    1.5rem;
}

/* ============================================================
   RESET & BASIS-TYPOGRAFIE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto; /* per JS gesteuert für präzises Scrollen */
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    width: 100%;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: normal;
}

p a,
.checklist-card a {
    overflow-wrap: break-word;
    word-break: break-word;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

h1, h2, h3, h4 {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.22;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
}

h1 { font-size: clamp(2.0rem, 1.4rem + 2.2vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.3vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1.02rem; }

p {
    text-wrap: pretty;
}

.subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 62ch;
    margin: 0.5rem auto 2.25rem;
    line-height: 1.6;
}

/* ============================================================
   CONTAINER & LAYOUT-UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.container-sm {
    max-width: 820px;
    margin: 0 auto;
}

.section {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    position: relative;
}

.section.bg-light {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}

.text-center {
    text-align: center;
}

/* ============================================================
   BUTTONS & BADGES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    line-height: 1.2;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.55rem 1.05rem;
    font-size: 0.88rem;
}

.btn-xs {
    padding: 0.38rem 0.8rem;
    font-size: 0.82rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
    border-color: rgba(22, 163, 74, 0.2);
}

.badge-neutral {
    background: var(--bg-muted);
    color: var(--text-muted);
    border-color: var(--border);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon-badge {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover .logo-icon-badge {
    background: var(--primary);
    color: #ffffff;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.1;
}

.logo-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.desktop-nav {
    display: none;
    align-items: center;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    white-space: nowrap !important;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    flex-shrink: 0;
    padding: 0.35rem 0.2rem;
    position: relative;
}

@media (min-width: 992px) and (max-width: 1240px) {
    .desktop-nav .nav-links {
        gap: 0.75rem;
    }
    .desktop-nav a,
    .dropdown-toggle {
        font-size: 0.84rem;
        padding: 0.3rem 0.15rem;
    }
    .header-container {
        gap: 0.75rem;
    }
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-chip {
    font-size: 0.68rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    margin-left: 0.35rem;
    font-weight: 700;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

.dropdown-toggle:hover {
    color: var(--primary);
}

.dropdown-chevron {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 310px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 110;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-subtle);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
    display: block;
    margin-bottom: 0.15rem;
    white-space: nowrap !important;
}

.dropdown-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: block;
}

/* Header Quick Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.live-status-pill {
    display: none !important;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.header-phone-badge {
    display: none;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    flex-shrink: 0;
}

.header-phone-badge:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
}

.phone-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .header-phone-badge {
        display: inline-flex;
    }
}

/* Mobile Quick Phone Call Icon */
.mobile-header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-dark);
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-header-call:hover {
    background: var(--accent);
    color: #ffffff;
}

@media (min-width: 992px) {
    .mobile-header-call {
        display: none !important;
    }
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.mobile-menu-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

.hamburger {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before { top: -5px; }
.hamburger::after  { top:  5px; }

/* ============================================================
   HERO: ASYMMETRISCHES CRAFTSMAN STATEMENT
   ============================================================ */
.hero {
    padding: clamp(3.5rem, 5.5vw, 5.5rem) 0 3.5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero .subtitle {
    margin: 1.25rem 0 2rem 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-actions .btn-offer {
    padding: 0.85rem 1.65rem;
    font-size: 1rem;
}

.hero-actions .btn-call {
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
}

.trust-signals {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-signal-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text);
}

.trust-signal-item svg {
    color: var(--success);
}

.trust-sep {
    color: var(--border);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-md);
}

.fb-icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-badge strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text);
}

.floating-badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   TRUST BAR (BAND UNTER HERO)
   ============================================================ */
.trust-bar {
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
}

.trust-bar-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.trust-bar-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   ANGEBOTE & LEISTUNGEN
   ============================================================ */
.editorial-services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
}

/* 1. Hero Service Card (Haushaltsauflösung) */
.service-hero-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-hero-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.3);
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fde68a;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 1rem;
    position: static;
}

.service-head-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-head-group h3 {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.service-card-intro {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-value-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-xs);
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-value-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.service-value-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.45;
}

.service-value-text strong {
    color: var(--primary-deep);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text);
}

.service-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

.service-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

/* 2. & 3. Secondary Services Stack */
.service-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-compact-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-compact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.3);
}

.service-compact-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.service-compact-header .service-icon-box {
    width: 40px;
    height: 40px;
}

.service-compact-titles {
    flex: 1;
}

.service-compact-titles h3 {
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
}

.service-compact-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.service-pill-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
}

.service-pill-tag.tag-success {
    color: var(--success);
    background: var(--success-bg);
}

.service-compact-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-compact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================================
   ABLAUF & VORHER / NACHHER VERGLEICH
   ============================================================ */
.process-roadmap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.6fr);
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.process-step {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.process-marker-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.process-marker {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.process-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-left: 0.75rem;
}

.process-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.process-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    display: block;
}

.process-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.process-highlight {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-xs);
}

.process-highlight.highlight-success {
    color: var(--success);
    background: var(--success-bg);
}

/* ============================================================
   VORHER / NACHHER VERGLEICH (MODERN SPLIT SHOWCASE)
   ============================================================ */
.comparison-section {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.transformation-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    max-width: 1040px;
    margin: 2rem auto 0;
}

@media (min-width: 900px) {
    .transformation-comparison-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
        gap: 1.5rem;
    }
}

.transformation-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.transformation-card.card-before {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fffafa 0%, #ffffff 100%);
}

.transformation-card.card-after {
    border-color: #a7f3d0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 10px 30px -6px rgba(22, 163, 74, 0.12);
}

.transformation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.transformation-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.75rem;
    border-radius: var(--radius-full);
}

.tag-before {
    background: #fee2e2;
    color: #991b1b;
}

.tag-after {
    background: #dcfce7;
    color: #166534;
}

.transformation-status-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.card-before .transformation-status-label {
    color: #b91c1c;
}

.card-after .transformation-status-label {
    color: #15803d;
}

.transformation-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.icon-before {
    background: #fee2e2;
    color: #dc2626;
}

.icon-after {
    background: #dcfce7;
    color: #16a34a;
}

.transformation-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.transformation-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transformation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.transformation-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.list-before li {
    color: #7f1d1d;
}

.list-before svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.list-after li {
    color: #14532d;
    font-weight: 600;
}

.list-after svg {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Central Connector Bridge (Desktop) */
.transformation-connector {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 900px) {
    .transformation-connector {
        display: flex;
    }
}

.connector-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.connector-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ============================================================
   PREISE & ORIENTIERUNG
   ============================================================ */
.pricing-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.pricing-segmented-control {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    background: var(--bg-muted);
    padding: 0.4rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.pricing-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.tab-label-group {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-tab-btn:hover {
    color: var(--text);
}

.pricing-tab-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.tab-badge {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-tab-btn.active .tab-badge {
    color: var(--primary-dark);
}

.pricing-showcase-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.pricing-showcase-scope {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.35rem;
    display: block;
}

.pricing-showcase-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pricing-showcase-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text);
}

.pricing-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-showcase-action {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-action-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.pricing-price-tag {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-deep);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.pricing-price-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.pricing-guarantee-note {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.pricing-info-note {
    max-width: 900px;
    margin: 1.25rem auto 0;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-info-note svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   ANGEBOTS-ASSISTENT (4 SCHRITTE)
   ============================================================ */
.assistant-section {
    position: relative;
}

.wizard-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
}

.wizard-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.25rem;
    padding: 0 1rem;
}

.wizard-progress-bar::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: var(--border);
    z-index: 1;
}

.wizard-progress-fill {
    position: absolute;
    top: 18px;
    left: 2rem;
    height: 3px;
    background: var(--primary);
    z-index: 2;
    transition: width 0.3s ease;
    width: 0%;
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.step-bubble {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-indicator.active .step-bubble {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.step-indicator.completed .step-bubble {
    background: var(--success);
    border-color: var(--success);
    color: #ffffff;
}

.step-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.step-indicator.active .step-label {
    color: var(--primary);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step-title {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.wizard-step-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.wizard-choice-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.wizard-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wizard-choice-card:hover {
    border-color: var(--primary);
    background: var(--bg-subtle);
}

.wizard-choice-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 2px var(--primary);
}

.choice-icon-box {
    width: 38px;
    height: 38px;
    background: var(--bg-subtle);
    color: var(--primary);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wizard-choice-card.selected .choice-icon-box {
    background: #ffffff;
}

.choice-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.choice-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: block;
}

.detail-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.density-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.density-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition);
}

.density-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.density-card:hover {
    border-color: var(--primary);
}

.density-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.density-icon-wrapper {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.density-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.density-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
}

.pill-choice {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-choice input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pill-choice:hover {
    border-color: var(--primary);
}

.pill-choice.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.wizard-checkbox-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.wizard-checkbox-card:hover {
    border-color: var(--primary);
}

.custom-checkbox-box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: transparent;
    transition: var(--transition);
}

.wizard-checkbox-card.selected .custom-checkbox-box {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* File Upload Dropzone */
.file-upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    text-align: center;
    background: var(--bg-subtle);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.file-upload-zone:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.file-upload-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon-svg {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.upload-main-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.upload-sub-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.file-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

/* Zusammenfassung & Estimate (Schritt 4) */
.wizard-summary-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.summary-title svg {
    color: var(--success);
}

.summary-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.summary-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-item strong {
    color: var(--text);
}

.wizard-estimate-card {
    background: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

.estimate-badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: var(--success);
}

.estimate-price-range {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary-deep);
    margin: 0.25rem 0 0.5rem;
}

.estimate-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 54ch;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    color: var(--text);
    background: #ffffff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

/* Success Banner */
.wizard-success-banner {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem;
}

.wizard-success-banner.active {
    display: block;
}

.wizard-success-icon {
    width: 64px;
    height: 64px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* ============================================================
   EINSATZGEBIET & STANDORT
   ============================================================ */
.gebiet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.location-checker-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.calc-header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.calc-header-title svg {
    color: var(--primary);
}

.calc-header-title h3 {
    font-size: 1.25rem;
}

.location-calc-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.calc-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.calc-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.calc-input-field {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    background: var(--bg-subtle);
    transition: var(--transition);
}

.calc-input-field:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.city-chips-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.city-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
    cursor: pointer;
}

.city-chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.calc-result-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-top: auto;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--success);
}

.result-status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.result-item-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.result-item-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Spalte Rechts: 2 Zonen & Map */
.gebiet-col-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.zone-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.zone-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.65rem;
}

.zone-badge.zone-core {
    background: var(--primary-light);
    color: var(--primary);
}

.zone-badge.zone-wide {
    background: #ecfdf5;
    color: #166534;
}

.zone-card h4 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.zone-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.zone-highlight {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.zone-highlight-wide {
    color: #166534;
}

.map-card-wrapper {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-embed-container {
    width: 100%;
    height: 220px;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer-bar {
    padding: 0.85rem 1.15rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.map-address-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}

.map-address-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.map-privacy-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================================
   ÜBER UNS & WERTE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
}

.about-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
}

.about-badge-card {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: var(--shadow-md);
}

.about-badge-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.about-badge-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about-lead-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.about-lead-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
}

.about-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.about-highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text);
}

.about-highlights-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.35rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pillar-icon-box {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.pillar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Google CTA Box */
.google-cta-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.google-cta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo-box {
    flex-shrink: 0;
}

.google-cta-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.google-cta-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 58ch;
}

/* ============================================================
   KUNDENSTIMMEN
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.25);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-stars-group {
    display: inline-flex;
    gap: 2px;
}

.review-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.review-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.review-author-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.carousel-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.carousel-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    gap: 0.4rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}

.carousel-dot.active {
    width: 20px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

.review-summary-bar {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.review-summary-score-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.review-rating-score {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
}

.review-summary-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ (AKKORDEON)
   ============================================================ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(29, 78, 216, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.15rem 1.35rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.35rem 1.25rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.unified-contact-hub {
    max-width: 960px;
    margin: 0 auto;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-channel-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
    position: relative;
}

.contact-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-channel-card.whatsapp-channel:hover {
    border-color: #25d366;
}

.channel-icon-box {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.channel-icon-box.phone {
    background: var(--primary-light);
    color: var(--primary);
}

.channel-icon-box.whatsapp {
    background: #ecfdf5;
    color: #059669;
}

.channel-icon-box.callback {
    background: #fef3c7;
    color: #d97706;
}

.channel-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.channel-tag.tag-success {
    color: #059669;
}

.channel-tag.tag-warning {
    color: #d97706;
}

.channel-content strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.channel-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

.channel-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-channel-card:hover .channel-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.contact-secondary-bar {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.15rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-xs);
}

.secondary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.secondary-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.secondary-item strong {
    color: var(--text);
}

/* ============================================================
   MAIN FOOTER
   ============================================================ */
.main-footer {
    background: var(--surface-dark);
    color: #cbd5e1;
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-grid h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
}

.footer-intro-text {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 42ch;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-tax-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.45;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #64748b;
    text-align: center;
}

/* ============================================================
   MOBILE FLOATING BAR & BOTTOM SHEET
   ============================================================ */
.mobile-floating-contact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 0.65rem 1rem env(safe-area-inset-bottom, 0.65rem);
    z-index: 99;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.floating-menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-xs);
}

.floating-pill-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: var(--shadow-sm);
}

.floating-quick-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.floating-icon-btn.wa-btn {
    background: #ecfdf5;
    border-color: rgba(5, 150, 105, 0.2);
    color: #059669;
}

/* App-Style Bottom Sheet */
.mobile-bottom-sheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.mobile-bottom-sheet.open,
.mobile-bottom-sheet.active {
    display: block;
}

.sheet-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sheet-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: sheetSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sheetSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sheet-drag-zone {
    padding: 0.75rem 0 0.25rem;
    display: flex;
    justify-content: center;
}

.sheet-drag-handle {
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.sheet-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.sheet-logo-badge {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sheet-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--text);
    display: block;
    line-height: 1.1;
}

.sheet-status-pill {
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.sheet-status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.sheet-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.sheet-scroll-body {
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.sheet-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sheet-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: var(--text-muted);
}

.sheet-section-badge {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
}

.sheet-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sheet-service-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sheet-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-xs);
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sheet-card-content {
    flex: 1;
}

.sheet-card-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.sheet-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sheet-chevron {
    color: var(--text-light);
}

.sheet-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.sheet-quick-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.sheet-quick-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.sheet-quick-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.sheet-quick-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
}

.sheet-actions-hub {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sheet-action-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    text-align: left;
}

.sheet-action-call {
    background: var(--primary);
    color: #ffffff;
}

.sheet-action-call strong {
    display: block;
    font-size: 0.98rem;
}

.sheet-action-call span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.sheet-action-wa {
    background: #ecfdf5;
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
}

.sheet-action-wa strong {
    display: block;
    font-size: 0.98rem;
}

.sheet-action-wa span {
    font-size: 0.75rem;
    color: #059669;
}

.sheet-action-callback {
    background: #ffffff;
    border: 1px solid var(--border);
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.sheet-footer-legal {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    padding-top: 0.5rem;
}

.sheet-footer-legal a {
    color: var(--text-muted);
}

/* ============================================================
   NATIVE DIALOG: EXPRESS-RÜCKRUF
   ============================================================ */
.callback-dialog {
    border: none;
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: #ffffff;
    max-width: 440px;
    width: 90%;
    margin: auto;
    box-shadow: var(--shadow-lg);
}

.callback-dialog::backdrop {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
}

.dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.dialog-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.dialog-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dialog-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* ============================================================
   SUBPAGES COMMON STYLES
   ============================================================ */
.subpage-hero {
    padding: 3rem 0 2.5rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs-sep {
    color: var(--border);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
}

.checklist-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================ */

/* TABLET & MOBILE BREAKPOINT (<= 1024px) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .trust-bar-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .process-roadmap {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.75rem;
    }

    .process-line {
        display: none;
    }

    .pricing-showcase-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

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

    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* MOBILE SMARTPHONE BREAKPOINT (<= 768px) */
@media (max-width: 768px) {
    :root {
        --container-pad: 1rem;
    }

    .hidden-mobile {
        display: none !important;
    }

    .hidden-desktop {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-floating-contact {
        display: flex;
    }

    body {
        padding-bottom: 74px; /* Freiraum für mobile Floating Bar */
    }

    .header-container {
        height: 60px;
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .live-status-pill {
        display: none !important;
    }

    .header-phone-badge {
        display: none !important;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-icon-badge {
        width: 36px;
        height: 36px;
    }

    .logo-main {
        font-size: 1.05rem;
    }

    .logo-tag, .logo-sub {
        font-size: 0.68rem;
    }

    .hero {
        padding: 2rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-bar-items {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Swipeable Angebote auf Smartphone */
    .editorial-services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .editorial-services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-hero-card,
    .service-stack {
        min-width: 86vw;
        max-width: 86vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .service-compact-card {
        margin-bottom: 0;
    }

    /* Preise Mobile */
    .pricing-segmented-control {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .wizard-card {
        padding: 1.25rem;
    }

    .option-grid,
    .density-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .summary-list {
        grid-template-columns: 1fr;
    }

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

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    /* Swipeable Reviews auf Smartphone */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: 84vw;
        max-width: 84vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .carousel-nav {
        display: flex;
    }

    .google-cta-card {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .review-summary-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }

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

    .contact-secondary-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .subpage-hero-grid {
        grid-template-columns: 1fr;
    }

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

/* SMARTPHONES (<= 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .mobile-menu-label {
        display: none !important;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: var(--radius-sm);
    }

    .mobile-header-call {
        width: 38px;
        height: 38px;
    }

    .logo {
        gap: 0.5rem;
        max-width: calc(100% - 92px);
    }

    .logo-icon-badge {
        width: 34px;
        height: 34px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-tag, .logo-sub {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* KLEINSTE SMARTPHONES (<= 360px) */
@media (max-width: 360px) {
    .header-container {
        padding: 0 0.5rem;
        gap: 0.35rem;
    }

    .header-actions {
        gap: 0.35rem;
    }

    .logo {
        gap: 0.35rem;
        max-width: calc(100% - 82px);
    }

    .logo-icon-badge {
        width: 30px;
        height: 30px;
    }

    .logo-main {
        font-size: 0.92rem;
    }

    .logo-tag, .logo-sub {
        font-size: 0.6rem;
    }

    .mobile-header-call {
        width: 34px;
        height: 34px;
    }

    .mobile-menu-btn {
        width: 34px;
        height: 34px;
    }

    .pricing-segmented-control {
        grid-template-columns: 1fr;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .pricing-price-tag {
        font-size: 1.65rem;
    }
}

