@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rokkitt';
    src: url('assets/fonts/rokkitt-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body.landingpage {
    --brand-orange: #f18619;
    --brand-orange-dark: #cc6d0b;
    --brand-orange-light: #f5a24b;
    --brand-green: #95d600;
    --brand-green-hover: #7ab300;
    --text-primary: #f8f8f5;
    --text-dark: #1a1a1a;
    --line-color: rgba(255, 255, 255, 0.2);

    --font-head: 'Rokkitt', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --space-sm: clamp(0.5rem, 1.5vh, 1rem);
    --space-md: clamp(1rem, 3vh, 2rem);
    --space-lg: clamp(1.5rem, 5vh, 4rem);
    --space-xl: clamp(2.5rem, 6vh, 6rem);
}

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

body.landingpage {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--brand-orange);
    overflow: hidden;
    /* Disable body scroll to use scroll-container */
    -webkit-font-smoothing: antialiased;
}

body.landingpage:not(.legal-page) .section:not(.contact) {
    color: var(--text-dark);
}

body.landingpage:not(.legal-page) .section:not(.contact) .subline {
    opacity: 0.95;
}

body.landingpage h1,
body.landingpage h2,
body.landingpage h3,
body.landingpage .headline {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

body.landingpage .headline {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    letter-spacing: -0.02em;
}

body.landingpage .subline {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}
body.landingpage .small{
	font-size:12px;
}
body.landingpage a {
    text-decoration: none;
    color: inherit;
}

/* Typography elements */
body.landingpage .step-label {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #000000;
}

body.landingpage .step-label.center {
    text-align: center;
}

/* Buttons */
body.landingpage .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: none;
}

body.landingpage .btn-primary {
    background-color: var(--brand-green) !important;
    color: var(--text-dark) !important;
}

/* --- BACKGROUND DEPTH EFFECTS --- */
body.landingpage .bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: #000;
    /* Darker base for more depth */
}

body.landingpage .bg-glow {
    position: absolute;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

body.landingpage .glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
    animation: drift 25s infinite alternate ease-in-out;
}

body.landingpage .glow-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--brand-green) 0%, transparent 70%);
    animation: drift 30s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 30px) scale(1.1);
    }
}

/* --- GLASSMORPHISM ENHANCEMENTS --- */
body.landingpage .step-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.landingpage .step-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--brand-orange);
    z-index: 100 !important;
}

/* Orientation Check Overlay */
body.landingpage .orientation-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Landscape lockout query removed */

body.landingpage .orientation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

body.landingpage .rotate-icon {
    width: 80px;
    height: 80px;
    animation: rotateDevice 2s ease-in-out infinite;
}

body.landingpage .orientation-check h2 {
    font-size: 2rem;
    margin: 0;
}

body.landingpage .orientation-check p {
    font-size: 1.1rem;
    opacity: 0.8;
}

@keyframes rotateDevice {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(90deg);
    }

    70% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

body.landingpage .btn-primary:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body.landingpage .btn:focus-visible,
body.landingpage .nav-links a:focus-visible,
body.landingpage .mobile-nav-links a:focus-visible,
body.landingpage .footer-links a:focus-visible,
body.landingpage .player-btn:focus-visible,
body.landingpage .fullscreen-exit-btn:focus-visible,
body.landingpage .video-modal-close:focus-visible,
body.landingpage .back-to-intro-btn:focus-visible,
body.landingpage .file-upload-box:focus-within,
body.landingpage .radio-label:focus-within {
    outline: 3px solid var(--brand-green);
    outline-offset: 4px;
}

body.landingpage .btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

body.landingpage .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Logo Elements */
body.landingpage .logo {
    position: relative;
    width: 240px;
    height: 50px;
}

body.landingpage .logo-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

body.landingpage .logo-positive {
    opacity: 0;
}

body.landingpage .navbar.scrolled .logo-negative {
    opacity: 0;
}

body.landingpage .navbar.scrolled .logo-positive {
    opacity: 1;
}

/* Layout Containers */
body.landingpage .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4vw;
    transition: all 0.4s ease;
}

body.landingpage .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.landingpage .navbar.scrolled::before {
    opacity: 1;
}

body.landingpage .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

body.landingpage .nav-links {
    display: flex;
    gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

body.landingpage .nav-links a {
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

body.landingpage .nav-links a::after,
body.landingpage .mobile-nav-links a:not(.btn)::after,
body.landingpage .footer-links a::after,
body.landingpage .footer-bottom > span a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35em;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

body.landingpage .navbar.scrolled .nav-links a,
body.landingpage .navbar.scrolled .nav-back-link a {
    color: var(--text-primary);
}

body.landingpage .nav-links a:hover,
body.landingpage .nav-links a.active {
    opacity: 1;
}

body.landingpage .nav-links a:hover::after,
body.landingpage .nav-links a.active::after,
body.landingpage .mobile-nav-links a:not(.btn):hover::after,
body.landingpage .mobile-nav-links a:not(.btn).active::after,
body.landingpage .footer-links a:hover::after,
body.landingpage .footer-bottom > span a:hover::after {
    transform: scaleX(1);
}

body.landingpage .nav-links a.active {
    color: #000;
}

body.landingpage .navbar.scrolled .nav-links a.active {
    color: var(--brand-green);
}

/* Hamburger & Mobile Menu Styles (hidden by default) */
body.landingpage .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    /* Über das Mobile Menu Overlay (100) */
    transition: transform 0.3s ease;
}

body.landingpage .hamburger.active {
    position: fixed;
    top: 2rem;
    right: 4vw;
    opacity: 0;
    pointer-events: none;
}

body.landingpage .hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

body.landingpage .navbar.scrolled .hamburger span {
    background-color: #fff;
}

/* X-Animation for Hamburger */
body.landingpage .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #fff !important;
}

