@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/nulshock");

:root {
    /* Primary Colors */
    --color-orange: #ec8120;
    --color-orange-light: #f59b2c;
    --color-brand-dark: #0c3447;
    --color-brand-teal: #1c6d90;

    /* Accent Colors / Legacy */
    --color-midnight: var(--color-brand-dark);
    --color-neon-orange: #ff8c00;
    --color-electric-blue: #1c6d90;

    /* Secondary/Neutral */
    --color-off-white: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #0c3447;
    --color-text-white: #ffffff;
    --color-grey-light: #e0e0e0;

    /* Fonts */
    --font-heading: "Nulshock", sans-serif;
    --font-main: "Inter", sans-serif;

    /* Styling */
    --transition-smooth: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --border-radius-xl: 30px;
    --border-radius-lg: 20px;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container-width: 1300px;
    --spacing-section: 120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body.page-produkte {
    background-color: var(--color-brand-dark) !important;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Layout Containers --- */
.container,
.welcome-container,
.hero-content,
.marty-container,
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header & Nav --- */
/* --- Header & Nav --- */
.header-container {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-new {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(236, 129, 32, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo-new {
    display: flex;
    align-items: center;
}

.logo-new img {
    height: 50px;
    filter: brightness(1.1);
    display: block;
}

.nav-links-new {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links-new a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links-new a:hover {
    color: var(--color-orange);
}

.nav-cta {
    background: var(--color-orange);
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(236, 129, 32, 0.3);
}

.nav-cta:hover {
    box-shadow: 0 6px 20px rgba(236, 129, 32, 0.5);
    transform: translateY(-1px);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

/* --- Buttons --- */
/* --- Buttons --- */
/* --- Buttons --- */
.btn-primary {
    background: var(--color-midnight);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 129, 32, 0.3);
    background: var(--color-orange-light);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--color-orange);
    color: #fff;
    background: rgba(236, 129, 32, 0.1);
    box-shadow: 0 4px 20px rgba(236, 129, 32, 0.15);
}

/* --- Hero New (Dark, with 3D Carousel) --- */
.hero-new {
    padding: 160px 0 80px;
    background: transparent;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle radial glow behind carousel */
.hero-new::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translate(0, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(236, 129, 32, 0.12) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    background: rgba(236, 129, 32, 0.15);
    color: var(--color-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-side h1,
.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: -1px;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), text-shadow 0.6s ease;
    cursor: default;
}

.hero-subline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    user-select: none;
    -webkit-user-select: none;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Override buttons for dark hero */
.hero-new .btn-primary {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 10px 30px rgba(236, 129, 32, 0.3);
}

.hero-new .btn-primary:hover {
    background: var(--color-orange-light);
    box-shadow: 0 15px 40px rgba(236, 129, 32, 0.5);
}

.hero-new .btn-secondary {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-new .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Base button styles are defined above, but we remove opaque backgrounds
   when they have the liquid-glass class so the glass effect works well */
.btn-primary.liquid-glass {
    background: linear-gradient(135deg, rgba(245, 155, 44, 0.75) 0%, rgba(236, 129, 32, 0.55) 100%) !important;
    border: 1px solid rgba(255, 220, 160, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    box-shadow: 0 8px 32px rgba(236, 129, 32, 0.5), inset 0 2px 15px rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
}

.btn-primary.liquid-glass:hover {
    background: linear-gradient(135deg, rgba(255, 165, 54, 0.85) 0%, rgba(245, 145, 42, 0.7) 100%) !important;
    border-color: rgba(255, 255, 255, 1.0);
    box-shadow: 0 12px 40px rgba(236, 129, 32, 0.7), inset 0 2px 20px rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

.btn-secondary.liquid-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
}

.btn-secondary.liquid-glass:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* --- Hero Image Wrapper --- */
.hero-visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    flex-shrink: 0;
}

.hero-image-wrapper .hero-automat-img {
    max-width: 100%;
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(236, 129, 32, 0.25)) drop-shadow(0 0 60px rgba(236, 129, 32, 0.1));
    animation: floatAutomat 6s ease-in-out infinite alternate;
}

/* --- Hero USPs --- */
.hero-usps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 250px;
}

.hero-usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(236, 129, 32, 0.12);
    border-radius: var(--border-radius-lg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-usp-item:hover {
    transform: translateX(10px);
    background: rgba(236, 129, 32, 0.08);
    border-color: rgba(236, 129, 32, 0.3);
    box-shadow:
        0 10px 30px rgba(236, 129, 32, 0.15),
        0 0 20px rgba(236, 129, 32, 0.05);
}

.hero-usp-item .usp-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-usp-item .usp-icon-wrap svg {
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-usp-item:hover .usp-icon-wrap svg {
    transform: scale(1.1) rotate(5deg);
}

.hero-usp-item .usp-text h3 {
    font-size: 0.95rem;
    margin: 0 0 2px 0;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.hero-usp-item .usp-text p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

@keyframes floatAutomat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.hero-text-side h1:hover,
.page-hero-title:hover {
    background: linear-gradient(110deg,
            #ffffff 0%,
            #ffffff 35%,
            var(--color-orange-light) 50%,
            #ffffff 65%,
            #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumShine 4s linear infinite;
    text-shadow: 0 4px 30px rgba(236, 129, 32, 0.6);
}

@keyframes premiumShine {
    to {
        background-position: -200% center;
    }
}


.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-reveal.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entrance for category cards */
.category-card:nth-child(1).section-reveal {
    transition-delay: 0s;
}

.category-card:nth-child(2).section-reveal {
    transition-delay: 0.12s;
}

.category-card:nth-child(3).section-reveal {
    transition-delay: 0.24s;
}

.category-card:nth-child(4).section-reveal {
    transition-delay: 0.36s;
}

/* Location stagger */
.location-info.section-reveal {
    transition-delay: 0s;
}

.location-map.section-reveal {
    transition-delay: 0.2s;
}

/* --- Slot Machine --- */
.slot-machine-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--color-off-white) 0%, #fff9f0 100%);
}

.slot-machine-card {
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--border-radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.slot-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-midnight);
}

.slot-display {
    background: var(--color-midnight);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.slot-window {
    height: 100px;
    width: 100px;
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
}

.slot-reel {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear;
}

.slot-item {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.slot-result {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-orange);
    min-height: 2rem;
}

/* Removed old hover scan effect (now handled by premiumShine above) */

/* --- Local Heros Section (Instagram-style) --- */
.local-heros-section {
    padding: 60px 0 var(--spacing-section);
    background: transparent;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.local-heros-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse,
            rgba(236, 129, 32, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.local-heros-header {
    text-align: center;
    margin-bottom: 50px;
}

.local-heros-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-orange);
}

.local-heros-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Scrollable wrapper */
.local-heros-scroll-wrapper {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 50px;
    margin: 0;
    /* Changed from negative values to fit the mask nicely */

    /* Apply mask for fade out at the edges (top, bottom, right, left) */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 129, 32, 0.4) rgba(255, 255, 255, 0.05);
}

.local-heros-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.local-heros-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.local-heros-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(236, 129, 32, 0.4);
    border-radius: 10px;
}

.local-heros-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 129, 32, 0.6);
}

.local-heros-row {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollHeros 30s linear infinite;
}

.local-heros-row:active {
    animation-play-state: paused;
}

@keyframes scrollHeros {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Instagram-style card */
.local-hero-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.local-hero-card:hover {
    border-color: rgba(236, 129, 32, 0.3);
    background: rgba(236, 129, 32, 0.06);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(236, 129, 32, 0.12),
        0 0 30px rgba(236, 129, 32, 0.04);
}

/* Profile header (like IG) */
.local-hero-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
}

.local-hero-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #f5c842);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(236, 129, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.local-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Gradient ring around avatar (IG story ring) */
.local-hero-avatar::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #f5c842, #ec8120);
    z-index: -1;
    opacity: 0.7;
}

.local-hero-avatar::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: #0a1e2e;
    z-index: -1;
}

.local-hero-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.local-hero-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
}

