/* CSS Custom Properties & Base Setup */
:root {
    --primary-color: #0b2545; /* Modern, trustworthy Navy Blue */
    --primary-light: #133a6f;
    --secondary-color: #e62020; /* Energetic Amber/Orange */
    --secondary-hover: #cc1b1b;
    
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --heading-color: #0f172a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

input, select, textarea, button {
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For sticky header */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.py-section {
    padding: 5rem 0;
    position: relative;
}
@media (max-width: 768px) {
    .py-section {
        padding: 3.5rem 0;
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark-premium {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.bg-dark-premium::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(230, 32, 32, 0.05) 0%, rgba(230, 32, 32, 0) 70%);
}

.bg-dark-premium::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}

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

/* Typography & Utilities */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-5 {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 6px rgba(230, 32, 32, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 32, 32, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    transition: var(--transition);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

/* Mobile Menu Active State */
.mobile-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.breadcrumb-container {
    background-color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    padding: 1.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 10;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset for header */
    padding-bottom: 60px; /* Space at bottom */
    overflow: hidden;
}

.hero-background {
    position: fixed; /* Parallax effect */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    transform: translateZ(0); /* Hardware acceleration */
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0.6) 50%, rgba(11, 37, 69, 0.3) 100%);
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(230, 32, 32, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--secondary-color);
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.modern-service-card {
    background-color: var(--bg-color); /* Light background base */
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(11, 37, 69, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08);
}

.modern-service-card:hover::before {
    opacity: 1;
}

.msc-link-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
}

.msc-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.modern-service-card:hover .msc-icon-wrapper {
    color: var(--secondary-color);
}

.msc-icon-wrapper svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.msc-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.msc-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.msc-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.msc-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.msc-link .arrow {
    transition: transform 0.3s ease;
}

.modern-service-card:hover .msc-link {
    color: var(--secondary-color);
}

.modern-service-card:hover .msc-link .arrow {
    transform: translateX(6px);
}

/* MICRO ANIMATIONS */

/* 1. Umzug: Box Lid */
.icon-umzug .box-lid {
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modern-service-card:hover .icon-umzug .box-lid {
    transform: translateY(-4px) scale(1.05);
}

/* 2. Reinigung: Sparkles */
.icon-reinigung .sparkles {
    transform-origin: center;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.modern-service-card:hover .icon-reinigung .sparkles {
    animation: sparkle-spin 1.5s linear infinite;
}
@keyframes sparkle-spin {
    0% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.8; }
}

/* 3. Räumung: Trash Lid */
.icon-raeumung .trash-lid {
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modern-service-card:hover .icon-raeumung .trash-lid {
    transform: rotate(-15deg) translateY(-2px);
}

/* 4. Lagerung: Lock Shackle */
.icon-lagerung .lock-shackle {
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modern-service-card:hover .icon-lagerung .lock-shackle {
    transform: translateY(-4px) rotate(5deg);
}

/* 5. Klavier: Music Notes */
.icon-klavier .music-note {
    transition: transform 0.5s ease;
}
.modern-service-card:hover .icon-klavier .n1 {
    transform: translateY(-5px) translateX(-2px);
    animation: float-note 2s ease-in-out infinite alternate;
}
.modern-service-card:hover .icon-klavier .n2 {
    transform: translateY(-8px) translateX(2px);
    animation: float-note 2s ease-in-out infinite alternate-reverse;
}
@keyframes float-note {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
}

/* 6. Lift: Platform up */
.icon-lift .lift-platform, .icon-lift .lift-arrow-stem, .icon-lift .lift-arrow-head {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modern-service-card:hover .icon-lift .lift-platform,
.modern-service-card:hover .icon-lift .lift-arrow-stem,
.modern-service-card:hover .icon-lift .lift-arrow-head {
    transform: translateY(-4px);
}

/* About / SEO Text */
.about-section {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid.reverse {
        direction: ltr;
    }
}

/* Process */
.process {
    background-color: var(--bg-color); /* Fix parallax bleed */
}
.about-section {
    background-color: var(--bg-light); /* Fix parallax bleed */
}
.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modern-process-step {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-color); /* Matches the tinted card style */
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(11, 37, 69, 0.05);
    z-index: 1;
    overflow: hidden;
}

.modern-process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.modern-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08);
}

.modern-process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(11, 37, 69, 0.2);
}

.modern-process-step h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.modern-process-step p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Timeline Truck Animation */
.moving-timeline-truck {
    animation: drive-timeline 6s ease-in-out infinite;
}

@keyframes drive-timeline {
    0% { transform: translate(20px, 42px); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translate(180px, 42px); } /* middle of curve approx */
    90% { opacity: 1; }
    100% { transform: translate(360px, 42px); opacity: 0; }
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    background-image: radial-gradient(circle at 100% 0%, var(--primary-light) 0%, transparent 50%),
                      radial-gradient(circle at 0% 100%, var(--primary-light) 0%, transparent 50%);
    position: relative;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Radio Pill Styles (Modern Checkboxes/Radios) */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
}

.radio-pill {
    cursor: pointer;
    position: relative;
    user-select: none;
    display: block;
}

.radio-pill input[type="radio"], .radio-pill input[type="checkbox"] {
    display: none; /* Hide native input */
}

.radio-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.radio-pill:hover span {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.radio-pill input[type="radio"]:checked + span, 
.radio-pill input[type="checkbox"]:checked + span {
    background: #f8fafc;
    border-color: var(--primary-color);
    border-width: 2px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.08);
    padding: calc(1rem - 1px) calc(1.2rem - 1px); /* offset border increase */
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1);
}

.form-input option {
    color: var(--text-color);
}

/* FAQ Tabs Styles */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.faq-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-heading);
}

