/* ========================================
   WAKEHOUSE - Modern Wakeboard Website
   ======================================== */

/* --- CSS Variables --- */
:root {
    --blue-deep: #0a1845;
    --blue-dark: #0d1d4a;
    --blue-mid: #233a78;
    --blue-accent: #dafc52;
    --blue-light: #e5ff7a;
    --blue-glow: #dafc52;
    --cyan: #dafc52;
    --white: #ffffff;
    --gray-100: #f0f4f8;
    --gray-200: #dce4ec;
    --gray-300: #b0bec5;
    --gray-500: #7889a8;
    --gray-700: #37474f;
    --gold: #e3d3a6;
    --lime: #dafc52;
    --lime-dark: #c2e030;
    --gradient-blue: linear-gradient(135deg, #dafc52, #e5ff7a);
    --gradient-hero: linear-gradient(180deg, rgba(10, 24, 69, 0.15) 0%, rgba(10, 24, 69, 0.6) 100%);
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(218, 252, 82, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   LENIS Smooth-Scroll — offizielle Styles
   (aus https://github.com/darkroomengineering/lenis)
   Wenn <html> die Klasse "lenis" bekommt, übernimmt Lenis.
   Ohne die Klasse greift natives Browser-Scrollen.
   ============================================ */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: clip;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Parallax performance */
.hero-video-container,
.hero-content,
.parallax-img,
.boat-image-wrapper {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--blue-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-signet {
    width: 60px;
    height: auto;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo {
    width: 180px;
    height: auto;
    opacity: 0.8;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* --- Custom Cursor --- */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: transform;
}

#cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    transform: translate(-50%, -50%);
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(218, 252, 82, 0.6);
    background: transparent;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

#cursor-ring.hover {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--lime);
}

#cursor-ring.click {
    width: 30px;
    height: 30px;
}

/* Custom-Cursor nur auf "echtem" Desktop (Maus-Input + Hover-fähig).
   Auf Touch-Geräten komplett ausblenden. */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}
@media (hover: none), (pointer: coarse), (max-width: 768px) {
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 24, 69, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 32px;
    border-bottom: 1px solid rgba(218, 252, 82, 0.1);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 1001;
}

.logo-wake {
    color: var(--white);
}

.logo-house {
    color: var(--lime);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

#navbar.scrolled .nav-logo img {
    height: 28px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-btn {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--gradient-blue);
    color: var(--blue-deep);
    border-radius: 100px;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 252, 82, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--blue-deep);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(218, 252, 82, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-video-container {
    position: absolute;
    inset: 0;
}

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

/* Fallback gradient - hidden when video plays (JS adds .video-playing) */
.hero-video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(10, 24, 69, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(35, 58, 120, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #060d28 0%, #0a1845 40%, #152960 70%, #0a1845 100%);
    z-index: 1;
    transition: opacity 1s ease;
}

.hero-video-container.video-playing::before {
    opacity: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 69, 0.2) 0%, rgba(10, 24, 69, 0.15) 40%, rgba(10, 24, 69, 0.65) 100%);
    z-index: 2;
}

.hero-waves {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.wave path {
    fill: var(--blue-deep);
}

.wave-1 {
    opacity: 0.5;
    animation: waveMove1 8s ease-in-out infinite;
}

.wave-2 {
    opacity: 0.8;
    animation: waveMove2 6s ease-in-out infinite;
}

@keyframes waveMove1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-30px); }
}

@keyframes waveMove2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    width: clamp(320px, 70vw, 700px);
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: var(--blue-accent);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* --- Stats Bar --- */
.stats-bar {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(10, 24, 69, 0.95) 0%, var(--blue-deep) 100%);
    border-top: 1px solid rgba(218, 252, 82, 0.1);
    border-bottom: 1px solid rgba(218, 252, 82, 0.08);
    position: relative;
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(218, 252, 82, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    text-shadow: 0 0 30px rgba(218, 252, 82, 0.2);
}

.stat-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* --- Section Shared --- */
section {
    padding: 120px 0;
}

/* --- Light Section Styles --- */
#touren,
#buchen,
#faq {
    background: var(--white);
    color: var(--blue-deep);
}

#touren .section-header h2,
#buchen .booking-info h2,
#faq .section-header h2 {
    color: var(--blue-deep);
}

#touren .section-header p,
#buchen .booking-info > p {
    color: var(--gray-700);
}

#touren .section-tag,
#buchen .section-tag,
#faq .section-tag {
    color: var(--lime-dark);
}

#touren .text-gradient,
#buchen .text-gradient,
#faq .text-gradient {
    background: linear-gradient(135deg, #a8c020, #c2e030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blue-accent);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 560px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.65);
}

/* --- Tour Filter --- */
.tour-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(10, 24, 69, 0.12);
    background: rgba(10, 24, 69, 0.04);
    color: var(--gray-700);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(194, 224, 48, 0.15);
    border-color: rgba(194, 224, 48, 0.4);
    color: var(--blue-deep);
}

.filter-btn.active {
    background: var(--gradient-blue);
    color: var(--blue-deep);
    border-color: transparent;
    font-weight: 600;
}

/* --- Tour Cards --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.tour-card {
    background: var(--white);
    border: 1px solid rgba(10, 24, 69, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: 0 2px 12px rgba(10, 24, 69, 0.06);
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(194, 224, 48, 0.4);
    box-shadow: 0 12px 40px rgba(10, 24, 69, 0.1);
}

.tour-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-bg {
    position: absolute;
    inset: 0;
}

.tour-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img {
    transform: scale(1.08);
}

.tour-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-card-content {
    padding: 28px;
}

.tour-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.tour-duration,
.tour-type {
    font-size: 0.8rem;
    color: #8a9ab0;
}

.tour-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--blue-deep);
}

.tour-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lime-dark);
    transition: var(--transition);
}

.tour-card-link:hover {
    gap: 12px;
    color: #a8c020;
}

.tour-card-custom {
    border: 2px dashed rgba(194, 224, 48, 0.4);
    background: rgba(218, 252, 82, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    text-align: center;
}

.tour-card-custom .tour-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(194, 224, 48, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--lime-dark);
}

/* --- Experience Section --- */
#erlebnis {
    position: relative;
    overflow: hidden;
}