body.landingpage .hamburger.active span:nth-child(2) {
    opacity: 0;
}

body.landingpage .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #fff !important;
}

/* Mobile Menu Overlay */
body.landingpage .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

body.landingpage .mobile-menu.active {
    transform: translateX(0);
}

body.landingpage .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

body.landingpage .mobile-nav-links a {
    position: relative;
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

body.landingpage .mobile-nav-links a.active:not(.btn) {
    color: var(--brand-green);
}

body.landingpage .mobile-menu-close {
    position: fixed;
    top: max(1.1rem, env(safe-area-inset-top));
    right: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    z-index: 103;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

body.landingpage .mobile-menu-close:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    transform: rotate(90deg);
}

body.landingpage .mobile-menu-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

body.landingpage .mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

body.landingpage .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

body.landingpage .nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

body.landingpage .navbar .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    body.landingpage .nav-actions {
        gap: 1.5rem;
    }
}

/* Scroll Container for Snapping */
body.landingpage .scroll-container {
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for clean look */
    scrollbar-width: none;
}

body.landingpage .scroll-container::-webkit-scrollbar {
    display: none;
}

body.landingpage .section {
    min-height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 6vw;
    overflow: clip;
    background: transparent;
}

body.landingpage .section-content {
    width: 100%;
    max-width: 1600px;
    position: relative;
    z-index: 2;
}

/* Global Animation States */
body.landingpage .gsap-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
}

/* Animated Gradient Background */
body.landingpage {
    --color-bg1: rgb(241, 134, 25);
    --color-bg2: rgb(215, 100, 10);
    --color1: 255, 120, 0;
    --color2: 255, 170, 0;
    --color3: 200, 60, 0;
    --color4: 255, 200, 0;
    --color5: 255, 140, 50;
    --color-interactive: 255, 215, 0;
    /* Golden yellow */
    --circle-size: 80%;
    --blending: hard-light;
}

body.landingpage .gradient-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    z-index: -1;
}

body.landingpage .svgBlur {
    display: none;
}

body.landingpage .gradients-container {
    filter: blur(80px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

body.landingpage .g1,
body.landingpage .g2,
body.landingpage .g3,
body.landingpage .g4,
body.landingpage .g5,
body.landingpage .interactive {
    position: absolute;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
}

body.landingpage .g1 {
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
}

body.landingpage .g2 {
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
}

body.landingpage .g3 {
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    width: calc(var(--circle-size) * 1.2);
    height: calc(var(--circle-size) * 1.2);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
}

body.landingpage .g4 {
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

body.landingpage .g5 {
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
}

body.landingpage .interactive {
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.3;
    /* Markiert reduziert */
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(50%);
    }

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

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        transform: translateX(50%) translateY(10%);
    }

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

/* Section 1: Hero */
body.landingpage .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

body.landingpage .hero .subline,
body.landingpage .step .subline,
body.landingpage .video-gallery .subline {
    text-wrap: balance;
}

body.landingpage .hero-text .headline,
body.landingpage .step-1 .headline,
body.landingpage .step-2 .headline,
body.landingpage .step-3 .headline {
    font-size: clamp(2.125rem, 4.25vw, 4.675rem);
    /* Reduced by 15% */
}

body.landingpage .hero-text {
    flex: 1;
    max-width: 800px;
    z-index: 10;
}

body.landingpage .hero-visuals {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70vh;
    pointer-events: none;
    perspective: 1000px;
}

body.landingpage .hero-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* The Fixed Orange-Yellow Frame */
body.landingpage .hero-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 400px;
    border: 3px solid var(--color-interactive);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Freestanding Cutout Slides */
body.landingpage .frame-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    visibility: hidden;
}

body.landingpage .frame-slide.current {
    opacity: 1;
    transform: scale(1) translateY(0);
    visibility: visible;
}

body.landingpage .cutout-visual {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Modern Animated Progress Nav */
body.landingpage .hero-progress-nav {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-bottom: 15px;
    /* Space for the track */
}

body.landingpage .nav-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

body.landingpage .nav-step.active {
    opacity: 1;
}

body.landingpage .step-num {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
}

body.landingpage .step-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

body.landingpage .progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

body.landingpage .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* Navigated via JS */
    background: #ffffff;
}

body.landingpage .hero-progress-nav .progress-fill {
    background: var(--text-dark);
}

body.landingpage .custom-player-controls .progress-fill {
    background: var(--brand-green);
}

body.landingpage .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

body.landingpage .scroll-hint-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

body.landingpage .scroll-line {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

body.landingpage .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Section 2 & 3: Split Layout */
body.landingpage .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Clean grid columns reversing on desktop */
@media (min-width: 1101px) {
    body.landingpage .split-layout.reverse .text-col {
        grid-column: 2;
    }
    body.landingpage .split-layout.reverse .visual-col {
        grid-column: 1;
        grid-row: 1;
    }
}

body.landingpage .text-col {
    max-width: 600px;
}

body.landingpage .visual-col {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.landingpage .visual-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep placeholder inside */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

body.landingpage .cards-stack-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* No perspective for true top-view */
    display: flex;
    align-items: center;
    justify-content: center;
}

body.landingpage .step-card {
    position: absolute;
    width: 250px;
    height: 310px;
    border-radius: 12px;
    /* Soft rounded corners */
    background: #ffffff;
    /* Pure white polaroid frame */
    cursor: pointer;
    /* initial state off-screen, handled by JS */
    transform: translateX(100vw) rotateZ(45deg);
    opacity: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    /* Polaroid padding: thick bottom */
    padding: 12px 12px 60px 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    /* Subtle 20% dropshadow */
}

body.landingpage .step-card:hover {
    border-color: var(--color-interactive);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

body.landingpage .step-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

body.landingpage .card-label {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #333;
    /* Dark text on white polaroid frame */
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

/* Step 2 Slider */
body.landingpage .step2-slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

body.landingpage .step2-images-wrapper {
    width: 80%;
    height: 70%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: #000;
}

body.landingpage .step2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.landingpage .step2-slide.active {
    opacity: 1;
}

body.landingpage .step2-progress-nav {
    max-width: 300px;
    /* smaller specifically for 2 items */
}

/* Section 4: Hero Block */
body.landingpage .hero-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.landingpage .hero-block .headline {
    text-align: center;
    margin-bottom: var(--space-xl);
}

body.landingpage .material-transition-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 35vh;
    margin: 0 auto var(--space-xl);
}

body.landingpage .step-3 .headline {
    margin-bottom: var(--space-md);
    /* Näher ans Bild */
}

body.landingpage .step3-wide-container {
    max-width: 800px;
    height: auto;
    /* overrides the 35vh from .material-transition-container */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-md);
    /* Text näher ans Bild */
}

body.landingpage .step3-overlay-btn {
    position: absolute;
    bottom: 20px;
    box-shadow: none;
    z-index: 10;
    padding: 0.65rem 1.65rem;
    font-size: 0.75rem;
}

body.landingpage .step3-overlay-btn.left-btn {
    left: 20px;
}

body.landingpage .step3-overlay-btn.right-btn {
    right: 20px;
}

body.landingpage .plush-visual {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

body.landingpage .two-col-text {
    column-count: 1;
    /* Fallback for mobile */
    column-gap: 3rem;
    text-align: left;
}

@media (min-width: 768px) {
    body.landingpage .two-col-text {
        column-count: 2;
    }
}

body.landingpage .process-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

body.landingpage .process-arrow {
    width: 40px;
    height: 1px;
    background: #fff;
    position: relative;
}

body.landingpage .process-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
}

/* Section 5: Scenes */
/* Section 5: Scenes (Instagram Style) */
body.landingpage .option-card {
    padding: 0;
    justify-content: flex-start;
    height: 360px;
    /* Slightly taller for the UI elements */
}

body.landingpage .option-card img.insta-post-img {
    height: 220px;
    width: 100%;
}

body.landingpage .insta-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    width: 100%;
}

body.landingpage .insta-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e1e1e1;
    margin-right: 10px;
    overflow: hidden;
}

