/* Google Fonts preloaded in HTML for better performance */

:root {
    --color-bg-dark: #0f172a;
    --color-bg-light: #f8fafc;
    --color-text-light: #f8fafc;
    --color-text-dark: #0f172a;

    /* Bonn Emerald Luxury Palette */
    --color-primary: #10b981;
    /* Electric Emerald */
    --color-primary-hover: #059669;
    --color-secondary: #064e3b;
    /* Deep Forest */
    --color-bg-body: #ffffff;
    --color-bg-section: #f1f5f9;
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;

    /* Gradients and Effects */
    --color-gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --color-gradient-secondary: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-gradient {
    background: var(--color-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(23, 37, 84, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* Modern Transparent Call Button */
.btn-call-hero {
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.4);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.btn-call-hero:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
    border-color: #1e3a8a;
}

.btn-call-hero svg {
    margin-right: 12px;
}

.section-padding {
    padding: 5rem 0;
}

/* Glassmorphism */
.glass {
    background: var(--color-bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Top Info Bar */
.top-info-bar {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
    height: 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-info-left,
.top-info-right {
    display: flex;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info-item svg {
    color: var(--color-primary);
}

.top-info-item a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-info-right {
        display: none;
    }

    .top-info-inner {
        justify-content: center;
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--color-bg-section);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-body);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #FEF2F2;
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-suby {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glass {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
}

.btn-glass:hover {
    background: #222222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-badges-mini {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Hero Image Composition */
.car-composition {
    position: relative;
    height: 400px;
    width: 100%;
}

.car-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: var(--radius-lg);
    /* Placeholder shape for car */
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 50" xmlns="http://www.w3.org/2000/svg"><path d="M10,40 L30,20 L70,20 L90,40 Z" /></svg>');
    /* Placeholder mask */
    -webkit-mask-image: linear-gradient(to right, black, black);
    /* Temporary solid shape until image is real */
    mask-size: contain;
    mask-repeat: no-repeat;
    /* Instead of complex mask, just a rounded rect for placeholder */
    clip-path: polygon(10% 100%, 0% 80%, 10% 40%, 30% 20%, 70% 20%, 90% 40%, 100% 80%, 90% 100%);
    background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&q=80&w=1000');
    /* Placeholder Real Image */
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.float-card {
    position: absolute;
    top: 10%;
    right: -20px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.price-tag {
    font-weight: 700;
    color: var(--color-primary);
}

@keyfürames float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Statistics Bar */
.stats-bar {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 2px solid var(--color-bg-section);
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline */
#ablauf,
#fahrzeuge,
#stadtteile,
#info,
#faq {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    /* Prevent layout shift */
}

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

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: #ffffff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comp-col {
    padding: 3rem 2rem;
}

.comp-col.left {
    background: #F3F4F6;
    color: var(--color-text-main);
}

.comp-col.right {
    background: var(--color-primary);
    color: white;
}

.comp-header {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

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

.comp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.comp-item icon {
    font-size: 1.2rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

@media (max-width: 968px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-suby {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges-mini {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        /* Add mobile menu logic later */
    }

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

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-inner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

@media (max-width: 600px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-card {
    background: var(--color-bg-surface-glass);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon-lg {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.vehicle-card:hover .card-icon-lg {
    transform: scale(1.1);
}

.vehicle-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.vehicle-card p {
    color: var(--color-text-muted);
}

/* Premium Glassmorphism Form 2026 */
.glass-form {
    background: rgba(255, 255, 255, 0.85);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    width: 100%;
    max-width: 800px;
    /* Wider for grid */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-weight: 800;
}

.form-header p {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
}

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

.form-group {
    margin-bottom: 0;
    /* Handled by grid gap */
}

.form-group.full-width {
    grid-column: span 2;
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text-main);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    background: var(--color-primary);
    color: white;
    border-radius: 1rem;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.btn-full:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.4);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile Adjustments for Form */
@media (max-width: 968px) {
    .glass-form {
        max-width: 100%;
        padding: 2rem;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .glass-form {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

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

    .hero-suby {
        font-size: 1rem;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Local Block */
.district-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Smaller min-width for mobile */
    gap: 1rem;
    margin-top: 3rem;
}

.district-list li {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--color-text-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.district-list li:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--color-primary);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--color-bg-section);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-bg-section);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #FEF2F2;
    color: var(--color-primary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease-out;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
    border-top: 1px solid var(--color-bg-section);
}

@media (max-width: 968px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #0f172a;
    color: #f8fafc;
}

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

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer Standorte Section */
.footer-standorte {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-standorte h4 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.standorte-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.standorte-grid a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.standorte-grid a:hover {
    color: var(--color-primary) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    /* Increased fürom 0.7 for better readability */
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    /* Increased fürom 0.5 */
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Accessibility Focus State */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Mobile Sticky Bar (Bonn Design) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    z-index: 1000;
    display: none;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-bg-section);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.sticky-btn.whatsapp {
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 37, 84, 0.3);
}

/* Show only on Mobile */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }

    /* Ensure content isn't covered by the bar */
    .footer {
        padding-bottom: 7rem !important;
    }
}

/* Mobile Menu Logic (Missing previously) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 2000;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1500;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: #f8fafc;
    }

    /* HambuÄrger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Header tweaks for mobile */
    .header-inner {
        padding: 0 1.5rem;
    }

    /* Hide desktop phone button in header to save space if needed, 
       but user might want it. Let's keep it but adjust spacing */
    /* 3. Modern Glassmorphism FAQ (Accordion) */
    .faq-glass {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-glass-item {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 1.5rem;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-glass-item:hover {
        background: rgba(255, 255, 255, 0.6);
        border-color: var(--color-primary);
        transform: translateX(5px);
    }

    .faq-glass-question {
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--color-text-main);
    }

    .faq-glass-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 2rem;
        transition: all 0.4s ease-out;
        color: var(--color-text-muted);
        line-height: 1.6;
    }

    .faq-glass-item.active .faq-glass-answer {
        max-height: 300px;
        padding-bottom: 2rem;
    }

    .faq-glass-item.active {
        background: #ffffff;
        box-shadow: var(--shadow-lg);
    }

    /* 4. Interactive "Warum wir?" Glass Cards */
    .glass-card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        padding: 3rem 2rem;
        border-radius: 2rem;
        text-align: center;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

    .glass-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: #ffffff;
        box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
        border-color: var(--color-primary);
    }

    .glass-card-icon {
        width: 70px;
        height: 70px;
        background: #FEF2F2;
        color: var(--color-primary);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 2rem;
        transition: all 0.3s ease;
    }

    .glass-card:hover .glass-card-icon {
        background: var(--color-primary);
        color: white;
        transform: rotate(10deg);
    }

    /* 5. Premium Sticky Mobile CTA */
    .premium-mobile-cta {
        position: fixed;
        bottom: 1.5rem;
        left: 5%;
        right: 5%;
        height: 70px;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        display: none;
        align-items: center;
        justify-content: space-between;
        padding: 0 0.5rem;
        z-index: 9999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .mobile-cta-btn {
        flex: 1;
        height: 56px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        font-weight: 800;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-cta-btn.call {
        background: var(--color-primary);
        color: white;
    }

    .mobile-cta-btn.whatsapp {
        background: #25D366;
        color: white;
        margin-left: 0.5rem;
    }

    @media (max-width: 768px) {
        .premium-mobile-cta {
            display: flex;
        }

        .glass-card-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* Closing line 1144 media query */

/* --- Phase 2: UI Enhancements --- */

/* 1. Dynamic Statistics Bar */
.stats-bar {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }
}

/* 2. Vertrauens-Check: Privat vs. Wir */
.comparison-section {
    background: var(--color-bg-section);
}

.comparison-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 2rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.comparison-table th.label-col {
    width: 30%;
    background: #f8fafc;
}

.comparison-table th.privat-col {
    width: 35%;
    background: #fee2e2;
    color: #991b1b;
}

.comparison-table th.wir-col {
    width: 35%;
    background: #dcfce7;
    color: #166534;
}

.comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.comparison-table td.label-col {
    font-weight: 700;
    color: var(--color-text-main);
    background: #f8fafc;
}

.comparison-table td.privat-col {
    color: #b91c1c;
    text-align: center;
}

.comparison-table td.wir-col {
    color: #15803d;
    text-align: center;
    font-weight: 600;
}

.check-icon,
.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

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

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

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* --- Premium Footer Redesign --- */
.footer-new {
    background: #0f172a;
    color: rgba(248, 250, 252, 0.8);
    padding: 6rem 0 2rem;
    font-size: 0.95rem;
}

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

.footer-col-new h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col-new h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-links-new {
    list-style: none;
    padding: 0;
}

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

.footer-links-new a {
    color: rgba(248, 250, 252, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links-new a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.footer-links-new a:hover .footer-icon-box {
    background: var(--color-primary);
    color: #ffffff;
}

.district-tag-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.district-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.district-tag:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--color-primary);
    color: #ffffff;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

@media (max-width: 640px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
    }

    .footer-bottom-new {
        flex-direction: column;
        text-align: center;
    }
}

/* --- SEO: Service Area Section --- */
.service-area-seo {
    background: #f8fafc;
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-area-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service-area-seo h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.service-area-seo p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seo-district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.seo-district-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.seo-district-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

@media (max-width: 968px) {
    .seo-district-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .seo-district-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Phase 3: Multi-Step Form & Social Proof --- */

/* Multi-Step Transitions */
.form-step {
    display: none;
    animation: fadeInSlide 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

@keyfürames fadeInSlide {
    fürom {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar */
.form-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    display: none;
    /* Hidden until JS activates multi-step */
}

.form-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--color-primary);
    width: 33%;
    transition: width 0.4s ease;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-prev {
    background: #f1f5f9;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Social Proof Notifications */
.social-proof-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.social-proof-toast.active {
    transform: translateX(0);
}

.sp-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sp-content {
    flex: 1;
}

.sp-title {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.sp-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 480px) {
    .social-proof-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}