.faq-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.faq-tab-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 32, 32, 0.3);
}

.accordion-item.hidden {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* FAQ Premium Redesign */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start; /* Prevents card stretching */
}

@media (min-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Split FAQ Layout */
.faq-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .faq-split-container {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }
}

.faq-left-col {
    position: relative;
}

@media (min-width: 992px) {
    .faq-left-col {
        position: sticky;
        top: 120px;
    }
}

.faq-left-col .section-title {
    text-align: left !important;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
    line-height: 1.2;
}

section.bg-dark-premium .faq-left-col .section-title {
    color: #ffffff;
}

.faq-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

section.bg-dark-premium .faq-intro-text {
    color: rgba(255, 255, 255, 0.7);
}

.faq-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    border-radius: 20px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

section:not(.bg-dark-premium) .faq-cta-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.faq-cta-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

section.bg-dark-premium .faq-cta-box h5 {
    color: #ffffff;
}

.faq-cta-box p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

section.bg-dark-premium .faq-cta-box p {
    color: rgba(255, 255, 255, 0.6);
}

.faq-right-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .faq-right-col {
        padding-top: 3.4rem; /* Aligns first accordion card level with the heading text */
    }
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-q-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(230, 32, 32, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.accordion-item:hover .faq-icon-box {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-header.active .accordion-icon {
    background: var(--secondary-color);
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.accordion-header.active + .accordion-content {
    padding-bottom: 1.8rem;
    max-height: 500px;
}

/* Light theme override for FAQ / Accordions when not in a dark background */
section:not(.bg-dark-premium) .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

section:not(.bg-dark-premium) .accordion-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

section:not(.bg-dark-premium) .accordion-header {
    color: var(--heading-color);
}

section:not(.bg-dark-premium) .accordion-icon {
    background: #f1f5f9;
    color: var(--text-color);
}

section:not(.bg-dark-premium) .accordion-content {
    color: var(--text-color);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    width: 100%;
}
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

.review-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(11, 37, 69, 0.05);
    font-family: serif;
}

.review-stars {
    color: #e62020;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.section {
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    max-width: 900px !important;
    margin: 0 auto 3rem;
    line-height: 1.6;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    background-size: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--heading-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.google-link:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding-top: 5rem;
}

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

.footer-logo {
    height: 56px;
    background: white;
    padding: 8px;
    border-radius: 8px;
}



.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chatbot & Whatsapp Widget */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
}

.chatbot-toggle.has-notification::after {
    content: '1';
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 420px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background-color: var(--primary-color);
    color: white !important;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header h4 {
    color: white !important;
    margin: 0;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chatbot-body {
    padding: 1.25rem 1.25rem;
    background-color: #f8fafc;
}

.chat-bubble {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.wa-button {
    background-color: #25D366;
    color: white !important;
    font-weight: 700;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

/* Chat Input Styling */
.chatbot-input-container {
    background: white;
    padding: 1.25rem 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Typing Indicator */
.typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin-bottom: 1rem;
}

.typing span {
    width: 6px;
    height: 6px;
    background: rgba(11, 37, 69, 0.3);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Chat Action Buttons (Ja/Nein) */
.chat-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.chat-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.chat-btn.primary {
    background: var(--primary-color);
    color: white;
}

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

.chatbot-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
}

.chatbot-send {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

.chat-bubble.user {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 300px;
    padding-bottom: 1rem;
}

.wa-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    background-color: #20b355;
}

.chatbot-footer {
    background: white;
    padding: 1.2rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.chatbot-footer a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* Chatbot Mobile Responsive Fix */
@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 5.5rem; /* Sit above the sticky CTA button */
        right: 1rem;
    }

    .chatbot-window {
        width: calc(100vw - 2rem) !important;
        right: 0 !important;
        left: auto !important;
        bottom: 75px !important;
        max-height: 75vh;
        overflow-y: auto;
    }

    .chatbot-messages {
        max-height: 200px;
    }
}

/* Wizard Form */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-bar-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 1;
    transform: translateY(-50%);
}

.progress-bar-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.4s ease;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.progress-step.active {
    background: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.option-card {
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.option-card input {
    display: none;
}

.option-card:hover {
    background: rgba(255,255,255,0.2);
}

.option-card input:checked + .option-content {
    color: var(--secondary-color);
    font-weight: bold;
}

.option-card:has(input:checked) {
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.15);
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: #e2e8f0;
    height: 6px;
    border-radius: 3px;
    outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-item {
    padding: 1rem;
}

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

.stats-section {
    background-color: var(--primary-color);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .header-actions .btn-primary, .header-actions .phone-link {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Hero Split Layout */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Inner Page Styles (Umzug, etc.) */
.inner-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://placehold.co/1920x600?text=Background+Pattern');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-detail-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

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

.detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.detail-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--secondary-color);
}

.cta-banner {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.extras-section {
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .inner-hero h1 {
        font-size: 2.5rem;
    }
}

/* Custom Split Layout for USPs */
.usp-split-layout {
    display: grid;
    grid-template-columns: 2.2fr 3.8fr;
    gap: 3rem;
    margin-top: 3.5rem;
    align-items: center;
}

.usp-stats-visual {
    background: linear-gradient(135deg, var(--primary-color) 0%, #153965 100%);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.usp-stats-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230, 32, 32, 0.15) 0%, rgba(230, 32, 32, 0) 70%);
    pointer-events: none;
}

.usp-stat-box {
    margin-bottom: 2.5rem;
}

.usp-stat-box:last-child {
    margin-bottom: 0;
}

.usp-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usp-stat-box:nth-child(2) .usp-stat-number {
    background: linear-gradient(to right, #ffffff, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usp-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.2rem;
}

.usp-stat-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.usp-interactive-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usp-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    background: transparent;
    border-radius: 0;
    padding: 1.5rem 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.usp-list-item:last-child {
    border-bottom: none;
}

.usp-list-item:hover {
    transform: translateX(8px);
}

.usp-item-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(11, 37, 69, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.usp-list-item:hover .usp-item-icon-wrapper {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.usp-item-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.usp-item-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.usp-item-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .usp-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Sticky Mobile CTA */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 3rem);
    max-width: 400px;
}

.sticky-btn {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(230, 32, 32, 0.4);
    font-size: 1.1rem;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .sticky-cta-mobile.visible {
        display: block;
        animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* --- Redesigned Premium Wizard (#offerte) --- */
.light-wizard {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    color: var(--text-color) !important;
    position: relative !important;
    overflow: visible !important;
}

/* Slim progress line at the very top of the card */
.light-wizard .wizard-progress {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: #f1f5f9 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    display: block !important;
}

.light-wizard .wizard-progress-bar-fill {
    height: 100% !important;
    background: var(--secondary-color) !important;
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Hide old progress step indicators */
.light-wizard .wizard-progress .progress-step {
    display: none !important;
}
.light-wizard .progress-bar-bg {
    display: none !important;
}

/* Header & Titles */
.light-wizard h2 {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
    text-align: center !important;
    letter-spacing: -0.5px !important;
}

.light-wizard p {
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
    margin-bottom: 1.0rem !important;
    text-align: center !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Step Badge Indicator */
.light-wizard #wizard-step-label {
    text-align: center !important;
    margin-bottom: 0.8rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--secondary-color) !important;
}

/* Segmented Control / Premium Pills */
.light-wizard .segmented-control {
    display: flex !important;
    background: #f1f5f9 !important;
    padding: 3px !important;
    border-radius: 12px !important;
    gap: 2px !important;
    margin-bottom: 0.8rem !important;
}

.light-wizard .segmented-control label {
    flex: 1 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.light-wizard .segmented-control input[type="radio"],
.light-wizard .segmented-control input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.light-wizard .segmented-control span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0.45rem 0.8rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    background: transparent !important;
    border-radius: 9px !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
}

.light-wizard .segmented-control input[type="radio"]:checked + span,
.light-wizard .segmented-control input[type="checkbox"]:checked + span {
    background: #ffffff !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
}

.light-wizard .segmented-control label:hover span {
    color: var(--primary-color) !important;
}

/* Forms & Inputs */
.light-wizard .form-group {
    display: grid !important;
    gap: 8px !important;
    margin-bottom: 0.8rem !important;
}

.light-wizard .form-input,
.light-wizard textarea,
.light-wizard select {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: var(--text-color) !important;
    padding: 0.55rem 0.85rem !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
    font-family: var(--font-body) !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
}

.light-wizard .form-input:focus,
.light-wizard textarea:focus,
.light-wizard select:focus {
    background: #ffffff !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(230, 32, 32, 0.1) !important;
    outline: none !important;
}

/* Subtle Labels */
.light-wizard label {
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 2px !important;
}

.light-wizard .sub-service-block {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 0.75rem !important;
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
}

.light-wizard .sub-service-block h4 {
    color: var(--primary-color) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.4rem !important;
}

/* Checkboxes & Inline Layouts */
.light-wizard .checkbox-group {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
}

.light-wizard .checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    user-select: none !important;
}

.light-wizard .checkbox-label input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    accent-color: var(--secondary-color) !important;
    cursor: pointer !important;
}

/* Navigation Buttons */
.light-wizard .wizard-navigation {
    display: flex !important;
    gap: 10px !important;
    margin-top: 1.0rem !important;
    padding-top: 0.8rem !important;
    border-top: 1px solid #e2e8f0 !important;
}

.light-wizard .wizard-navigation .btn {
    border-radius: 12px !important;
    padding: 0.65rem 1.2rem !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.08) !important;
}

/* Fix for secondary button (Zurück) */
.light-wizard .btn-secondary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
    transition: all 0.2s ease !important;
}

.light-wizard .btn-secondary:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-1px) !important;
}

.light-wizard .btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(230, 32, 32, 0.2) !important;
}

/* Animated Global Truck */
.global-truck-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
}

.road-line {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, transparent, rgba(0,0,0,0.1) 10%, rgba(0,0,0,0.1) 90%, transparent);
}

.moving-truck-svg {
    position: absolute;
    bottom: 16px;
    left: -100px;
    width: 80px;
    height: auto;
    transform: translateX(-20vw) scaleX(1);
}

/* DRIVE RIGHT */
.global-truck-container.drive-right .moving-truck-svg {
    transform: translateX(-20vw) scaleX(1);
}
.global-truck-container.drive-right.is-visible .moving-truck-svg {
    transition: transform 1.8s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform: translateX(80vw) scaleX(1);
}
.global-truck-container.drive-right.is-leaving .moving-truck-svg {
    transition: transform 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: translateX(120vw) scaleX(1);
}

/* DRIVE LEFT */
.global-truck-container.drive-left .moving-truck-svg {
    transform: translateX(120vw) scaleX(-1);
}
.global-truck-container.drive-left.is-visible .moving-truck-svg {
    transition: transform 1.8s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform: translateX(20vw) scaleX(-1);
}
.global-truck-container.drive-left.is-leaving .moving-truck-svg {
    transition: transform 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transform: translateX(-20vw) scaleX(-1);
}

/* ==========================================================================
   LAYOUT DIFFERENTIATION CLASSES
   ========================================================================== */

/* 1. Centered Hero Layout */
.hero.hero-centered {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 80px;
}
.hero.hero-centered .hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero.hero-centered .hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
}

/* 2. 3-Column Service Grid */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* 3. Horizontal Process Chain */
.process-chain {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 3rem;
}
.process-chain-step {
    flex: 1;
    background: transparent;
    padding: 2.5rem 1rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.process-chain-step:hover {
    transform: translateY(-5px);
}
.process-chain-step .step-number {
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(11, 37, 69, 0.15);
    border: 4px solid var(--bg-light);
}
@media (max-width: 992px) {
    .process-chain {
        flex-direction: column;
        gap: 3rem;
    }
    .process-chain-step {
        margin-top: 10px;
    }
}

/* 4. Vertical Timeline Layout */
.vertical-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 2rem;
    padding: 2rem 0;
}
.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(11, 37, 69, 0.1);
    transform: translateX(-50%);
}
.vertical-timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 2.5rem;
    box-sizing: border-box;
}
.vertical-timeline-item:last-child {
    margin-bottom: 0;
}
.vertical-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.vertical-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.vertical-timeline-badge {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border: 4px solid white;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    position: absolute;
    top: 15px;
    left: 100%;
    transform: translate(-50%, 0);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.vertical-timeline-item:nth-child(even) .vertical-timeline-badge {
    left: 0;
}
.vertical-timeline-content {
    background: white;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 20px;
    }
    .vertical-timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
        margin-bottom: 3rem;
    }
    .vertical-timeline-badge {
        left: 20px !important;
        top: 10px;
    }
}