.experience-parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.parallax-img,
.parallax-video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-10%);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.45) 50%,
        rgba(10, 22, 40, 0.6) 100%
    );
}

/* Hide VEO watermark in bottom-right corner */
.experience-parallax::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 60px;
    background: rgba(10, 22, 40, 0.85);
    filter: blur(12px);
    z-index: 1;
    pointer-events: none;
}

#erlebnis .container {
    position: relative;
    z-index: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.exp-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    backdrop-filter: blur(8px);
}

.exp-card:hover {
    background: rgba(218, 252, 82, 0.06);
    border-color: rgba(218, 252, 82, 0.15);
    transform: translateY(-4px);
}

.exp-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(218, 252, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-accent);
}

.exp-icon svg {
    width: 28px;
    height: 28px;
}

.exp-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.exp-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* --- Boat Section --- */
#boot {
    background: linear-gradient(180deg, var(--blue-deep) 0%, rgba(13, 33, 55, 0.5) 50%, var(--blue-deep) 100%);
}

.boat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.boat-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0066ff33, #00d4ff33);
}

.boat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boat-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(218, 252, 82, 0.15);
    border-radius: inherit;
    pointer-events: none;
}

/* Boat Collage – overlapping images */
.boat-collage {
    position: relative;
    min-height: 520px;
}

.boat-img-main {
    width: 88%;
    aspect-ratio: 4/3;
    z-index: 1;
}

.boat-img-overlap {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    aspect-ratio: 4/3;
    z-index: 2;
    border: 3px solid rgba(218, 252, 82, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, border-color 0.4s ease;
}

.boat-img-overlap:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(218, 252, 82, 0.4);
}

.boat-info .section-tag {
    margin-bottom: 12px;
}

.boat-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.boat-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

.boat-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.spec {
    text-align: center;
    padding: 24px 16px;
    background: rgba(218, 252, 82, 0.06);
    border: 1px solid rgba(218, 252, 82, 0.1);
    border-radius: var(--radius-md);
}

.spec-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-accent);
    display: block;
    line-height: 1;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 6px;
    display: block;
}

.boat-equipment h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-300);
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.equip-tag {
    padding: 8px 16px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: var(--gray-300);
}

/* --- Treffpunkt Section --- */
.treffpunkt-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--blue-deep);
}

.treffpunkt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.treffpunkt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.95);
}

.treffpunkt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 24, 69, 0.85) 0%, rgba(10, 24, 69, 0.55) 50%, rgba(10, 24, 69, 0.85) 100%);
}

.treffpunkt-section .container {
    position: relative;
    z-index: 1;
}

.treffpunkt-content {
    max-width: 640px;
    color: #fff;
}

.treffpunkt-content h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 16px 0 24px;
    line-height: 1.1;
}

.treffpunkt-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

.treffpunkt-address {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(10, 24, 69, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(218, 252, 82, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    max-width: 480px;
}

.treffpunkt-address svg {
    color: var(--lime);
    flex-shrink: 0;
}

.treffpunkt-street {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.treffpunkt-city {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .treffpunkt-section {
        padding: 80px 0;
    }
    .treffpunkt-address {
        padding: 18px 20px;
        gap: 14px;
    }
    .treffpunkt-street {
        font-size: 1.05rem;
    }
}

/* --- Gallery Marquee --- */
.gallery-marquee {
    padding: 40px 0;
    overflow: hidden;
    background: var(--blue-deep);
    border-top: none;
    border-bottom: none;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(218, 252, 82, 0.08);
    position: relative;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.6) saturate(0.95);
}

/* Bilder die bereits ab Werk abgedunkelt sind brauchen keinen extra Filter */
.marquee-item.is-pre-dark img {
    filter: none;
}

.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 69, 0.15) 0%, rgba(10, 24, 69, 0.35) 100%);
    pointer-events: none;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Gallery Section --- */
#galerie {
    background: var(--blue-deep);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.masonry-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.masonry-item.masonry-wide {
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 24, 69, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lime);
    letter-spacing: 0.02em;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(10, 24, 69, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    animation: lightboxIn 0.3s ease forwards;
}

@keyframes lightboxIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lime);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(218, 252, 82, 0.1);
    color: var(--lime);
}

/* --- Booking Section --- */
/* #buchen background set in light section styles above */

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.booking-info .section-tag {
    margin-bottom: 12px;
}

.booking-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.booking-info > p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 40px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(194, 224, 48, 0.15);
    border: 1px solid rgba(194, 224, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lime-dark);
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.step-text span {
    font-size: 0.85rem;
    color: #8a9ab0;
}

/* --- Slot Explainer --- */
.slot-explainer {
    background: linear-gradient(135deg, rgba(194, 224, 48, 0.08), rgba(194, 224, 48, 0.03));
    border: 1px solid rgba(194, 224, 48, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 32px 0;
}

.slot-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.slot-icon {
    color: var(--lime-dark);
    flex-shrink: 0;
}

.slot-header h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 2px;
}

.slot-header p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.slot-visual {
    margin-bottom: 20px;
}