.local-hero-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

/* Product image area */
.local-hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center,
            rgba(236, 129, 32, 0.35) 0%,
            rgba(236, 129, 32, 0.1) 45%,
            rgba(12, 52, 71, 0.9) 75%,
            rgba(10, 30, 46, 1) 100%);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.local-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 40%),
        radial-gradient(circle at bottom right,
            rgba(236, 129, 32, 0.3) 0%,
            transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.local-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.6s ease;
    position: absolute;
    inset: 0;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.local-hero-image .img-product {
    animation: fadeProduct 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.local-hero-image .img-person {
    animation: fadePerson 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Pause animations when hovering/touching the card */
.local-hero-card:active .img-product,
.local-hero-card:active .img-person,
.local-hero-image.paused .img-product,
.local-hero-image.paused .img-person {
    animation-play-state: paused;
}

@keyframes fadeProduct {

    0%,
    42% {
        opacity: 1;
        transform: scale(1);
    }

    50%,
    92% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadePerson {

    0%,
    42% {
        opacity: 0;
        transform: scale(1.08);
    }

    50%,
    92% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}


/* Caption text */
.local-hero-caption {
    padding: 16px 18px 20px;
}

.local-hero-caption p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* --- The Magic Section (How it works) - Premium Redesign --- */
.magic-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow for the whole section */
.magic-section::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(236, 129, 32, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.magic-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.magic-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.magic-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.magic-steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Base card */
.magic-step-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 40px;
    border-radius: 32px;
    align-items: center;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
    will-change: transform;
}

.magic-step-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 129, 32, 0.1);
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.magic-step-card.reversed {
    grid-template-columns: 1fr 1.1fr;
}

.magic-step-card.reversed .step-content {
    order: 2;
}

.magic-step-card.reversed .step-visual {
    order: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.step-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-orange);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(28, 109, 144, 0.15);
    border: 1px solid rgba(236, 129, 32, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.step-label::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(236, 129, 32, 0.6);
}

.step-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: none;
}

.step-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.step-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: #143d54;
}

.step-visual img,
.step-visual .visual-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.magic-step-card:hover .step-visual img,
.magic-step-card:hover .step-visual .visual-bg {
    transform: scale(1.04);
}

/* Custom visual icons for step 2 */
.payment-icons-overlay {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    width: fit-content;
}

.pay-icon-wrapper {
    width: 45px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pay-icon-wrapper svg {
    width: 100%;
    height: auto;
}

.pay-icon-wrapper:hover {
    transform: translateY(-3px) scale(1.1);
}

/* --- Sortiment Section --- */
.sortiment-section {
    padding: var(--spacing-section) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.sortiment-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(236, 129, 32, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.sortiment-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(28, 109, 144, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 15px;
}

.section-header-center p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.category-card {
    padding: 24px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(236, 129, 32, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(236, 129, 32, 0.4),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover {
    border-color: rgba(236, 129, 32, 0.3);
    background: rgba(236, 129, 32, 0.06);
    box-shadow:
        0 20px 50px rgba(236, 129, 32, 0.1),
        0 0 30px rgba(236, 129, 32, 0.03);
    transform: translateY(-8px) scale(1.02);
}

.category-card:hover::before {
    opacity: 1;
}

.category-img-placeholder {
    font-size: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(236, 129, 32, 0.2));
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.2;
}

.category-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* --- Location Section - Premium Redesign --- */
.location-section {
    padding: 140px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(30%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 129, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-info .badge-new {
    align-self: flex-start;
    margin-bottom: 24px;
}

.location-info h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.address {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.system-status-wrapper {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #2ed573;
    border-radius: 50%;
    box-shadow: 0 0 12px #2ed573, 0 0 24px rgba(46, 213, 115, 0.4);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-text {
    color: #2ed573;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.status-subline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 10px #2ed573, 0 0 20px rgba(46, 213, 115, 0.3);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 15px #2ed573, 0 0 30px rgba(46, 213, 115, 0.5);
        opacity: 0.7;
    }
}

.location-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.map-btn {
    align-self: flex-start;
    background: #fff;
    color: var(--color-brand-dark) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.map-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.map-btn svg {
    transition: transform 0.3s ease;
}

.map-btn:hover svg {
    transform: translateX(4px);
}

/* Container for map and consent layer */
.location-map {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 450px;
    display: flex;
    position: relative;
    padding: 12px;
    /* Gives the map a nice inner rim inside the liquid glass card */
}

/* ── Google Maps Container ─────────── */
.map-container {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    /* Inner radius */
    overflow: hidden;
}

.map-container.map-active {
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1) brightness(0.9) hue-rotate(-5deg);
    transition: filter 0.5s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(1.05) brightness(1) hue-rotate(0deg);
}

/* Consent Placeholder */
.map-consent-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(10, 15, 25, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.map-consent-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 129, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.map-consent-inner {
    text-align: center;
    padding: 40px;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.map-consent-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.map-consent-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.map-consent-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 30px;
}

.map-consent-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.map-consent-link {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.map-consent-link:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

/* --- Vision Section --- */
.vision-section {
    padding: var(--spacing-section) 0;
    background: transparent;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse,
            rgba(236, 129, 32, 0.06) 0%,
            transparent 65%);
    pointer-events: none;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 60px 50px;
    border-radius: 32px;
}

.vision-content h2 {
    font-size: 3rem;
    color: var(--color-orange);
    margin: 20px 0;
}

.vision-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* --- Footer --- */
.footer-new {
    background: var(--color-brand-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(236, 129, 32, 0.1);
    position: relative;
}

.footer-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(236, 129, 32, 0.3),
            transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.8rem;
    color: var(--color-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--color-orange);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* ============================================================
   HAMBURGER MENU
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger .bar {
    width: 24px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   SUB-PAGE HERO (shared class for faq, produkte, ueber-uns)
   ============================================================ */
.page-hero {
    min-height: 40vh;
    padding: 140px 0 60px;
}

.page-hero-title {
    font-size: 3.5rem;
}

/* ============================================================
   RESPONSIVE — 991px  (tablets)
   ============================================================ */
@media (max-width: 991px) {

    .container,
    .welcome-container,
    .hero-content,
    .marty-container,
    .footer-top {
        padding: 0 24px;
    }

    .navbar-new {
        padding: 10px 24px;
    }

    .hero-container,
    .location-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-new {
        padding: 130px 0 40px;
        min-height: auto;
    }

    .hero-text-side {
        text-align: center;
    }

    .hero-subline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .carousel-stage {
        height: 340px;
    }

    .saturn-sphere {
        width: 120px;
        height: 120px;
    }

    .carousel-product {
        width: 90px;
        height: 90px;
    }

    .product-emoji {
        font-size: 2.4rem;
    }

    .usp-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .magic-step-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .magic-step-row.step-reversed {
        direction: ltr;
    }

    .step-illustration {
        max-width: 320px;
    }

    .step-content {
        text-align: center;
    }

    .step-content p {
        margin: 0 auto;
    }

    .step-accent-line {
        margin: 24px auto 0;
    }

    .magic-header {
        margin-bottom: 50px;
    }

    .step-connector {
        height: 40px;
    }

    .slot-machine-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .location-map {
        height: 300px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        gap: 40px;
    }

    .section-header-center h2,
    .magic-header h2,
    .location-info h2,
    .vision-content h2 {
        font-size: 2rem;
    }

    .vision-content {
        padding: 40px 24px;
    }

    .page-hero-title {
        font-size: 2.8rem;
    }
}

/* ============================================================
   RESPONSIVE — 768px  (large phones / hamburger kicks in)
   ============================================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links-new {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(6, 12, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 1050;
    }

    .nav-links-new.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links-new a {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-links-new a:hover {
        color: var(--color-orange);
    }

    .navbar-new {
        padding: 8px 16px;
    }

    .header-container {
        padding: 12px 0;
    }

    /* --- HERO (special focus) --- */
    .hero-new {
        padding: 110px 0 30px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 24px;
    }

    .hero-visual-side {
        flex-direction: column;
        gap: 32px;
    }

    .hero-text-side h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero-subline {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-new::after {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .carousel-stage {
        height: 280px;
    }

    .saturn-sphere {
        width: 100px;
        height: 100px;
    }

    .carousel-product {
        width: 70px;
        height: 70px;
    }

    .badge-new {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    /* --- USP --- */
    .usp-bar {
        padding: 40px 0;
    }

    .usp-item {
        padding: 20px;
        gap: 14px;
    }

    .usp-icon-wrap {
        width: 44px;
        height: 44px;
    }

    /* --- Magic Section --- */
    .magic-section {
        padding: 80px 0;
    }

    .magic-header h2 {
        font-size: 2rem;
    }

    .magic-step-card,
    .magic-step-card.reversed,
    .about-staggered-row,
    .about-staggered-row.reversed,
    .slot-machine-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .magic-step-card.reversed .step-content,
    .about-staggered-row.reversed .vision-content {
        order: 1;
    }

    .magic-step-card.reversed .step-visual,
    .about-staggered-row.reversed .about-image-placeholder {
        order: 2;
    }

    .step-visual {
        min-height: 250px;
    }

    .step-content h3 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1.05rem;
    }

    .payment-icons-overlay {
        width: 95%;
        padding: 12px;
        bottom: 15px;
    }

    .pay-icon-wrapper {
        width: 40px;
    }

    /* --- Sortiment --- */
    .sortiment-section {
        padding: 60px 0;
    }

    .category-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 16px 8px;
    }

    .category-img-placeholder {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .category-card h3 {
        font-size: 0.95rem;
    }

    .category-card p {
        font-size: 0.75rem;
    }

    /* --- Location --- */
    .location-section {
        padding: 80px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-info {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .location-info h2 {
        font-size: 1.8rem;
    }

    .address {
        font-size: 1.15rem;
    }

    .location-desc {
        font-size: 1rem;
    }

    .map-btn {
        width: 100%;
    }

    .location-map {
        min-height: 480px;
        padding: 8px;
        border-radius: 24px;
    }

    .map-container,
    .map-consent-placeholder {
        border-radius: 16px;
    }

    .map-consent-inner {
        padding: 30px 20px;
    }

    /* --- Vision --- */
    .vision-section {
        padding: 80px 0;
    }

    .vision-content h2 {
        font-size: 1.75rem;
    }

    .vision-content p {
        font-size: 1rem;
    }

    /* --- Footer --- */
    .footer-new {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    /* --- FAQ inline items --- */
    .faq-item {
        padding: 20px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero {
        padding: 110px 0 40px;
        min-height: 30vh;
    }

    /* --- About Us specific Layout elements --- */
    .about-staggered-row,
    .about-staggered-row.reversed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }

    .about-staggered-row.reversed .vision-content {
        order: 1;
    }

    .about-staggered-row.reversed .about-image-placeholder {
        order: 2;
    }

    .vision-content {
        padding: 30px !important;
    }
}

/* ============================================================
   RESPONSIVE — 480px  (small phones)
   ============================================================ */
@media (max-width: 480px) {

    .container,
    .welcome-container,
    .hero-content,
    .marty-container,
    .footer-top {
        padding: 0 16px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .usp-container {
        padding: 0 16px;
    }

    .hero-new {
        padding: 100px 0 20px;
    }

    .hero-text-side h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-subline {
        font-size: 0.9rem;
    }

    .carousel-stage {
        height: 240px;
    }

    .saturn-sphere {
        width: 80px;
        height: 80px;
    }

    .carousel-product {
        width: 55px;
        height: 55px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .magic-section,
    .sortiment-section,
    .location-section,
    .vision-section {
        padding: 60px 0;
    }

    .section-header-center h2,
    .magic-header h2,
    .location-info h2,
    .vision-content h2 {
        font-size: 1.5rem;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 100px 0 30px;
        min-height: auto;
    }

    .logo-new img {
        height: 32px;
    }
}

/* --- Webshop Iframe --- */
.webshop-section {
    padding-top: 80px;
    /* account for fixed navbar */
    width: 100%;
}

.webshop-iframe {
    display: block;
    width: 100%;
    height: 4000px;
    border: none;
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner-overlay.cb-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.cookie-banner.cb-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(12, 20, 32, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(236, 129, 32, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 32px 36px;
    box-shadow:
        0 -8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(236, 129, 32, 0.06);
}

.cookie-banner-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cookie-banner-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.cookie-banner-text a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--color-orange-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-orange);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(236, 129, 32, 0.35);
}

.cookie-btn-accept:hover {
    background: var(--color-orange-light);
    box-shadow: 0 8px 30px rgba(236, 129, 32, 0.5);
    transform: translateY(-2px);
}

.cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .cookie-banner {
        padding: 0 12px 12px;
    }

    .cookie-banner-inner {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .cookie-banner-title {
        font-size: 1rem;
    }

    .cookie-banner-text {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/* ── Google Maps Container (Cookie-Consent-Gated) ─────────── */
.map-container {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(236, 129, 32, 0.15);
}

.map-container.map-active {
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: var(--border-radius-lg);
    filter: brightness(0.85) contrast(1.1) saturate(0.9);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: brightness(0.95) contrast(1.05) saturate(1);
}

/* Consent Placeholder (wenn Cookies nicht akzeptiert) */
.map-consent-placeholder {
    width: 100%;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(236, 129, 32, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-consent-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%,
            rgba(236, 129, 32, 0.06) 0%,
            transparent 60%),
        radial-gradient(ellipse at 70% 60%,
            rgba(28, 109, 144, 0.05) 0%,
            transparent 60%);
    pointer-events: none;
}

.map-consent-inner {
    text-align: center;
    padding: 40px 30px;
    max-width: 380px;
    position: relative;
    z-index: 1;
}

.map-consent-icon {
    margin-bottom: 16px;
    opacity: 0.85;
}

.map-consent-icon svg {
    filter: drop-shadow(0 0 12px rgba(236, 129, 32, 0.3));
}

.map-consent-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.map-consent-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.map-consent-btn {
    background: var(--color-orange) !important;
    color: #fff !important;
    padding: 14px 28px;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(236, 129, 32, 0.3);
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.map-consent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 129, 32, 0.45);
    background: var(--color-orange-light) !important;
}

.map-consent-link {
    display: inline-block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-consent-link:hover {
    color: var(--color-orange);
}

@media (max-width: 768px) {

    .map-container,
    .map-container iframe {
        min-height: 280px;
    }

    .map-consent-placeholder {
        min-height: 280px;
    }

    .map-consent-inner {
        padding: 30px 20px;
    }

    .map-consent-title {
        font-size: 1rem;
    }

    .map-consent-text {
        font-size: 0.82rem;
    }
}

/* --- Apple Liquid Glass Style --- */
.liquid-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Mouse tracking light flare */
.liquid-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.03),
            transparent 40%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: inherit;
}

/* ============================================================
   MOBILE OPTIMIZATION ADDITIONS
   ============================================================ */

/* Extra small devices and general mobile refinements */
@media (max-width: 500px) {

    /* global text scaling */
    h1,
    .page-hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 1.8rem) !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }

    .hero-new {
        padding: 90px 0 30px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .nav-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Magic section spacing */
    .magic-step-card,
    .magic-step-card.reversed {
        padding: 24px;
        gap: 20px;
    }

    .step-visual {
        min-height: 200px;
    }

    /* Category cards */
    .category-card {
        padding: 20px;
    }

    /* Footer */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    /* About Us specifics */
    .about-us-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Location */
    .location-info {
        padding: 24px 16px;
    }

    .address {
        font-size: 1rem;
    }

    .status-text,
    .status-subline {
        font-size: 0.8rem;
    }
}


.liquid-glass:hover::before {
    opacity: 1;
}

/* Bright glass edge tracking mouse */
.liquid-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.2),
            transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.liquid-glass:hover::after {
    opacity: 1;
}


/* --- Legibility Adjustments for Liquid Glass --- */
/* The background shader creates bright orange areas. To keep text readable, 
   we enhance the liquid-glass blur, add slightly more opacity to its background, 
   and apply a soft text-shadow to text inside it. */

/* Base text shadows inside liquid glass for universal legibility */
.liquid-glass h2,
.liquid-glass h3,
.liquid-glass p,
.liquid-glass .step-label,
.liquid-glass .address,
.liquid-glass .status-subline {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Ensure headings have solid colors, not purely transparent gradients 
   that might blend too much with bright backgrounds */
h2,
h3 {
    color: #ffffff;
    /* Specific distinct shadow for headings */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Paragraph text enhancement */
p {
    color: rgba(255, 255, 255, 0.85) !important;
    /* Brighter base text */
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Labels and subtitles */
.badge-new,
.step-label {
    background: rgba(12, 52, 71, 0.8) !important;
    /* Darker badge background */
    color: var(--color-orange-light) !important;
    /* Lighter orange for better contrast on dark */
    border: 1px solid rgba(236, 129, 32, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    /* keep badges crisp */
}

/* Update hero text which is over the most intense part of the background */
.hero-text-side h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-subline {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

/* Navbar legibility */
.navbar-new {
    background: rgba(12, 52, 71, 0.85) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-links-new a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* --- About Us Staggered Grid --- */
.about-staggered-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-staggered-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-staggered-row.reversed {
    flex-direction: row-reverse;
}

/* --- Premium About Card --- */
.premium-about-card {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 60px;
    /* massive whitespace */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.premium-about-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 40px 80px rgba(236, 129, 32, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(236, 129, 32, 0.2);
}

.premium-about-image {
    width: 100%;
    height: 400px;
    /* Fixed height for landscape proportion */
    position: relative;
    overflow: hidden;
}

.premium-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* adjust focal point */
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-about-card:hover .premium-about-image img {
    transform: scale(1.05);
}

/* Gradient overlay on image for top text readability */
.premium-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    /* larger gradient area */
    background: linear-gradient(to bottom, rgba(10, 15, 25, 0.95) 0%, rgba(10, 15, 25, 0.6) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.premium-about-image-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 50px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.premium-about-image-header .badge-new {
    margin-bottom: 12px;
}

.premium-about-card h2 {
    font-size: 1.8rem;
    color: var(--color-orange);
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    max-width: 90%;
    text-align: left;
}

.premium-about-content {
    padding: 40px 50px 50px 50px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.premium-about-content .highlight-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.premium-about-content .muted-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.about-image-placeholder {
    width: 100%;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 900px) {

    .about-staggered-row,
    .about-staggered-row.reversed {
        flex-direction: column;
    }

    .about-image-placeholder {
        min-height: 250px;
    }

    /* --- Premium About Card Mobile --- */
    .premium-about-card {
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .premium-about-image {
        height: 250px;
    }

    .premium-about-content {
        padding: 24px 24px 30px 24px;
        margin-top: 0;
    }

    .premium-about-image-header {
        top: 0;
        left: 0;
        right: 0;
        padding: 24px;
        align-items: flex-start;
    }

    .premium-about-image-header .badge-new {
        margin-bottom: 8px;
    }

    .premium-about-card h2 {
        font-size: 1.4rem;
        margin-bottom: 0;
        text-align: left;
    }

    .premium-about-content .highlight-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .premium-about-content .muted-text {
        font-size: 0.95rem;
    }
}