body.landingpage .insta-avatar img {
    object-fit: cover;
    background: none;
}

body.landingpage .insta-user {
    font-size: 0.8rem;
    font-weight: 700;
    color: #262626;
    flex: 1;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
}

body.landingpage .insta-dots {
    display: flex;
    gap: 2px;
}

body.landingpage .insta-dots span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #262626;
}

body.landingpage .insta-footer {
    padding: 8px 12px 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

body.landingpage .insta-actions {
    display: flex;
    gap: 12px;
    color: #262626;
}

body.landingpage .insta-actions svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.landingpage .insta-caption {
    font-size: 0.8rem;
    color: #262626;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    font-weight: 400;
    font-family: var(--font-body);
}

body.landingpage .insta-caption strong {
    font-weight: 700;
}

/* Section 6: Video Grid */
body.landingpage .layout-mixed {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
}

body.landingpage .video-grid {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.landingpage .video-main {
    width: 85%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

body.landingpage .video-subs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

body.landingpage .video-sub {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--brand-orange-light);
    z-index: 3;
}

body.landingpage .video-sub:nth-child(1) {
    bottom: -10%;
    left: -5%;
    width: 35%;
    height: 35%;
}

body.landingpage .video-sub:nth-child(2) {
    top: -5%;
    right: -5%;
    width: 30%;
    height: 35%;
}

body.landingpage .video-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Modern Video Player in Option 2 */
body.landingpage .modern-player-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    /* Clean, fine line to make it pop slightly from background, no massive shadows */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.landingpage .modern-player-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    outline: none;
    /* Wrapper übernimmt das abrunden */
    border-radius: 0;
}

/* --- Custom Video Player UI --- */
body.landingpage .custom-player-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: #181a1f;
    /* Dunkler Hintergrund wie im Bild */
    border-radius: 20px;
}

body.landingpage .custom-video-inner {
    position: relative;
    width: 100%;
    /* Schwarz als Letterbox falls Video ein anderes Format hat */
    background: #000;
}

body.landingpage .center-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
}

body.landingpage .center-play-button:hover {
    background: var(--brand-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

body.landingpage .center-play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
    /* Optisch zentrieren */
}

body.landingpage .custom-player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body.landingpage .custom-player-wrapper:hover .custom-player-controls,
body.landingpage .custom-player-wrapper:focus-within .custom-player-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.landingpage .controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

body.landingpage .controls-left,
body.landingpage .controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

body.landingpage .player-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

body.landingpage .player-btn:hover {
    color: var(--brand-orange);
    transform: scale(1.05);
}

body.landingpage .player-btn svg {
    width: 20px;
    height: 20px;
}

body.landingpage .progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

body.landingpage .fullscreen-exit-btn {
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--brand-orange);
    color: #fff;
    cursor: pointer;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

body.landingpage .fullscreen-exit-btn:hover {
    background: var(--brand-orange-dark);
}

body.landingpage .progress-container:hover {
    height: 8px;
}

body.landingpage .progress-bar {
    width: 100%;
    height: 100%;
}

body.landingpage .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--brand-orange);
    border-radius: 3px;
    position: relative;
}