.slot-blocks {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.slot-block {
    flex: 1;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.slot-block.active {
    background: var(--lime);
    color: var(--blue-deep);
    box-shadow: 0 2px 8px rgba(218, 252, 82, 0.3);
}

.slot-block.dim {
    background: rgba(10, 24, 69, 0.06);
    color: var(--gray-300);
    border: 1px dashed rgba(10, 24, 69, 0.12);
}

.slot-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}

.slot-min-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lime-dark);
    letter-spacing: 0.02em;
}

.slot-plus-label {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.slot-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(194, 224, 48, 0.12);
}

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

.slot-fact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-deep);
}

.slot-fact-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slot-fact-divider {
    width: 1px;
    height: 32px;
    background: rgba(10, 24, 69, 0.1);
}

.label-hint {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* --- Form --- */
.booking-form {
    background: var(--gray-100);
    border: 1px solid rgba(10, 24, 69, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background: var(--white);
    border: 1px solid rgba(10, 24, 69, 0.12);
    border-radius: var(--radius-sm);
    color: var(--blue-deep);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b0be;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 3px rgba(194, 224, 48, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23607d8b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--white);
    color: var(--blue-deep);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form .btn {
    margin-top: 8px;
    font-size: 1rem;
}

/* --- FAQ Section --- */
/* #faq background set in light section styles above */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(10, 24, 69, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--lime-dark);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: #8a9ab0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--lime-dark);
}

.faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Footer --- */
footer {
    position: relative;
    background: var(--blue-mid);
    padding-top: 0;
}

.footer-wave {
    position: relative;
    top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-brand > p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: rgba(218, 252, 82, 0.15);
    border-color: rgba(218, 252, 82, 0.25);
    color: var(--blue-accent);
    transform: translateY(-2px);
}

.footer-info h4,
.footer-links-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-info li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--blue-accent);
}

.footer-info li a:hover {
    color: var(--blue-accent);
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--blue-accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--blue-accent);
}

.footer-credit {
    margin: 0;
    font-size: 0.78rem;
    color: var(--gray-600, #7a8294);
    letter-spacing: 0.01em;
}
.footer-credit a {
    color: var(--gray-500, #9aa6b8);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}
.footer-credit a:hover {
    color: #c4f439;
    border-bottom-color: #c4f439;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .footer-credit { font-size: 0.75rem; }
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0);
}

/* --- Water Ripple Effect on Cards --- */
.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 224, 48, 0.08), transparent);
    transition: 0.8s ease;
    pointer-events: none;
}

.tour-card:hover::before {
    left: 100%;
}