/* 5. Package Pricing Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.package-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.package-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 45px rgba(230, 32, 32, 0.07);
}
.package-card.featured .badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.06);
}
.package-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.package-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.package-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}
.package-price span {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    flex-grow: 1;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}
.package-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.5;
}
.package-features li .check {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 6. Focused Testimonial Layout */
.focus-testimonial {
    background: white;
    padding: 4.5rem 3.5rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(11, 37, 69, 0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    gap: 3.5rem;
    align-items: center;
    max-width: 960px;
    margin: 3rem auto 0;
}
.focus-testimonial-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fee2e2;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(230, 32, 32, 0.1);
    border: 6px solid white;
}
.focus-testimonial-content {
    flex-grow: 1;
}
.focus-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.focus-testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}
.focus-testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}
@media (max-width: 768px) {
    .focus-testimonial {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
}

/* 7. Destination Badges */
.destination-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}
.destination-badge {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}
.destination-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 37, 69, 0.1);
}
.destination-badge span {
    font-size: 1.25rem;
}

/* Bento Grid & Bento Card styles for compact service subpages */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--secondary-color);
}

.premium-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 32, 32, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.bento-card:hover .premium-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Responsive adjustment for compact lists */
@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Interactive Map Section */
.map-section {
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.map-svg-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.district-path {
    fill: #f8fafc;
    stroke: #cbd5e1;
    stroke-width: 1.5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.district-path:hover,
.district-path.active {
    fill: rgba(230, 32, 32, 0.1);
    stroke: var(--secondary-color);
    stroke-width: 2.5;
    filter: drop-shadow(0 4px 6px rgba(230, 32, 32, 0.15));
}

/* Specific winterthur home game styling */
.district-path.focus-winterthur:hover,
.district-path.focus-winterthur.active {
    fill: rgba(11, 37, 69, 0.08);
    stroke: var(--primary-color);
}

.map-info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.map-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.map-info-badge {
    padding: 0.4rem 1.2rem;
    background: rgba(230, 32, 32, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.map-info-badge.primary-badge {
    background: rgba(11, 37, 69, 0.1);
    color: var(--primary-color);
}

.map-info-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-info-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-info-cta {
    align-self: flex-start;
}

@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Video Section */
.video-section {
    background-color: var(--bg-color);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(11, 37, 69, 0.2);
    border: 1px solid rgba(11, 37, 69, 0.06);
    background: #000;
    aspect-ratio: 16 / 9;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(11, 37, 69, 0.3);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Räumung Green Map override */
.raeumung-map .district-path:hover,
.raeumung-map .district-path.active {
    fill: rgba(22, 163, 74, 0.1) !important;
    stroke: #16a34a !important;
    filter: drop-shadow(0 4px 6px rgba(22, 163, 74, 0.15)) !important;
}
.raeumung-map .map-info-badge {
    background: rgba(22, 163, 74, 0.1) !important;
    color: #16a34a !important;
}
.raeumung-map .btn-primary {
    background: #16a34a !important;
    border-color: #16a34a !important;
}
.raeumung-map .btn-primary:hover {
    background: #15803d !important;
    border-color: #15803d !important;
}
.raeumung-map .district-path.focus-winterthur:hover,
.raeumung-map .district-path.focus-winterthur.active {
    fill: rgba(11, 37, 69, 0.08) !important;
    stroke: var(--primary-color) !important;
}




/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES FOR ALL PAGES (Mobile)
   ============================================================ */

/* ---- 1. HERO HEADING — fix cutoff on ALL pages ---- */
/* Inline styles on h1 have highest specificity — we override with !important */
@media (max-width: 900px) {
    .hero-content h1,
    .about-grid .hero-content h1,
    .hero-split-grid .hero-content h1,
    section.hero h1 {
        font-size: clamp(2rem, 7.5vw, 3.4rem) !important;
        letter-spacing: -0.5px !important;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.15 !important;
    }
}

@media (max-width: 600px) {
    .hero-content h1,
    .about-grid .hero-content h1,
    .hero-split-grid .hero-content h1,
    section.hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
        letter-spacing: -0.3px !important;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* ---- 2. HERO SECTION — stack layout on mobile ---- */
@media (max-width: 900px) {
    /* about-grid is the two-column hero layout used on all sub-pages */
    section.hero .about-grid,
    section.hero > .container > .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* The hero-image / hero-calc-wrapper should come below the text on mobile */
    .hero-image,
    .hero-calc-wrapper {
        order: 2;
    }

    /* Hero section padding adjustments */
    section.hero {
        padding-top: 90px !important;
        min-height: auto !important;
    }

    /* Body padding for sticky CTA */
    body {
        padding-bottom: 90px;
    }
}

/* ---- 3. CALCULATOR — fix width and padding on mobile ---- */
@media (max-width: 768px) {
    .calc-box {
        padding: 1.5rem 1rem !important;
    }

    .calc-box h2 {
        font-size: 1.2rem !important;
    }

    .calc-box .calc-results {
        padding: 1rem 0.75rem !important;
    }

    /* Estimated cost font size shrink */
    .calc-box #res-kosten {
        font-size: 1.4rem !important;
    }
}

/* ---- 4. STICKY CTA — fix footer overlap ---- */
/* The sticky CTA sits at bottom:2rem — add matching padding to footer */
@media (max-width: 768px) {
    footer {
        padding-bottom: 90px !important;
    }

    /* Also ensure the sticky CTA itself does not get too close to edges */
    .sticky-cta-mobile {
        bottom: 1.2rem !important;
        width: calc(100% - 2rem) !important;
    }

    .sticky-btn {
        font-size: 1rem !important;
        padding: 1rem !important;
    }
}

/* ---- 5. MISC MOBILE TWEAKS ---- */
@media (max-width: 768px) {
    /* Section heading sizes */
    .section-title {
        font-size: 2rem !important;
    }

    /* Hero paragraph */
    .hero-content > p {
        font-size: 1rem !important;
    }

    /* Hero buttons stacking */
    .hero-content > div[style*="display: flex"],
    .hero-content > div[style*="display:flex"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    /* Hero badge overflow */
    .hero-content .badge {
        font-size: 0.8rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
}
