:root {
    --bg-main: #0c0c0c;
    --bg-card: #151515;
    --bg-cta: #1a1a1a;
    --accent: #ff8000;
    --accent-hover: #e06d00;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

section {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.highlight {
    color: var(--accent);
}

.nowrap-desktop {
    white-space: nowrap;
}

/* Sticky Top Bar */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent);
    color: #000;
    z-index: 5000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.container-top-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.top-contact-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.top-contact-link:hover {
    opacity: 0.7;
}

.top-contact-link i {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    margin-top: 45px;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
}

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

.logo-img {
    height: auto;
    width: 120px;
    display: block;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu-toggle i {
    width: 32px;
    height: 32px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 128, 0, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    background: radial-gradient(circle at top right, rgba(255, 128, 0, 0.05), transparent 40%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1.25;
}

.eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-desc-mobile-shrink {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.trust-list-hero {
    list-style: none;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.trust-list-hero li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.trust-list-hero i {
    color: var(--accent);
    width: 22px;
    height: 22px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

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

/* Services */
.services {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 5rem;
    font-weight: 900;
}

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

.service-card {
    background: linear-gradient(145deg, var(--bg-card), #0f0f0f);
    padding: 4rem 3rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 128, 0, 0.15);
    /* Warmer default border */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 128, 0, 0.03);
    /* Subtle orange underlying glow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    background: #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 128, 0, 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 128, 0, 0.12);
    /* Slightly more vibrant default */
    border: 1px solid rgba(255, 128, 0, 0.2);
    /* Definite border for the icon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.05);
    /* inner glow feeling */
}

.service-card:hover .icon-wrapper {
    background-color: var(--accent);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
}

.service-card:hover .icon-wrapper i {
    color: #000;
}

.icon-wrapper i {
    width: 32px;
    height: 32px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 128, 0, 0.2));
    /* Tiny glow on icon */
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Testimonials Marquee */
.testimonial-section {
    padding: 6rem 0;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: scrollMarquee 50s linear infinite;
    width: max-content;
    padding: 2rem 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    width: 500px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.review-author {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-author::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: 3rem 0 10rem;
}

.cta-box {
    background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
    padding: 6rem 5rem;
    border-radius: 48px;
    text-align: center;
    border: 1px solid rgba(255, 128, 0, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-box p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 128, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 128, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 128, 0, 0);
    }
}

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

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 10rem;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 2.5rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    /* Better gap after header */
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* Natural spacing between links */
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Floating Widget */
.floating-widget {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 10000;
}

.floating-btn {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: #000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
    transform: scale(1.15) rotate(5deg);
}

.floating-btn i {
    width: 32px;
    height: 32px;
}

.floating-menu {
    position: absolute;
    bottom: 90px;
    right: 0;
    background-color: var(--bg-card);
    /* Dark background */
    width: 300px;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 128, 0, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: none;
    transform-origin: bottom right;
}

.floating-menu.active {
    display: block;
    animation: widgetSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes widgetSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

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

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

.floating-header strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    /* White text for dark background */
}

#closeMenuBtn,
#closeBubbleBtn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

#closeMenuBtn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background-color: var(--bg-card);
    /* Light background for items */
    border-radius: 16px;
    margin-bottom: 1rem;
    color: #fff;
    /* Dark text */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 128, 0, 0.1);
}

.floating-item:last-child {
    margin-bottom: 0;
}

.floating-item:hover {
    background-color: var(--bg-cta);
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 128, 0, 0.1);
}

.floating-item i {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

/* Push widget up when privacy notice is active */
body.privacy-notice-active .floating-widget {
    transform: translateY(-160px);
    /* Adjust based on banner height */
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
}

/* Mobile specific push */
@media (max-width: 768px) {
    body.privacy-notice-active .floating-widget {
        transform: translateY(-220px);
    }

    .chat-bubble {
        bottom: 60px;
    }
}


.wa-link {
    border-color: rgba(37, 211, 102, 0.2);
}

.wa-link:hover {
    border-color: #25D366;
}

.chat-bubble {
    position: absolute;
    bottom: 90px;
    right: 0;
    background-color: var(--bg-card);
    /* Dark background */
    color: #fff;
    /* White Text */
    padding: 1.2rem 1.8rem;
    padding-right: 3.5rem;
    /* Space for the X button */
    border-radius: 20px 20px 0 20px;
    width: 280px;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 128, 0, 0.3);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1.4;
}

#closeBubbleBtn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#closeBubbleBtn:hover {
    color: var(--accent);
}

#closeBubbleBtn i {
    width: 16px;
    height: 16px;
}

.chat-bubble.active {
    display: block;
    animation: bubbleBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bubbleBounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Legal Pages Styling */
.legal-page .header {
    margin-top: 0;
}

.legal-page main {
    padding: 8rem 0 !important;
    max-width: 1000px !important;
}

.legal-page section {
    background-color: var(--bg-card);
    padding: 4rem;
    border-radius: 32px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 128, 0, 0.1);
}