.tour-card {
    position: relative;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .boat-layout,
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* --- Sections --- */
    section {
        padding: 60px 0;
    }

    /* --- Navigation --- */
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 24, 69, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    /* --- Hero --- */
    .hero-logo {
        width: clamp(220px, 65vw, 500px);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.3rem);
    }

    .hero-scroll {
        display: none;
    }

    /* --- Stats --- */
    .stat:not(:last-child)::after {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    /* --- Tours --- */
    .tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-card-visual {
        height: 180px;
    }

    .tour-filter {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* --- Experience --- */
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .parallax-video {
        object-position: center center;
    }

    /* Disable parallax performance hints on mobile */
    .hero-video-container,
    .hero-content,
    .parallax-img,
    .parallax-video,
    .boat-image-wrapper {
        will-change: auto;
        transform: none !important;
    }

    /* --- Boat Collage --- */
    .boat-collage {
        min-height: auto;
    }

    .boat-img-main {
        width: 100%;
    }

    .boat-img-overlap {
        position: relative;
        bottom: -20px;
        right: 0;
        width: 75%;
        margin-left: auto;
        margin-top: -40px;
    }

    .boat-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* --- Gallery Marquee --- */
    .marquee-item {
        width: 240px;
        height: 170px;
    }

    /* --- Gallery Masonry --- */
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .masonry-item {
        margin-bottom: 0;
    }

    .masonry-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(10, 24, 69, 0.6) 100%);
    }

    /* --- Lightbox Mobile --- */
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        width: 44px;
        height: 44px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-content img {
        max-width: 95vw;
        max-height: 75vh;
        border-radius: var(--radius-sm);
    }

    /* --- Booking --- */
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 1rem;
    }

    .slot-explainer {
        padding: 20px;
    }

    .slot-blocks {
        gap: 4px;
    }

    .slot-block {
        height: 34px;
        font-size: 0.7rem;
    }

    .slot-facts {
        gap: 12px;
    }

    .slot-fact-value {
        font-size: 0.95rem;
    }

    /* --- FAQ --- */
    .faq-item summary {
        padding: 20px 0;
        font-size: 1rem;
        min-height: 44px;
    }

    /* --- Footer --- */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-logo img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    /* --- Global --- */
    section {
        padding: 44px 0;
    }

    .container {
        padding: 0 16px;
    }

    #navbar {
        padding: 14px 16px;
    }

    /* --- Hero --- */
    .hero-logo {
        width: clamp(180px, 60vw, 320px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

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

    .stat-unit {
        font-size: 0.9rem;
    }

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

    /* --- Tours --- */
    .tour-card-visual {
        height: 160px;
    }

    .tour-card-content {
        padding: 20px;
    }

    /* --- Boat --- */
    .boat-img-overlap {
        width: 80%;
        margin-top: -30px;
    }

    .boat-specs {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .spec {
        padding: 14px 6px;
    }

    .spec-value {
        font-size: 1.4rem;
    }

    .boat-info h2 {
        font-size: 1.6rem;
    }

    /* --- Gallery --- */
    .marquee-item {
        width: 200px;
        height: 140px;
    }

    /* --- Booking --- */
    .booking-form {
        padding: 16px;
    }

    .slot-facts {
        flex-direction: column;
        gap: 8px;
    }

    .slot-fact-divider {
        display: none;
    }

    .slot-block {
        height: 28px;
        font-size: 0.65rem;
    }

    /* --- FAQ --- */
    .section-header h2,
    .booking-info h2 {
        font-size: 1.5rem;
    }

    /* --- Footer --- */
    .footer-logo img {
        height: 28px;
    }

    /* Mobile overrides for new sections */
    .live-widget {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 24px 16px 0;
        max-width: none;
    }
    .live-widget-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .config-grid {
        grid-template-columns: 1fr;
    }
    .configurator {
        padding: 28px 20px;
    }
    .config-grid-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .slot-hero-value {
        font-size: 4rem;
    }
    .slot-hero-control {
        gap: 16px;
    }
    .slot-hero-display {
        min-width: 0;
    }
    .stepper-btn-lg {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
    .slot-blocks-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 5px;
    }
    .config-focus {
        grid-template-columns: 1fr 1fr;
    }
    .config-result {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .story-timeline {
        padding-left: 32px;
    }
    .story-line {
        left: 16px;
    }
    .story-time {
        position: relative;
        left: auto;
        margin-bottom: 8px;
    }
    .tour-map-wrapper {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        min-width: 85%;
    }
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   NEW SECTIONS — WOW Pack
   ===================================================== */

/* --- Live Conditions Widget --- */
.live-widget {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 5;
    background: rgba(10, 24, 69, 0.55);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(218, 252, 82, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: liveWidgetIn 0.8s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes liveWidgetIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.live-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ed573;
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(46, 213, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

.live-widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 16px;
    align-items: end;
}

.live-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #fff;
}

.live-icon {
    color: var(--lime, #dafc52);
    opacity: 0.85;
    margin-bottom: 2px;
}

.live-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.live-key {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.65;
}

.live-stat-verdict {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.live-verdict-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dafc52;
    flex-shrink: 0;
}

.live-verdict {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

/* --- Tour Configurator --- */
.configurator-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--blue-deep, #0a1845) 0%, #06112e 100%);
    position: relative;
    overflow: hidden;
}

.configurator-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 252, 82, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.configurator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(218, 252, 82, 0.18);
    border-radius: var(--radius-lg, 24px);
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.config-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

/* --- Slot Hero (centerpiece) --- */
.slot-hero {
    text-align: center;
    padding: 12px 0 32px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slot-hero .config-label {
    display: block;
    margin-bottom: 24px;
}

.slot-hero-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.stepper-btn-lg {
    width: 56px;
    height: 56px;
    font-size: 2rem;
}

.slot-hero-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 240px;
}

.slot-hero-value {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    color: var(--lime, #dafc52);
    background: linear-gradient(135deg, #dafc52 0%, #7bed9f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
}

.slot-hero-value.bump {
    transform: scale(1.1);
}

.slot-hero-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 6px;
}

.slot-hero-meta-row {
    color: #fff;
    font-size: 0.95rem;
}

.slot-hero-meta-row strong {
    color: var(--lime, #dafc52);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
}

.slot-hero-meta-sub {
    font-size: 0.78rem;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Visual slot blocks (24 max) */
.slot-blocks-grid {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 6px;
    max-width: 720px;
    margin: 0 auto 24px;
}

.slot-block-cell {
    aspect-ratio: 1;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.slot-block-cell:hover {
    background: rgba(218, 252, 82, 0.15);
    transform: scale(1.15);
}

.slot-block-cell.active {
    background: var(--lime, #dafc52);
    border-color: var(--lime, #dafc52);
    box-shadow: 0 0 12px rgba(218, 252, 82, 0.4);
}

.slot-block-cell.locked {
    background: rgba(218, 252, 82, 0.25);
    border-color: rgba(218, 252, 82, 0.4);
}

.slot-block-cell.locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(10, 24, 69, 0.3) 3px, rgba(10, 24, 69, 0.3) 5px);
    border-radius: 3px;
}

.slot-hero-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.slot-hero-hint svg {
    color: var(--lime, #dafc52);
}

/* Secondary grid */
.config-grid-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.config-focus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.config-focus-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm, 12px);
    padding: 14px 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-focus-btn:hover {
    background: rgba(218, 252, 82, 0.08);
    border-color: rgba(218, 252, 82, 0.3);
    transform: translateY(-2px);
}

.config-focus-btn.active {
    background: rgba(218, 252, 82, 0.12);
    border-color: var(--lime, #dafc52);
    box-shadow: 0 0 0 2px rgba(218, 252, 82, 0.2);
}

.config-summary {
    color: #fff;
    font-size: 1.05rem;
    margin: 6px 0 4px;
}

.config-summary strong {
    color: var(--lime, #dafc52);
    font-family: var(--font-display);
    font-weight: 700;
}

.config-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.config-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime, #dafc52);
}
.config-label em {
    font-style: normal;
    opacity: 0.55;
    color: #fff;
    font-weight: 500;
    margin-left: 6px;
}

.config-tours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.config-tour {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm, 12px);
    padding: 14px 16px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: inherit;
}

.config-tour strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
}

.config-tour span {
    font-size: 0.7rem;
    opacity: 0.6;
}

.config-tour:hover {
    background: rgba(218, 252, 82, 0.08);
    border-color: rgba(218, 252, 82, 0.3);
    transform: translateY(-2px);
}

.config-tour.active {
    background: rgba(218, 252, 82, 0.12);
    border-color: var(--lime, #dafc52);
    box-shadow: 0 0 0 3px rgba(218, 252, 82, 0.15);
}

.config-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm, 12px);
    padding: 14px 18px;
}

.stepper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(218, 252, 82, 0.12);
    border: 1px solid rgba(218, 252, 82, 0.35);
    color: var(--lime, #dafc52);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.stepper-btn:hover {
    background: var(--lime, #dafc52);
    color: #0a1845;
    transform: scale(1.1);
}

.stepper-btn:active {
    transform: scale(0.95);
}

.stepper-display {
    flex: 1;
    text-align: center;
    color: #fff;
}

.stepper-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--lime, #dafc52);
}

.stepper-unit {
    display: block;
    font-size: 0.7rem;
    margin-top: 4px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.config-slot-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.config-slot-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lime, #dafc52), #7bed9f);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 16.6%;
}

.config-persons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.config-persons-row span {
    width: 14px;
    height: 18px;
    border-radius: 4px 4px 2px 2px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease, transform 0.3s ease;
}

.config-persons-row span.active {
    background: var(--lime, #dafc52);
    transform: scaleY(1.1);
}

.config-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 32px;
    background: rgba(218, 252, 82, 0.08);
    border: 1px solid rgba(218, 252, 82, 0.25);
    border-radius: var(--radius-md, 16px);
}

.config-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.config-result-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lime, #dafc52);
}

.config-result-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
}

.config-currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.85;
}

.config-price-value {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, #fff, var(--lime, #dafc52));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
}

.config-price-value.bump {
    transform: scale(1.08);
}

.config-result-hint {
    font-size: 0.72rem;
    opacity: 0.55;
    color: #fff;
}

.config-cta {
    flex-shrink: 0;
}

/* --- Story Timeline --- */
.story-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #06112e 0%, var(--blue-deep, #0a1845) 100%);
    position: relative;
}

.story-timeline {
    position: relative;
    max-width: 760px;
    margin: 60px auto 0;
    padding-left: 48px;
}

.story-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 18px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.story-line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--lime, #dafc52), #7bed9f, #ff6b81);
    transform: translateY(-100%);
    transition: transform 0.2s linear;
}

.story-step {
    position: relative;
    padding: 20px 0 40px;
}

.story-step::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(218, 252, 82, 0.2);
    border: 2px solid var(--lime, #dafc52);
    box-shadow: 0 0 0 4px rgba(10, 24, 69, 1);
    z-index: 1;
}

.story-time {
    position: absolute;
    left: -100px;
    top: 26px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lime, #dafc52);
    width: 60px;
    text-align: right;
    letter-spacing: 0.04em;
}

.story-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md, 16px);
    padding: 24px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(218, 252, 82, 0.3);
    transform: translateX(6px);
}

.story-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(218, 252, 82, 0.12);
    color: var(--lime, #dafc52);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.story-icon svg {
    width: 22px;
    height: 22px;
}

.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 8px;
}