body.landingpage .progress-thumb {
    position: absolute;
    right: -6px;
    top: -3px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease;
    pointer-events: none;
}

body.landingpage .progress-container:hover .progress-thumb {
    transform: scale(1);
}

/* Modal specific override to fit the new custom-player-wrapper logic */
body.landingpage .video-modal-content.custom-player-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

/* Section 7: Video Slider */
body.landingpage .text-focus {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    /* Zentriert alle Texte in diesem Block */
    position: relative;
    z-index: 10;
}

body.landingpage .text-focus .step-label,
body.landingpage .text-focus .headline,
body.landingpage .text-focus .subline {
    margin-inline: auto;
}

body.landingpage .video-gallery .gallery-headline {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

/* Section 7: Modern Video Grid */
body.landingpage .video-gallery {
    --gallery-card-height: min(46vh, 480px);
    --gallery-card-width: calc(var(--gallery-card-height) * 9 / 16);
    --gallery-gap: 2rem;
}

body.landingpage .modern-video-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    gap: var(--gallery-gap);
    width: 100%;
    max-width: calc(3 * var(--gallery-card-width) + 2 * var(--gallery-gap));
    margin-top: min(2vh, 1.5rem);
    padding-bottom: 1rem;
    margin-inline: auto;
    -webkit-overflow-scrolling: touch;
}

body.landingpage .modern-video-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* If there are 4+ items, they overflow. Align to start so first item is fully visible */
body.landingpage .video-gallery.gallery-multi .modern-video-grid {
    justify-content: flex-start;
}

body.landingpage .grid-video-item {
    position: relative;
    flex: 0 0 var(--gallery-card-width);
    height: var(--gallery-card-height);
    width: var(--gallery-card-width);
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    /* Klick auf Video oder Controls separat */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: #181a1f;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

body.landingpage .grid-video-item:hover {
    transform: translateY(-5px);
}

body.landingpage .grid-video-item .custom-player-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.landingpage .grid-video-item .custom-video-inner {
    flex: 1;
    min-height: 0;
    width: 100%;
    position: relative;
}

/* Bulletproof: absolute video to prevent layout heights pushing controls out of layout aspect ratio boundaries */
body.landingpage .grid-video-item .custom-video-inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

body.landingpage .grid-video-item .custom-video-inner {
    height: 100%;
}

body.landingpage .custom-player-wrapper:fullscreen,
body.landingpage .custom-player-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    background: #000;
}

body.landingpage .custom-player-wrapper:fullscreen .fullscreen-exit-btn,
body.landingpage .custom-player-wrapper:-webkit-full-screen .fullscreen-exit-btn {
    display: flex;
}

body.landingpage .custom-player-wrapper:fullscreen .custom-video-inner,
body.landingpage .custom-player-wrapper:-webkit-full-screen .custom-video-inner {
    flex: 1;
    height: 100vh;
}

body.landingpage .custom-player-wrapper:fullscreen .custom-video,
body.landingpage .custom-player-wrapper:-webkit-full-screen .custom-video {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #000;
}

body.landingpage .video-gallery .subline {
    max-width: 1100px;
    margin-bottom: min(3vh, 2.5rem) !important;
}

/* Layout overrides based on video count */

/* 1. Only 1 video in gallery */
body.landingpage .video-gallery.gallery-single {
    --gallery-card-height: min(52vh, 560px);
}

body.landingpage .video-gallery.gallery-single .modern-video-grid {
    max-width: var(--gallery-card-width);
    margin-inline: auto;
}

/* 2. 2 videos in gallery */
body.landingpage .video-gallery.gallery-double .modern-video-grid {
    max-width: calc(2 * var(--gallery-card-width) + var(--gallery-gap));
    margin-inline: auto;
}

/* Die Galerie Items nutzen nun das identische .custom-player Design */



/* Video Modal (Lightbox) */
body.landingpage .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

body.landingpage .video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

body.landingpage .video-modal-content {
    position: relative;
    width: 90vw;
    max-width: min(420px, calc((90vh - 80px) * 9 / 16));
    max-height: calc(100vh - 100px);
    aspect-ratio: 9 / 16;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

body.landingpage .video-modal.active .video-modal-content {
    transform: scale(1);
}

body.landingpage .video-modal-content .custom-video-inner {
    flex: 1;
    min-height: 0;
    width: 100%;
    position: relative;
}

body.landingpage .video-modal-content video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    outline: none;
    object-fit: contain;
    background: #000;
}

body.landingpage .video-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--brand-orange);
    cursor: pointer;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
    line-height: 1;
}

body.landingpage .video-modal-close:hover {
    opacity: 1;
    color: var(--brand-orange-dark);
    transform: rotate(90deg);
}