.legal-page h1 {
    font-size: 4rem;
    margin-bottom: 5rem;
    color: var(--accent);
    border-bottom: 3px solid var(--accent);
    padding-bottom: 2rem;
    font-weight: 950;
}

.legal-page h2 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-page h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.2rem;
    color: #fff;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-page p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
}

.legal-page ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

/* Privacy Notice / Consent Banner (Adblocker safe naming) */
.privacy-notice {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100000;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 128, 0, 0.3);
    transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.privacy-notice.active {
    bottom: 0;
}

.privacy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.privacy-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    color: var(--accent);
    flex-shrink: 0;
}

.privacy-text strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.privacy-text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
}

/* Mobile Menu Transitions */
@keyframes slideDownIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Response Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 650px;
    }

    .hero-desc-mobile-shrink {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-list-hero {
        align-items: center;
    }

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

    .footer-container {
        gap: 3rem;
    }
}

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

    .header {
        margin-top: 0;
        padding: 1rem 0;
        position: sticky;
        top: 0;
        background-color: rgba(12, 12, 12, 0.95);
        backdrop-filter: blur(15px);
        z-index: 2500;
        /* Ensure it stays above mobile menu */
    }

    .logo-img {
        width: 90px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
        text-align: center;
        border-bottom: 2px solid var(--accent);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .header-nav ul.active {
        display: flex;
        animation: slideDownIn 0.3s ease;
    }

    /* Creative Hero Redesign for Mobile - Pinterest Poster Layout */
    .hero {
        padding: 2rem 0 0;
        /* Weiter nach oben gerückt */
    }

    .hero-container {
        gap: 0;
        /* Abstände werden über margins der einzelnen order-Elemente kontrolliert */
    }

    /* Inhalt entpacken, um radikales Reordering zu ermöglichen */
    .hero-content {
        display: contents;
    }

    .eyebrow {
        order: 1;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .hero h1 {
        order: 2;
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-desc-mobile-shrink {
        order: 3;
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .availability-status {
        order: 4;
        margin-bottom: 2.5rem;
    }

    /* Riesiger Full-Width Button direkt im Sichtfeld */
    .hero .btn-primary {
        order: 5;
        width: 100%;
        justify-content: center;
        margin-bottom: 32px;
        /* Etwas mehr Abstand zum Bild für bessere Lesbarkeit */
    }

    /* Trust-Image im Poster-Stil: Floating Card Look (Abstand zu den Rändern) */
    .hero-image {
        order: 6;
        width: 100%;
        height: 380px;
        /* Feste Höhe für die Box selbst */
        /* Passt sich exakt dem Container (+ 5vw Rand rechts/links) an */
        margin: 0 auto;
        border-radius: 32px;
        /* Rundum abgerundet für den perfekten Card-Look */
        box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
        /* Leuchtet leicht nach Oben */
        -webkit-mask-image: none;
        mask-image: none;
        overflow: hidden;
        /* Alle Transforms (wie translateZ oder scale) entfernt, da iOS Safari sonst kriselig (low-res) rendert! */
    }

    .hero-image img {
        width: calc(100% + 30px);
        /* Bild physisch größer machen (15px je Seite) */
        height: calc(100% + 30px);
        /* 15px je Seite oben/unten */
        display: block;
        object-fit: cover;
        object-position: center center;
        /* Durch negative Margins exakt um 15px wieder zurückziehen (verschobener Crop) */
        margin-top: -15px;
        margin-left: -15px;
    }

    /* Stichpunkte weiter unten als subtiler Übergang zum nächsten Bereich */
    .trust-list-hero {
        order: 7;
        margin: 3rem auto 2rem;
        gap: 1.2rem;
        width: 100%;
        max-width: 280px;
        align-items: flex-start;
    }

    /* Fix Anchor Link Scrolling Behind the Sticky Header */
    section[id] {
        scroll-margin-top: 65px;
        /* Genau passend zur Header-Höhe */
    }

    .services {
        padding: 4rem 0;
    }

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

    .cta-section {
        padding: 3rem 0 6rem;
    }

    .section-title {
        font-size: 2.2rem;
        /* Etwas kleiner für Mobile, vermeidet unschöne 3-Zeiler */
        margin-bottom: 2rem;
        line-height: 1.25;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Fix outline on mobile menu button */
    .mobile-menu-toggle {
        display: block;
        outline: none !important;
        -webkit-tap-highlight-color: transparent;
    }

    /* Service Cards Mobile: Premium, Tighter & More Cohesive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        /* Etwas kompakter */
    }

    .service-card {
        padding: 1.8rem 1.5rem;
        /* Weniger leerer Raum auf dem Handy */
        transform: none !important;
        /* Kein Hover-Sprung auf Mobile */
        pointer-events: none;
        /* Verhindert "Klick-Feedback" oder Hover-Status auf Touchscreens */
    }

    /* Shrink the icon block to save vertical space and make them permanently orange on mobile */
    .service-card .icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 1.2rem;
        background-color: var(--accent);
        /* Persistent orange background */
        box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
        /* Match hover shadow */
    }

    .service-card .icon-wrapper i {
        width: 24px;
        height: 24px;
        color: #000;
        /* Match hover icon color */
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Testimonial Cards Mobile: Better Proportions */
    .review-card {
        width: 85vw;
        /* Karten passen besser auf kleine Screens (mit etwas Überstand) */
        max-width: 320px;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
    }

    .review-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    /* Verringere den Fade-Effekt an den Seiten auf Mobile, damit mehr lesbar ist */
    .marquee-container::before,
    .marquee-container::after {
        width: 30px;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Optimized Mobile Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center links as per screenshot */
        gap: 0.8rem;
        padding: 0;
        margin-top: 0.5rem;
    }

    .footer-links li {
        margin: 0;
    }

    .footer-links a {
        justify-content: center;
    }

    /* Center text within links */

    .footer-bottom {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .floating-widget {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    /* Privacy Notice Mobile Optimization */
    .privacy-notice {
        padding: 1.2rem 0;
        bottom: -400px;
    }

    .privacy-container {
        flex-direction: column;
        gap: 1rem;
    }

    .privacy-icon {
        width: 32px;
        height: 32px;
    }

    .privacy-text strong {
        font-size: 1rem;
    }

    .privacy-text p {
        font-size: 0.8rem;
    }

    .privacy-actions {
        gap: 0.5rem;
    }

    .privacy-actions .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .marquee-track {
        animation-duration: 40s;
    }

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

    .eyebrow {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hero-desc-mobile-shrink {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .trust-list-hero {
        margin-top: 2rem;
    }
}

/* ==========================================================================
   Legal Pages Styling (.legal-page)
   ========================================================================== */

.legal-page .header {
    position: sticky;
    top: 0;
    background-color: #0c0c0ced;
    /* Background more solid for better readability during scroll */
    backdrop-filter: blur(15px);
    margin-top: 0 !important;
    /* Override global 45px margin */
    padding: 0.4rem 0;
    /* Radically slim banner */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
}


/* Ensure hamburger menu button is completely hidden on legal pages */
.legal-page .mobile-menu-toggle {
    display: none !important;
}

.legal-page main.container {
    padding: 1.5rem 5% 4rem;
    /* Precise top padding */
    margin-top: 0 !important;
    max-width: 900px;
    overflow-wrap: break-word;
    /* Prevent long legal terms from breaking layout */
    hyphens: auto;
    /* Allow word breaks for very long German words */
}

.legal-page h1 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-top: 0 !important;
    /* Eliminate hidden browser margin */
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 0.3rem;
}

.legal-page h1::after {
    display: none;
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1.8rem 0 0.8rem;
    /* Tighter section gaps */
    color: var(--accent);
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 1.5rem 0 0.6rem;
    color: #fff;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

.legal-page h4 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.2rem 0 0.6rem;
    color: var(--text-muted);
}

.legal-page p {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.legal-page a:not(.logo):not(.btn) {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s;
}

.legal-page a:not(.logo):not(.btn):hover {
    opacity: 0.8;
}

.legal-page ul {
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
}

.legal-page li {
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Header Link in Legal Pages */
.legal-page .header-nav a {
    color: var(--accent) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.legal-page .header-nav a:hover {
    opacity: 0.7;
}

/* Slim Legal Footer */
.legal-page .footer {
    padding: 2rem 0;
    border-top: none;
    background-color: transparent;
    text-align: center;
}

.legal-page .footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mobile Adjustments for Legal Pages */
@media (max-width: 768px) {
    .legal-page .header {
        padding: 0.5rem 0 !important;
    }

    .legal-page .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        /* Re-apply safe padding directly to be absolutely sure */
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .legal-page .logo-img {
        width: 90px !important;
        margin: 0 !important;
    }

    .legal-page .header-nav {
        display: block !important;
        position: static !important;
        width: auto !important;
    }

    .legal-page .header-nav ul,
    .legal-page .header-nav ul.active {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .legal-page .header-nav ul li {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .legal-page .header-nav a {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        color: var(--accent) !important;
    }

    .legal-page main.container {
        padding-top: 0.5rem !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
        padding-bottom: 3rem !important;
        width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    .legal-page h1 {
        font-size: 1.8rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.2 !important;
        border-bottom: 2px solid var(--accent) !important;
        padding-bottom: 0.5rem !important;
    }

    .legal-page h2 {
        font-size: 1.4rem !important;
        margin: 1.5rem 0 0.8rem !important;
    }

    .legal-page p,
    .legal-page li {
        font-size: 0.98rem !important;
    }
}