.story-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 140px 0;
    background: var(--blue-deep, #0a1845);
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md, 16px);
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(218, 252, 82, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--lime, #dafc52);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px;
    font-style: italic;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1845;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-card footer strong {
    display: block;
    font-family: var(--font-display);
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-card footer span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.testimonials-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.testimonials-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(218, 252, 82, 0.1);
    border: 1px solid rgba(218, 252, 82, 0.3);
    color: var(--lime, #dafc52);
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    font-family: inherit;
}

.testimonials-btn:hover {
    background: var(--lime, #dafc52);
    color: #0a1845;
    transform: scale(1.08);
}

/* --- Tour Map --- */
.tour-map-wrapper {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 24px);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.tour-map-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin: 12px 0 16px;
}

.tour-map-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tour-map-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm, 12px);
    padding: 12px 16px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
}

.legend-item:hover,
.legend-item.active {
    background: rgba(218, 252, 82, 0.08);
    border-color: rgba(218, 252, 82, 0.3);
    transform: translateX(4px);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
}

.tour-map-svg-wrapper {
    background: radial-gradient(circle at center, rgba(10, 24, 69, 0.6), rgba(6, 17, 46, 0.9));
    border-radius: var(--radius-md, 16px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tour-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-route {
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: opacity 0.5s ease;
    filter: drop-shadow(0 0 6px currentColor);
}

.tour-map-svg.show-active .route-active,
.tour-map-svg.show-relax .route-relax,
.tour-map-svg.show-nature .route-nature {
    opacity: 1;
    animation: drawRoute 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawRoute {
    to { stroke-dashoffset: 0; }
}

.map-pin circle {
    transition: all 0.3s ease;
}

.map-pin:hover circle {
    r: 9;
}

.map-pin-start circle:nth-child(1) {
    animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); transform-origin: center; }
    50%      { opacity: 0.2; transform: scale(1.6); }
}

/* --- Social Section --- */
.social-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--blue-deep, #0a1845) 0%, #06112e 100%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 50px;
}

.social-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm, 12px);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.social-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-tile:hover img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(218, 252, 82, 0.7), rgba(123, 237, 159, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-overlay svg {
    width: 36px;
    height: 36px;
    color: #0a1845;
}

.social-tile:hover .social-overlay {
    opacity: 1;
}

.link-accent {
    color: var(--lime, #dafc52);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(218, 252, 82, 0.4);
    transition: opacity 0.2s;
}

.link-accent:hover {
    opacity: 0.8;
}

/* --- WhatsApp Channel CTA --- */
.whatsapp-channel-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-md, 16px);
    padding: 18px 22px;
    text-decoration: none;
    color: #fff;
    margin: 24px 0;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-channel-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.whatsapp-channel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-channel-cta:hover::before {
    transform: translateX(100%);
}

.whatsapp-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.whatsapp-channel-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.whatsapp-channel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}

.whatsapp-channel-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.whatsapp-channel-text span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.whatsapp-channel-arrow {
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s ease;
}

.whatsapp-channel-cta:hover .whatsapp-channel-arrow {
    transform: translateX(4px);
}

.social-links a.social-whatsapp:hover {
    color: #25D366;
}