@media (hover: none) {
    body.landingpage .custom-player-controls {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

/* Section 8: Contact Form */
body.landingpage .contact {
    background: #000000 !important;
}

body.landingpage .form-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

body.landingpage .form-card {
    background: var(--brand-orange);
    color: #000000;
    padding: clamp(1.5rem, 3vh, 3rem);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

body.landingpage .show-form-btn {
    display: none;
}

body.landingpage .back-to-intro-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

body.landingpage .back-to-intro-btn:hover {
    opacity: 1;
}

body.landingpage .back-to-intro-btn svg {
    width: 18px;
    height: 18px;
}

body.landingpage .form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

body.landingpage .indicator-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.landingpage .indicator-step.active {
    background: var(--brand-green);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(149, 214, 0, 0.4);
    border-color: #fff;
}

body.landingpage .indicator-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

body.landingpage .form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

body.landingpage .form-step h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
}

body.landingpage .input-group {
    margin-bottom: clamp(0.7rem, 2vh, 1.5rem);
}

body.landingpage .input-group label,
body.landingpage .input-group  select {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000000;
}

body.landingpage .input-group input[type="text"],
body.landingpage .input-group input[type="email"],
body.landingpage .input-group input[type="phone"],
body.landingpage .input-group input[type="tel"],
body.landingpage .input-group  select,
body.landingpage .input-group textarea {
    width: 100%;
    padding: clamp(0.5rem, 1.5vh, 1rem);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.landingpage .input-group input:focus,
body.landingpage .input-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 10px rgba(149, 214, 0, 0.3);
}

body.landingpage .input-group input.error-field,
body.landingpage .input-group textarea.error-field {
    border-color: #ff0000 !important;
    background: #fffafa;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.2);
}

body.landingpage .input-group input.error-field::placeholder,
body.landingpage .input-group textarea.error-field::placeholder {
    color: #ff0000 !important;
    opacity: 1 !important;
    font-weight: 700;
}

body.landingpage .file-upload-box {
    border: 2px dashed rgba(0, 0, 0, 0.4);
    background: #ffffff;
    border-radius: 8px;
    padding: clamp(1rem, 3vh, 2rem);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.landingpage .file-upload-box:hover {
    border-color: var(--brand-green);
    background: #fafafa;
}

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

body.landingpage .upload-text {
    font-weight: 600;
    color: #000000;
}

body.landingpage .radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.landingpage .radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.landingpage .radio-label:hover {
    border-color: var(--brand-green);
    background: #fafafa;
}

body.landingpage .radio-label input[type="radio"] {
    accent-color: #000000;
    width: 20px;
    height: 20px;
}

body.landingpage .form-card .btn-secondary {
    color: #000000;
    border-color: #000000;
}

body.landingpage .radio-group-legend {
    color: #000000;
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.landingpage .field-error,
body.landingpage .form-error-message {
    min-height: 1.2em;
    margin-top: 0.35rem;
    color: #7a0000;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

body.landingpage .form-error-message {
    margin: 0.75rem 0 0;
}

body.landingpage .privacy-note {
    color: #1f1f1f;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 0.75rem;
}

body.landingpage .privacy-note a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

body.landingpage .gallery-empty-state {
    width: 100%;
    padding: 2rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
}

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

body.landingpage .form-actions {
    margin-top: 2rem;
}

/* Success Message Styles */
body.landingpage .form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) 0;
    animation: successReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

body.landingpage .form-success-message.active {
    display: flex;
}

@keyframes successReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

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

body.landingpage .success-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(149, 214, 0, 0.3);
}

body.landingpage .success-icon svg {
    width: 30px;
    height: 30px;
}

body.landingpage .form-success-message h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

body.landingpage .form-success-message p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Loading State */
body.landingpage .btn-submit.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

body.landingpage .btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
    border: 2px solid #000;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body.landingpage .footer {
    position: relative;
    width: 100%;
    padding: 1.5rem 6vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
    color: var(--text-primary);
    scroll-snap-align: end;
}

body.landingpage .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

body.landingpage .footer-links {
    display: flex;
    gap: 2rem;
}

body.landingpage .footer-bottom {
    opacity: 1;
}

body.landingpage .footer-bottom > span,
body.landingpage .footer-links {
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

body.landingpage .footer-bottom:hover > span,
body.landingpage .footer-bottom:hover .footer-links {
    opacity: 1;
}

body.landingpage .footer-bottom a,
body.landingpage .footer-links a {
    position: relative;
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease;
}

body.landingpage .footer-bottom a:hover,
body.landingpage .footer-links a:hover {
    color: var(--brand-green);
}

@media (prefers-reduced-motion: reduce) {
    body.landingpage *,
    body.landingpage *::before,
    body.landingpage *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    body.landingpage .gradients-container,
    body.landingpage .bg-glow,
    body.landingpage .interactive {
        animation: none !important;
        filter: none !important;
        transform: none !important;
    }
}

/* Side Navigation (Step-by-Step Progress Tracker) */
body.landingpage .side-nav {
    position: fixed;
    right: 1vw;
    /* Moving it much closer to the edge (was 3vw) */
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 30px;
}

body.landingpage .nav-progress-line {
    position: absolute;
    top: 15px;
    /* Start at center of first dot */
    bottom: 15px;
    /* End at center of last dot */
    right: 14px;
    /* Center exactly under the 10px dots */
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    border-radius: 2px;
}

/* The green fill that grows perfectly with the active steps (JS needed for accurate height or CSS trick) 
   We will rely on the dots changing state for now for the "lit up" path. */

body.landingpage .side-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    align-items: flex-end;
    gap: 0.8rem;
    /* Extremely compact (was 1.5rem) */
    z-index: 2;
}

body.landingpage .side-nav li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

body.landingpage .nav-dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    text-decoration: none;
}

/* The visual bubble step */
body.landingpage .nav-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    /* Reserve space for active border */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

/* Passed steps (visual trick to light up the trail) */
/* wir setzen active auf den current und visualisieren ihn massiv */
body.landingpage .nav-dot.active .nav-icon {
    background: var(--brand-green);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(149, 214, 0, 0.6);
}

body.landingpage .nav-dot:hover .nav-icon {
    background: #fff;
    transform: scale(1.3);
}

/* Compact Tooltip Label */
body.landingpage .nav-label {
    position: absolute;
    right: 25px;
    opacity: 0;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.55rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    pointer-events: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 2px 6px;
    border-radius: 3px;
    transform: translateX(10px) translateY(1px);
    transition: all 0.3s ease;
}

body.landingpage .nav-dot:hover .nav-label {
    opacity: 1;
    transform: translateX(0) translateY(1px);
}

body.landingpage .nav-dot.active .nav-label {
    opacity: 1;
    background: var(--brand-green);
    color: var(--text-dark);
    transform: translateX(0) translateY(1px);
}

@media (max-width: 1100px) {

    /* Navbar Tablet Overrides */
    body.landingpage .nav-links {
        display: none !important;
    }

    body.landingpage .hamburger {
        display: flex !important;
    }

    body.landingpage .logo {
        width: 180px !important;
    }

    body.landingpage .nav-container {
        gap: 1.5rem !important;
    }

    body.landingpage {
        font-size: 16px;
        overflow: hidden !important;
    }

    body.landingpage .scroll-container {
        height: 100dvh !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    body.landingpage .section {
        min-height: 100dvh !important;
        overflow-y: auto !important;
        padding: 100px 30px 60px 30px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Video-Galerie: Snapping aktivieren und Sektionshöhe fixieren */
    body.landingpage .video-gallery.section {
        scroll-snap-align: start !important;
        height: 100dvh !important;
        overflow: hidden !important;
        padding: 80px 30px 40px 30px !important;
    }

    body.landingpage .section-content,
    body.landingpage .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 900px !important;
        height: auto !important;
        margin: 0 auto !important;
        gap: 1.2rem !important;
        /* Etwas kompakter damit alles passt */
        padding: 0 !important;
    }

    /* Hierarchy: Visual always ABOVE Text */
    body.landingpage .visual-col,
    body.landingpage .hero-visuals,
    body.landingpage .modern-player-wrapper.custom-player-wrapper,
    body.landingpage .material-transition-container {
        order: -1 !important;
    }

    body.landingpage .text-col,
    body.landingpage .hero-text {
        order: 1 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    body.landingpage .hero-visuals {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: scale(1.1) !important;
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        margin-bottom: 2rem !important;
        opacity: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.landingpage .headline {
        font-size: clamp(1.8rem, 5.5vw, 3.2rem) !important;
        line-height: 1.1;
        margin-bottom: 0.6rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    body.landingpage .subline {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
        max-width: 650px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.5;
    }

    /* STEP 1: Polaroids Portrait - Mehr Platz zum Fächern */
    body.landingpage .step-1 .visual-col {
        height: 380px !important;
        margin-bottom: 1.5rem !important;
    }

    body.landingpage .step-1 .cards-stack-container {
        transform: scale(1.0) !important;
        height: 100% !important;
    }

    body.landingpage .step-card:not(.option-card) {
        width: 250px !important;
        height: 310px !important;
    }

    /* STEP 2: Character Portrait */
    body.landingpage .step-2 .visual-col {
        height: 280px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 1rem !important;
    }

    body.landingpage .step2-images-wrapper {
        width: 85% !important;
        height: 75% !important;
    }

    body.landingpage .step2-images-wrapper img {
        max-height: 100% !important;
        object-fit: contain !important;
    }

    body.landingpage .step2-progress-nav {
        transform: scale(0.8) !important;
        margin-top: 1rem !important;
    }

    /* STEP 3 Portrait - Kuscheltier größer und nicht abgeschnitten */
    body.landingpage .step-3 .material-transition-container {
        height: 300px !important;
        /* Deutlich mehr Platz */
        width: 100% !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.landingpage .step-3 .plush-visual {
        height: 100% !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transform: scale(1.15) !important;
        /* 15% größer für mehr Wirkung */
    }

    /* OPTION 1: Instagram Scenes Portrait - Mehr Platz zum Fächern */
    body.landingpage .option-1 .visual-col {
        height: 400px !important;
        margin-bottom: 1.5rem !important;
    }

    body.landingpage .option-1 .cards-stack-container {
        transform: scale(0.95) !important;
        height: 100% !important;
    }

    body.landingpage .option-card {
        width: 320px !important;
        height: 420px !important;
    }

    /* OPTION 2: Video Section Portrait */
    body.landingpage .option-2 .custom-player-wrapper {
        width: 100% !important;
        max-width: 550px !important;
        margin-bottom: 1.5rem !important;
    }

    /* VIDEO GALLERY Grid Portrait */
    body.landingpage .video-gallery {
        --gallery-card-height: 38vh !important;
        --gallery-gap: 1.2rem !important;
    }

    body.landingpage .video-gallery.gallery-single {
        --gallery-card-height: 46vh !important;
    }

    body.landingpage .modern-video-grid {
        display: flex !important;
        margin: 1rem auto !important;
    }

    /* CONTACT FORM Portrait - Proportional & Modern */
    body.landingpage #contact.section {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    body.landingpage .form-card {
        width: 85% !important;
        max-width: 780px !important;
        padding: 3rem !important;
        margin: 0 auto !important;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3) !important;
    }

    body.landingpage .form-step h3 {
        font-size: 2.1rem !important;
        text-align: center !important;
        margin-bottom: 2.5rem !important;
        letter-spacing: -0.02em !important;
    }

    /* Grid für Step 1 Inputs auf Tablet - nur wenn aktiv */
    body.landingpage .form-step[data-step="1"].active {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem 2rem !important;
        align-items: start;
    }

    body.landingpage .form-step[data-step="1"].active h3,
    body.landingpage .form-step[data-step="1"].active .form-actions {
        grid-column: 1 / span 2;
    }

    body.landingpage .input-group {
        margin-bottom: 1.5rem !important;
    }

    body.landingpage .input-group input,
    body.landingpage .input-group textarea {
        font-size: 1.1rem !important;
        padding: 1rem !important;
    }

    body.landingpage .btn-next,
    body.landingpage .btn-submit,
    body.landingpage .btn-prev {
        padding: 1rem 2.5rem !important;
        font-size: 1.1rem !important;
    }

    body.landingpage .side-nav {
        display: none !important;
    }
}

/* MOBILE PORTRAIT (Smartphones) */
@media (max-width: 600px) {
    body.landingpage .navbar {
        padding: 1rem 15px !important;
    }

    body.landingpage .section {
        padding: 78px 20px 32px 20px !important;
    }

    body.landingpage .nav-container {
        padding: 0 10px !important;
    }

    body.landingpage .logo {
        width: 140px !important;
    }

    body.landingpage .nav-cta {
        display: none !important;
        /* Kein Platz für Kontakt-Btn im Header auf Mini-Handys */
    }

    body.landingpage .headline {
        font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
    }

    body.landingpage .subline {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }

    /* Hero Mobile Adjustments */
    body.landingpage .hero-visuals {
        height: auto !important;
        min-height: clamp(190px, 34dvh, 240px) !important;
        /* Bild deutlich größer */
        transform: scale(1.0) !important;
        margin-bottom: 0px !important;
    }

    body.landingpage .hero-frame-container {
        gap: 0.5rem !important;
        /* Weniger Abstand zwischen Bild und Schritten */
    }

    body.landingpage .hero-frame {
        max-height: min(300px, 32dvh) !important;
    }

    body.landingpage .hero-progress-nav {
        transform: none !important;
        margin-top: 0 !important;
        max-width: 280px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.landingpage .hero-progress-nav .step-num {
        font-size: 0.6rem !important;
    }

    body.landingpage .hero-progress-nav .step-text {
        font-size: 0.65rem !important;
        letter-spacing: 0.05em !important;
    }

    body.landingpage .hero-text {
        margin-top: -16px !important;
        /* Text höher schieben, aber kontrolliert */
    }

    body.landingpage .hero-text .btn-primary {
        padding: 0.65rem 1.65rem !important;
        /* Button kleiner */
        font-size: 0.9rem !important;
        width: auto !important;
        /* Nicht volle Breite für diesen einen Button */
    }

    body.landingpage .hero .subline {
        font-size: 0.88rem !important;
        line-height: 1.32 !important;
        margin-bottom: 1rem !important;
    }

    body.landingpage .scroll-hint {
        display: none !important;
        /* Scroll down Animation entfernen */
    }

    body.landingpage .step-1 .visual-col,
    body.landingpage .option-1 .visual-col {
        height: 290px !important;
        margin-top: 30px !important;
        margin-bottom: 2.5rem !important;
    }

    body.landingpage .step-label {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }

    body.landingpage .cards-stack-container {
        transform: scale(0.8) !important;
        width: 100% !important;
        height: 100% !important;
    }

    body.landingpage .step-card:not(.option-card) {
        width: 160px !important;
        height: 210px !important;
    }

    body.landingpage .option-card {
        width: 180px !important;
        height: 240px !important;
        overflow: hidden !important;
    }

    body.landingpage .option-card img.insta-post-img {
        height: 120px !important;
    }

    body.landingpage .insta-header {
        padding: 5px 8px !important;
    }

    body.landingpage .insta-avatar {
        width: 20px !important;
        height: 20px !important;
        margin-right: 6px !important;
    }

    body.landingpage .insta-user {
        font-size: 0.65rem !important;
    }

    body.landingpage .insta-footer {
        padding: 4px 8px 8px !important;
        gap: 2px !important;
    }

    body.landingpage .insta-actions {
        font-size: 0.7rem !important;
        gap: 8px !important;
    }

    body.landingpage .insta-caption {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
    }

    body.landingpage .step-2 .visual-col {
        height: 280px !important;
        margin-bottom: 2rem !important;
    }

    body.landingpage .step2-images-wrapper {
        width: 90% !important;
        height: 85% !important;
        border-radius: 12px !important;
        box-shadow: none !important;
    }

    body.landingpage .step2-progress-nav {
        transform: none !important;
        max-width: 180px !important;
        margin-top: 0.5rem !important;
    }

    body.landingpage .step-3 .hero-block {
        margin-top: 0 !important;
    }

    body.landingpage .step-3 .step-label {
        margin-top: -15px !important;
        /* Nur Textelement hochziehen */
        margin-bottom: 0.1rem !important;
    }

    body.landingpage .step-3 .headline {
        margin-bottom: 0.3rem !important;
        font-size: 1.9rem !important;
    }

    body.landingpage .step-3 .material-transition-container {
        height: 220px !important;
        width: 100% !important;
        left: auto !important;
        transform: none !important;
        max-width: 480px !important;
        border-radius: 12px !important;
        margin-bottom: 1rem !important;
    }

    body.landingpage .step-3 .plush-visual {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    body.landingpage .step-3 .step3-overlay-btn.left-btn {
        display: none !important;
        /* Den 'Anfragen' Button entfernen */
    }

    body.landingpage .step-3 .step3-overlay-btn.right-btn {
        bottom: 12% !important;
        /* Button deutlich höher schieben */
        left: 50% !important;
        /* Mittig setzen */
        right: auto !important;
        transform: translateX(-50%) !important;
        white-space: nowrap !important;
        padding: 0.5rem 1.2rem !important;
        font-size: 0.75rem !important;
        width: auto !important;
        min-width: 120px !important;
        border-radius: 50px !important;
        position: absolute !important;
        z-index: 20 !important;
    }

    /* Animationen (Option 2) Mobile Adjustments */
    body.landingpage .option-2 .custom-player-wrapper {
        width: 100% !important;
        max-width: 340px !important;
        margin: 1.5rem auto !important;
        transform: none !important;
        position: relative !important;
        z-index: 10 !important;
    }


    /* Gallery Slider Mobile Refinement */
    body.landingpage .video-gallery.section {
        height: 100dvh !important;
        overflow: hidden !important;
        padding-top: 70px !important;
        padding-bottom: 30px !important;
        justify-content: center !important;
        scroll-snap-align: start !important;
    }

    body.landingpage .video-gallery {
        --gallery-card-height: 38vh !important;
        --gallery-gap: 1rem !important;
    }

    body.landingpage .video-gallery.gallery-single {
        --gallery-card-height: 44vh !important;
    }

    body.landingpage .video-gallery .section-content {
        gap: 0.2rem !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    body.landingpage .video-gallery .headline {
        font-size: clamp(1.3rem, 5.5vw, 1.6rem) !important;
        margin-bottom: 0.3rem !important;
    }

    body.landingpage .video-gallery .gallery-headline {
        white-space: nowrap !important;
        font-size: clamp(1.08rem, 5.2vw, 1.55rem) !important;
    }

    body.landingpage .video-gallery .subline {
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.8rem !important;
        max-width: 95% !important;
    }

    body.landingpage .modern-video-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 10vw !important;
        /* Zentrierungshilfe für Snap-Items */
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        justify-content: flex-start !important;
    }

    body.landingpage .modern-video-grid::-webkit-scrollbar {
        display: none !important;
    }

    body.landingpage .grid-video-item {
        flex: 0 0 var(--gallery-card-width) !important;
        height: var(--gallery-card-height) !important;
        width: var(--gallery-card-width) !important;
        aspect-ratio: 9 / 16 !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

    body.landingpage .video-gallery.gallery-single .grid-video-item {
        margin-inline: auto !important;
    }

    body.landingpage .grid-video-item .custom-player-wrapper {
        width: 100% !important;
        height: 100% !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    }

    /* Contact Form Mobile: Single Column */
    body.landingpage #contact.section {
        padding-top: 100px !important;
        justify-content: flex-start !important;
    }

    /* By default on mobile, hide the form card and show intro */
    body.landingpage #contact .form-card {
        display: none !important;
    }

    body.landingpage #contact .form-intro {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem !important;
    }

    /* When form is active, flip visibility */
    body.landingpage #contact.form-active .form-intro {
        display: none !important;
    }

    body.landingpage #contact.form-active .form-card {
        display: block !important;
        padding: 1rem !important;
        border-radius: 12px !important;
    }

    body.landingpage .form-steps-indicator {
        margin-bottom: 0.8rem !important;
        padding: 0 !important;
    }

    body.landingpage .indicator-step {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }

    body.landingpage .indicator-line {
        margin: 0 5px !important;
    }

    body.landingpage .form-step[data-step="1"].active {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }

    body.landingpage .form-step .input-group {
        width: 100% !important;
    }

    body.landingpage .form-step h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.7rem !important;
    }

    body.landingpage .input-group label {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
    }

    body.landingpage .input-group {
        margin-bottom: 0.6rem !important;
    }

    body.landingpage .input-group input,
    body.landingpage .input-group textarea {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.9rem !important;
    }

    body.landingpage .input-group textarea {
        height: 80px !important;
        min-height: 80px !important;
    }

    body.landingpage .radio-label {
        padding: 0.6rem !important;
        gap: 0.6rem !important;
    }

    body.landingpage .radio-label input[type="radio"] {
        width: 16px !important;
        height: 16px !important;
    }

    body.landingpage .file-upload-box {
        padding: 0.8rem !important;
    }

    body.landingpage .upload-text {
        font-size: 0.85rem !important;
    }

    body.landingpage .form-actions {
        margin-top: 1rem !important;
        gap: 0.5rem !important;
    }

    body.landingpage .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
    }

    body.landingpage .show-form-btn {
        display: inline-flex !important;
        width: auto !important;
        margin-top: 1rem;
    }

    body.landingpage .back-to-intro-btn {
        display: flex !important;
        margin-bottom: 0.8rem !important;
        font-size: 0.7rem !important;
    }

    /* Gallery Slider Styles */
    body.landingpage .gallery-slider-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.landingpage .footer {
        position: relative !important;
        bottom: auto !important;
        padding: 2rem 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100% !important;
        margin-top: 2rem !important;
        display: block !important;
    }

    body.landingpage .footer-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        display: flex !important;
    }

    body.landingpage .footer-links {
        order: -1 !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 1.5rem !important;
        display: flex !important;
    }
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================================== */
body.landingpage.legal-page {
    background: #000;
    overflow-y: auto;
    scroll-snap-type: none;
}

body.landingpage.legal-page .navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

body.landingpage.legal-page .footer {
    position: relative;
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 20px;
    margin-top: 4rem;
}

/* Button style for Zurück zur Startseite link */
body.landingpage .nav-back-link a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
}

body.landingpage .nav-back-link a:hover {
    color: var(--brand-orange) !important;
    border-color: var(--brand-orange);
    text-decoration: none !important;
}

body.landingpage .page-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 6vw 60px 6vw;
    color: #fff;
    font-family: var(--font-body);
    line-height: 1.6;
}

body.landingpage .page-content-wrapper h1,
body.landingpage .page-content-wrapper h2,
body.landingpage .page-content-wrapper h3 {
    font-family: var(--font-head);
    color: var(--brand-orange);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

body.landingpage .page-content-wrapper h1 {
    font-size: 3rem;
    margin-top: 0;
}

body.landingpage .page-content-wrapper h2 {
    font-size: 2rem;
}

body.landingpage .page-content-wrapper p {
    margin-bottom: 1rem;
}

body.landingpage .page-content-wrapper a {
    color: var(--brand-green);
    text-decoration: underline;
}

body.landingpage .page-content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.landingpage .page-content-wrapper li {
    margin-bottom: 0.5rem;
}