/* --- Magnetic Button Effect Helper --- */
[data-magnetic] {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

/* --- Tilt Effect --- */
.tour-card,
.testimonial-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ============================================
   INSTAGRAM FOCUS PACK
   ============================================ */

.instagram-profile-card {
    max-width: 760px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 36px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.instagram-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.instagram-avatar-link {
    flex-shrink: 0;
    text-decoration: none;
}

.instagram-avatar-ring {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 32px rgba(220, 39, 67, 0.4);
    transition: transform 0.3s ease;
}

.instagram-avatar-link:hover .instagram-avatar-ring {
    transform: scale(1.05) rotate(-2deg);
}

.instagram-avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 3px solid #06112e;
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.instagram-meta {
    flex: 1;
    min-width: 0;
}

.instagram-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.instagram-handle {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.instagram-handle:hover { text-decoration: underline; }

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-follow-btn svg { width: 16px; height: 16px; }

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220, 39, 67, 0.5);
}

.instagram-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.instagram-stats strong {
    color: #fff;
    font-weight: 700;
    margin-right: 4px;
}

.instagram-bio {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Override social-grid for Instagram-style 3 columns */
.social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 760px;
    margin: 0 auto;
}

.social-tile {
    border-radius: 0;
}

.social-tile:first-child { border-radius: 4px 0 0 0; }
.social-tile:nth-child(3) { border-radius: 0 4px 0 0; }
.social-tile:nth-last-child(3) { border-radius: 0 0 0 4px; }
.social-tile:last-child { border-radius: 0 0 4px 0; }

/* Hide old lime overlay */
.social-overlay { display: none; }

.social-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/></svg>") center/40px no-repeat;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.social-tile:hover::after { opacity: 1; }

.social-tile-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.social-tile-badge svg {
    width: 22px;
    height: 22px;
}

.instagram-cta-row {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.instagram-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(220, 39, 67, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.instagram-cta-btn:hover::before { transform: translateX(100%); }

.instagram-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(220, 39, 67, 0.55);
}

.instagram-cta-btn svg { width: 22px; height: 22px; }

.instagram-cta-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    text-align: center;
}

/* Floating Instagram FAB */
.instagram-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 14px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(220, 39, 67, 0.45);
    transition: padding 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.instagram-fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.instagram-fab-icon svg {
    width: 28px;
    height: 28px;
}

.instagram-fab-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin-left 0.3s ease;
}

.instagram-fab:hover {
    padding: 14px 22px 14px 16px;
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(220, 39, 67, 0.6);
}

.instagram-fab:hover .instagram-fab-label {
    max-width: 200px;
    opacity: 1;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .instagram-profile-card {
        padding: 24px 20px;
        margin-bottom: 32px;
    }
    .instagram-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }
    .instagram-avatar-ring {
        width: 96px;
        height: 96px;
    }
    .instagram-meta-top {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 14px;
    }
    .instagram-handle { font-size: 20px; }
    .instagram-stats {
        justify-content: center;
        gap: 18px;
        font-size: 14px;
    }
    .instagram-bio {
        text-align: center;
        font-size: 13px;
    }
    .social-tile-caption { font-size: 11px; }
    .social-tile-stats { gap: 14px; font-size: 13px; }
    .social-tile-stats svg { width: 14px; height: 14px; }
    .instagram-fab {
        right: 14px;
        bottom: 14px;
        padding: 12px;
    }
    .instagram-fab-icon,
    .instagram-fab-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Configurator mobile fixes (override later desktop rules) */
    .config-grid-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .config-focus {
        grid-template-columns: 1fr 1fr;
    }
    .configurator {
        padding: 24px 16px;
    }
    .slot-blocks-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 4px;
    }

    /* Boat collage mobile safety */
    .boat-visual,
    .boat-collage {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .boat-collage img,
    .boat-image-wrapper {
        max-width: 100%;
    }
}

/* Global mobile overflow safety */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }
}

/* ============================
   Cookie Consent Banner (GA4)
   ============================ */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(15, 31, 58, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 244, 57, 0.18);
    border-radius: 18px;
    padding: 22px 24px;
    z-index: 9999;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    color: #e8edf5;
    font-family: 'Outfit', sans-serif;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.2,.9,.2,1), opacity .5s ease;
}
#cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
#cookie-banner h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #c4f439;
}
#cookie-banner p {
    font-size: 13px;
    line-height: 1.55;
    color: #b6c0d4;
    margin: 0 0 16px;
}
#cookie-banner p a {
    color: #c4f439;
    text-decoration: underline;
    text-underline-offset: 2px;
}
#cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#cookie-banner button {
    flex: 1;
    min-width: 130px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s ease;
}
#cookie-banner .btn-accept {
    background: #c4f439;
    color: #0a1628;
}
#cookie-banner .btn-accept:hover {
    background: #d6ff5c;
    transform: translateY(-1px);
}
#cookie-banner .btn-decline {
    background: transparent;
    border-color: rgba(255,255,255,0.18);
    color: #b6c0d4;
}
#cookie-banner .btn-decline:hover {
    border-color: #c4f439;
    color: #c4f439;
}
@media (max-width: 480px) {
    #cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 18px;
    }
    #cookie-banner button {
        min-width: 110px;
        font-size: 12px;
    }
}

/* ============================================
   GRAIN OVERLAY (#14) – feiner Film-Look
   ============================================ */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
    mix-blend-mode: overlay;
}
.grain-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   COLOR GRADING auf HOVER (#13)
   – Bilder werden bei Hover lebendiger
   ============================================ */
.tour-card img,
.gallery-item img,
.story-image img,
.boat-image img,
.experience-card img,
.testimonial-card img {
    filter: saturate(0.85) contrast(0.95) brightness(0.95);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tour-card:hover img,
.gallery-item:hover img,
.story-image:hover img,
.boat-image:hover img,
.experience-card:hover img,
.testimonial-card:hover img {
    filter: saturate(1.15) contrast(1.08) brightness(1.05);
}

/* ============================================
   REDUCED MOTION (#16) – respektiert OS-Einstellung
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto !important; }
    .grain-overlay { display: none; }
    #heroVideo, video { animation: none !important; }
    .marquee, .marquee-track, [class*="scroll"], [class*="marquee"] {
        animation: none !important;
        transform: none !important;
    }
    #cursor-dot, #cursor-ring, #wakeTrailCanvas { display: none !important; }
}

/* ============================================
   INSTAGRAM-RABATTSTAFFEL im Konfigurator
   ============================================ */

/* --- Großer Rabatt-Badge neben Slot-Counter --- */
.slot-hero-display { position: relative; }
.slot-discount-badge {
    position: absolute;
    top: -14px;
    right: -8px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 8px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c4f439 0%, #dafc52 100%);
    color: #0a1628;
    font-weight: 900;
    line-height: 1;
    transform: rotate(8deg) scale(0.8);
    opacity: 0;
    box-shadow:
        0 10px 24px -8px rgba(196, 244, 57, 0.55),
        0 0 0 3px rgba(10, 22, 40, 0.9),
        0 0 0 5px rgba(196, 244, 57, 0.3);
    animation: badge-pulse 2.4s ease-in-out infinite;
    z-index: 3;
}
.slot-discount-badge.is-visible {
    display: flex;
    animation: badge-appear 0.5s cubic-bezier(0.16, 1.3, 0.3, 1) forwards,
               badge-pulse 2.4s ease-in-out 0.5s infinite;
}
.slot-discount-badge-value {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.slot-discount-badge-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-top: 2px;
}
@keyframes badge-appear {
    0%   { opacity: 0; transform: rotate(8deg) scale(0.4); }
    60%  { opacity: 1; transform: rotate(8deg) scale(1.15); }
    100% { opacity: 1; transform: rotate(8deg) scale(1); }
}
@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 10px 24px -8px rgba(196, 244, 57, 0.55), 0 0 0 3px rgba(10, 22, 40, 0.9), 0 0 0 5px rgba(196, 244, 57, 0.3); }
    50%      { box-shadow: 0 14px 32px -8px rgba(196, 244, 57, 0.9), 0 0 0 3px rgba(10, 22, 40, 0.9), 0 0 0 7px rgba(196, 244, 57, 0.5); }
}

/* --- Rabatt-Bar Container --- */
.slot-discount-bar {
    margin-top: 24px;
    padding: 22px 22px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(253, 29, 29, 0.1) 0%,
        rgba(131, 58, 180, 0.12) 50%,
        rgba(64, 93, 230, 0.1) 100%),
        rgba(10, 22, 40, 0.5);
    border: 1.5px solid rgba(196, 244, 57, 0.25);
    position: relative;
}
.slot-discount-bar::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg,
        rgba(196, 244, 57, 0.5),
        rgba(131, 58, 180, 0.3),
        rgba(196, 244, 57, 0.4));
    -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.6;
}

.slot-discount-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.slot-discount-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(45deg, #fd1d1d, #833ab4, #405de6);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 18px -6px rgba(253, 29, 29, 0.6);
}
.slot-discount-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}
.slot-discount-title {
    font-size: 18px;
    font-weight: 800;
    color: #f3f6ff;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.slot-discount-subtitle {
    font-size: 12px;
    color: #9aa6b8;
    font-weight: 500;
}
.slot-discount-ig {
    font-size: 12px;
    font-weight: 700;
    color: #0a1628;
    background: #c4f439;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.slot-discount-ig:hover {
    background: #dafc52;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -6px rgba(196, 244, 57, 0.55);
}

/* --- Tier-Cards --- */
.slot-discount-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.slot-discount-tier {
    padding: 16px 12px;
    border-radius: 14px;
    background: rgba(10, 22, 40, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.slot-discount-tier .tier-label {
    font-size: 10px;
    color: #6e7a8f;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.slot-discount-tier .tier-value {
    font-size: 26px;
    font-weight: 900;
    color: #f3f6ff;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
}
.slot-discount-tier .tier-range {
    font-size: 11px;
    color: #9aa6b8;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Aktiver Tier — RICHTIG leuchten */
.slot-discount-tier.is-active {
    background: linear-gradient(135deg, #c4f439 0%, #dafc52 100%);
    border-color: #c4f439;
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 18px 40px -14px rgba(196, 244, 57, 0.7),
        0 0 0 1px rgba(196, 244, 57, 0.3),
        0 0 40px -10px rgba(196, 244, 57, 0.8);
    animation: tier-glow 2s ease-in-out infinite;
}
.slot-discount-tier.is-active .tier-label {
    color: rgba(10, 22, 40, 0.7);
}
.slot-discount-tier.is-active .tier-value {
    color: #0a1628;
    font-size: 30px;
}
.slot-discount-tier.is-active .tier-range {
    color: rgba(10, 22, 40, 0.75);
    font-weight: 700;
}
.slot-discount-tier.is-active::after {
    content: '✓ DEIN RABATT';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(10, 22, 40, 0.6);
    background: rgba(10, 22, 40, 0.12);
    padding: 2px 6px;
    border-radius: 6px;
}
@keyframes tier-glow {
    0%, 100% { box-shadow: 0 18px 40px -14px rgba(196, 244, 57, 0.7), 0 0 0 1px rgba(196, 244, 57, 0.3), 0 0 40px -10px rgba(196, 244, 57, 0.8); }
    50%      { box-shadow: 0 20px 50px -12px rgba(196, 244, 57, 0.9), 0 0 0 1px rgba(196, 244, 57, 0.5), 0 0 60px -8px rgba(196, 244, 57, 1); }
}

.slot-discount-tier.is-next { opacity: 0.5; }
.slot-discount-tier:not(.is-active):not(.is-next) { opacity: 0.75; }

/* Nächster-Rabatt-Hinweis */
.slot-discount-next {
    display: none;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(196, 244, 57, 0.08);
    border: 1px dashed rgba(196, 244, 57, 0.35);
    color: #dafc52;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
    gap: 8px;
    animation: next-tip-pulse 2.2s ease-in-out infinite;
}
.slot-discount-next.is-visible { display: flex; }
.slot-discount-next.is-maxed {
    background: linear-gradient(90deg, rgba(196, 244, 57, 0.2), rgba(196, 244, 57, 0.08));
    border: 1px solid rgba(196, 244, 57, 0.6);
    color: #c4f439;
    animation: none;
}
.slot-discount-next strong { color: #c4f439; font-weight: 800; }
.slot-discount-next svg { flex-shrink: 0; }
@keyframes next-tip-pulse {
    0%, 100% { opacity: 0.9; }
    50%      { opacity: 1; }
}

@media (max-width: 520px) {
    .slot-discount-tiers {
        grid-template-columns: 1fr;
    }
    .slot-discount-tier {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 14px 16px;
        gap: 14px;
    }
    .slot-discount-tier .tier-value {
        order: -1;
        font-size: 22px !important;
        min-width: 60px;
        text-align: center;
    }
    .slot-discount-tier .tier-label {
        order: 0;
        font-size: 11px;
    }
    .slot-discount-tier .tier-range {
        order: 1;
        margin-left: auto;
        text-align: right;
        font-size: 11px;
    }
    /* Auf Mobile den "DEIN RABATT"-Stempel weglassen — aktive Karte leuchtet schon genug */
    .slot-discount-tier.is-active::after { display: none; }
    .slot-discount-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .slot-discount-ig { align-self: stretch; text-align: center; }
    .slot-discount-badge {
        top: -10px;
        right: -4px;
        min-width: 58px;
        padding: 6px 10px;
    }
    .slot-discount-badge-value { font-size: 18px; }
    .slot-discount-badge-label { font-size: 9px; }
}

/* ============================================
   EQUIPMENT-LEIHE Toggle
   ============================================ */
.config-equipment {
    margin-top: 20px;
}
.config-equipment-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}
.config-equipment-toggle:hover {
    border-color: rgba(196, 244, 57, 0.35);
    background: rgba(10, 22, 40, 0.7);
}
.config-equipment-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.config-equipment-check {
    width: 22px; height: 22px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: transparent;
}
.config-equipment-check::after {
    content: '';
    width: 6px; height: 11px;
    border: solid #0a1628;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    margin-bottom: 2px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.config-equipment-toggle input:checked + .config-equipment-check {
    background: #c4f439;
    border-color: #c4f439;
}
.config-equipment-toggle input:checked + .config-equipment-check::after {
    transform: rotate(45deg) scale(1);
}
.config-equipment-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.config-equipment-title {
    font-size: 14px;
    font-weight: 600;
    color: #f3f6ff;
}
.config-equipment-meta {
    font-size: 12px;
    color: #9aa6b8;
    font-variant-numeric: tabular-nums;
}
.config-equipment-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.config-equipment-hint {
    margin: 8px 4px 0;
    font-size: 11px;
    color: #6e7a8f;
    font-style: italic;
}

/* Summary-Extras für Discount + Equipment */
.config-summary-discount {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c4f439 0%, #dafc52 100%);
    color: #0a1628 !important;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px -4px rgba(196, 244, 57, 0.5);
}
.config-summary-equipment {
    color: #dafc52;
    font-weight: 600;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   VERBUNDENE UNTERNEHMEN / Partner Section
   ============================================ */
.partners-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0a1628 0%, #0d1a32 100%);
    position: relative;
    overflow: hidden;
}
.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 244, 57, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 93, 230, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.partners-section .container { position: relative; z-index: 1; }
.partners-section .section-header { margin-bottom: 56px; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .partners-grid { grid-template-columns: 1fr; gap: 18px; }
}

.partner-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 244, 57, 0.08), rgba(196, 244, 57, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 244, 57, 0.35);
    box-shadow: 0 20px 48px -18px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(196, 244, 57, 0.08) inset;
}
.partner-card:hover::before { opacity: 1; }

.partner-card-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(196, 244, 57, 0.15), rgba(196, 244, 57, 0.04));
    border: 1px solid rgba(196, 244, 57, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4f439;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.partner-card:hover .partner-card-logo {
    background: linear-gradient(135deg, rgba(196, 244, 57, 0.28), rgba(196, 244, 57, 0.08));
    transform: rotate(-4deg);
}

.partner-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.partner-card-name {
    font-size: 22px;
    font-weight: 800;
    color: #f3f6ff;
    letter-spacing: -0.01em;
}
.partner-card-tag {
    font-size: 13px;
    color: #c4f439;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
}
.partner-card-desc {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #9aa6b8;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #dafc52;
    letter-spacing: 0.01em;
    transition: gap 0.3s ease;
}
.partner-card:hover .partner-card-link { gap: 10px; }
.partner-card-link svg {
    transition: transform 0.3s ease;
}
.partner-card:hover .partner-card-link svg {
    transform: translate(2px, -2px);
}

@media (max-width: 900px) {
    .partners-section { padding: 70px 0 50px; }
    .partner-card { padding: 26px 22px; }
    .partner-card-name { font-size: 20px; }
}


