/* ============================================================
   SLAVYANKA OSTER-GEWINNSPIEL 2026
   1:1 Ferrero snacknstyle.de Hierarchy — Slavyanka Branding
   ============================================================ */

@import url('/fonts/fonts.css');

/* ─── DESIGN TOKENS ─── */
:root {
    /* Poster-accurate palette */
    --green-900: #1B3D1A;
    --green-800: #2D5A27;
    --green-700: #3A7D32;
    --green-600: #4CAF50;
    --gold: #D4A843;
    --gold-hover: #E8C054;
    --gold-dark: #B8912E;
    --red: #C0392B;
    --red-light: #E74C3C;
    --white: #FFFFFF;
    --cream: #F5EFE0;
    --cream-dark: #EDE4D0;
    --beige: #E8DFC9;
    --sky-light: #B8D4E8;
    --sky-mid: #8BB8D4;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #868E96;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-card: 24px;
    --radius: 12px;
    --radius-pill: 50px;
    --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-float: 0 12px 32px rgba(0,0,0,0.25);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
}
::selection {
    background: var(--green-800);
    color: white;
}
::-moz-selection {
    background: var(--green-800);
    color: white;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
/* Accessible focus ring — only on keyboard nav */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
:focus:not(:focus-visible) {
    outline: none;
}


/* ═══════════════════════════════════════════════════
   1. NAVIGATION (Ferrero-style fixed top)
   ═══════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(27, 61, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.nav__logo { height: 42px; width: auto; }
.nav__links {
    display: flex;
    gap: 32px;
}
.nav__links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
/* Nav inline ticker */
.nav__ticker {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    background: var(--gold);
    border-radius: var(--radius-pill);
    padding: 8px 0;
    margin: 0 12px;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.nav__ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    animation: ticker-scroll 18s linear infinite;
}
.nav__ticker-track span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--green-900);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nav__ticker-dot {
    opacity: 0.35;
    font-size: 0.6rem;
}

/* Mobile nav */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
    .nav__ticker { margin: 0 8px; padding: 6px 0; }
}

/* ═══════════════════════════════════════════════════
   MOBILE MENU OVERLAY (Ferrero-style fullscreen)
   ═══════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(175deg, var(--green-900) 0%, #162a15 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.mobile-menu__close:hover {
    background: rgba(255,255,255,0.1);
}
.mobile-menu__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.mobile-menu__logo {
    height: 100px;
    opacity: 0.9;
}
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}
.mobile-menu__link:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}
.mobile-menu__cta {
    display: inline-block;
    background: var(--gold);
    color: var(--green-900);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 16px 48px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    margin-top: 16px;
    box-shadow: 0 4px 20px rgba(212,168,67,0.4);
    transition: all 0.3s;
}
.mobile-menu__cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}

/* Hamburger animation when menu open */
.nav__hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════
   2. HERO — Poster als Full-Screen Hintergrund
   ═══════════════════════════════════════════════════ */
.hero {
    background: url('images/hero-bg-new.jpg') center 90% / cover no-repeat;
    background-color: #4A6741; /* fallback while loading */
    min-height: 90vh;
    min-height: 90svh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* nav height */
}
/* Desktop: landscape hero image */
@media (min-width: 768px) {
    .hero {
        background-image: url('images/hero-bg-desktop.jpg');
        background-position: center 80%;
    }
}
/* Subtle darkening at top for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,248,230,0.55) 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
/* Subtle darkening at bottom for CTA readability */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Top overlay: Logo + Banner ── */
.hero__top {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 24px 0;
}
.hero__logo {
    height: clamp(160px, 42vw, 260px) !important;
    width: auto !important;
    max-width: none !important;
    margin-bottom: -70px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ── Banner komplett (pre-rendered poster ribbon) ── */
.hero__banner-complete {
    max-width: 600px;
    width: 95%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

/* ── Hero prize badge overlays ── */
.hero__badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: 5;
}
@media (min-width: 768px) {
    .hero__badges { display: none; }
}
.hero__badge {
    position: absolute;
    height: auto;
    max-width: none !important;
    filter: drop-shadow(0 3px 10px rgba(180, 0, 0, 0.5));
}
.hero__badge--left {
    width: clamp(30px, 9vw, 55px);
    left: 2%;
    bottom: 38%;
}
.hero__badge--center {
    width: clamp(55px, 16vw, 100px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 18%;
}
.hero__badge--right {
    width: clamp(38px, 11vw, 70px);
    right: 8%;
    bottom: 28%;
}
.hero__badge-label {
    position: absolute;
    width: clamp(80px, 24vw, 140px);
    height: auto;
    max-width: none !important;
    left: 0%;
    bottom: 26%;
    filter: drop-shadow(0 2px 6px rgba(180, 0, 0, 0.4));
    --badge-rotate: -8deg;
}
.hero__badge--blender {
    width: clamp(28px, 8vw, 50px);
    left: 22%;
    bottom: 34%;
}
.hero__badge--waage {
    display: none;
}

/* Bounce-pop animation for hero badges */
@keyframes hero-badge-pop {
    0%   { opacity: 0; transform: scale(0) translateY(30px) rotate(var(--badge-rotate, 0deg)); }
    50%  { opacity: 1; transform: scale(1.25) translateY(-6px) rotate(var(--badge-rotate, 0deg)); }
    70%  { transform: scale(0.9) translateY(3px) rotate(var(--badge-rotate, 0deg)); }
    85%  { transform: scale(1.08) translateY(-2px) rotate(var(--badge-rotate, 0deg)); }
    100% { opacity: 1; transform: scale(1) translateY(0) rotate(var(--badge-rotate, 0deg)); }
}
.hero__badge--pop {
    opacity: 0;
    animation: hero-badge-pop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* ═══════════════════════════════════════════════════
   BANNER STRIP (between hero and content)
   ═══════════════════════════════════════════════════ */
.banner-strip {
    background: var(--cream);
    padding: 0 24px;
    margin-top: -20px; /* slight overlap with hero for smooth transition */
    position: relative;
    z-index: 3;
}
.banner-strip__link {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.banner-strip__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.banner-strip__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full-width banner variant (above footer) */
.banner-strip--fullwidth {
    padding: 0;
    margin: 0;
    margin-bottom: 0;
    background: none;
    position: relative;
    z-index: 4;
    /* Break out of any parent padding */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.banner-strip--fullwidth .banner-strip__link {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
    overflow: hidden;
}
.banner-strip--fullwidth .banner-strip__img {
    border-radius: 0;
    width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════
   SCROLLING TICKER BANNER
   ═══════════════════════════════════════════════════ */
.ticker {
    background: var(--gold);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    padding: 10px 0;
}
.ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: ticker-scroll 20s linear infinite;
}
.ticker__item {
    font-family: var(--font-heading);
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 800;
    color: var(--green-900);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ticker__dot {
    color: var(--green-900);
    opacity: 0.4;
    font-size: 1.2rem;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.btn-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--green-900);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    padding: 16px 42px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(212,168,67,0.4);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,168,67,0.5);
}
.btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(212,168,67,0.35);
}

/* ── Mobile hero layout ── */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background-position: center center;
    }
    .hero { padding-top: 50px; }
    .hero__top { padding-top: 0; }
    .hero__logo { height: clamp(160px, 42vw, 220px) !important; margin-bottom: -100px; }
    .hero__banner-complete { max-width: 92%; }
    .btn-cta { font-size: 0.95rem; padding: 14px 36px; }
}

/* ── Desktop: wider hero ── */
@media (min-width: 1200px) {
    .hero {
        min-height: 90vh;
        background-size: cover;
        background-position: center 20%;
    }
    .hero__logo { height: 110px; }
    .hero__title { font-size: 3.2rem; }
    .hero__bottom { padding: 0 64px 48px; }
}


/* ═══════════════════════════════════════════════════
   CONTENT CARDS (Ferrero white-card-on-colored-bg pattern)
   ═══════════════════════════════════════════════════ */
.content-section {
    padding: 0 24px;
    margin-top: -2px;
    position: relative;
}
.content-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 64px 48px;
    max-width: 1000px;
    margin: 0 auto 0;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .content-section { padding: 0 16px; }
    .content-card { padding: 40px 10px; border-radius: 20px; overflow-x: hidden; }
}


/* ═══════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-eyebrow {
    display: inline-block;
    background: rgba(45, 90, 39, 0.08);
    color: var(--green-700);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}
.section-divider {
    width: 48px; height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 3px;
}


/* ═══════════════════════════════════════════════════
   PRIZE BADGES — Animated quantity indicators
   ═══════════════════════════════════════════════════ */
.prize-badges {
    background: var(--green-900);
    padding: 48px 20px 40px;
    text-align: center;
}
.prize-badges__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.prize-badges__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
    max-width: 520px;
    margin: 0 auto;
    align-items: start;
}
@media (max-width: 480px) {
    .prize-badges__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }
    .prize-badges__grid > :last-child {
        grid-column: 1 / -1;
        max-width: 200px;
        justify-self: center;
    }
}
.prize-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.prize-badge__quantity {
    width: clamp(28px, 7vw, 42px);
    height: auto;
    max-width: none !important;
    filter: drop-shadow(0 4px 12px rgba(200,0,0,0.3));
}
.prize-badge__product {
    width: auto;
    height: clamp(90px, 24vw, 140px);
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
    margin: 4px 0;
}
/* Hauptgewinne größer hervorheben */
.prize-badge:nth-child(1) .prize-badge__product,
.prize-badge:nth-child(2) .prize-badge__product {
    height: clamp(110px, 30vw, 170px);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.prize-badge:nth-child(1) .prize-badge__quantity,
.prize-badge:nth-child(2) .prize-badge__quantity {
    width: clamp(34px, 9vw, 50px);
}
.prize-badge__probierboxen {
    width: 100%;
    max-width: clamp(100px, 26vw, 150px);
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(200,0,0,0.3));
    margin-top: 2px;
}
.prize-badge__name {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2.5vw, 0.92rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}
.prize-badge__desc {
    font-size: clamp(0.58rem, 1.8vw, 0.72rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
    text-align: center;
    max-width: 140px;
}
.prize-badge__value {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* ── Bounce-pop animation ── */
@keyframes badge-pop {
    0%   { opacity: 0; transform: scale(0) translateY(40px); }
    50%  { opacity: 1; transform: scale(1.2) translateY(-8px); }
    70%  { transform: scale(0.9) translateY(4px); }
    85%  { transform: scale(1.05) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.prize-badge--pop {
    opacity: 0;
    animation: badge-pop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}


/* ═══════════════════════════════════════════════════
   3. SO GEHT'S — Ferrero-style vertical steps
   ═══════════════════════════════════════════════════ */
.steps {
    background: var(--green-900);
    padding: 60px 24px 48px;
    color: var(--white);
}
.steps__header {
    text-align: center;
    margin-bottom: 48px;
}
.steps__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.steps__timeline {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}
/* Vertical connector line */
.steps__timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

/* ── Individual step row ── */
.step-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}
.step-row:last-child { margin-bottom: 0; }

.step-row__number {
    font-size: clamp(3rem, 10vw, 4.5rem);
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    min-width: 70px;
    text-align: center;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}
.step-row__content {
    flex: 1;
    text-align: center;
}
.step-row__circle {
    width: clamp(140px, 35vw, 200px);
    height: clamp(140px, 35vw, 200px);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 3px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.step-row__emoji {
    font-size: clamp(3rem, 10vw, 4.5rem);
    line-height: 1;
}
.step-row__title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.step-row__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.step-row__link {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}
.step-row__link:hover {
    color: var(--gold-hover);
}
.steps__footnote {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .steps__timeline::before { left: 30px; }
    .step-row__number { min-width: 60px; }
}

/* ── Step 3: Prize images in circle ── */
.step-row__circle--prizes {
    position: relative;
    overflow: hidden;
}
.step-row__prize {
    position: absolute;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    max-width: none !important;
}
.step-row__prize--main {
    width: 65%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.step-row__prize--side {
    width: 45%;
    height: auto;
    right: -5%;
    bottom: 5%;
    z-index: 1;
}
.step-row__prize--left {
    width: 40%;
    height: auto;
    left: -2%;
    bottom: 8%;
    z-index: 1;
}

/* ── Step 2: Phone + Kassenbon image ── */
.step-row__circle--scan {
    overflow: hidden;
}
.step-row__scan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    max-width: none !important;
}

/* ── Step 1: Centered logo in circle ── */
.step-row__circle--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;
}
.step-row__logo-img {
    width: 90%;
    height: auto;
    max-width: none !important;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
}

/* ── Step 1: Product images in circle ── */
.step-row__circle--products {
    position: relative;
    overflow: hidden;
}
.step-row__product {
    position: absolute;
    max-width: none !important;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.35));
    border-radius: 8px;
}
.step-row__product--topleft {
    width: 55%;
    height: auto;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.step-row__product--center {
    width: 40%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.step-row__product--bottomright {
    width: 50%;
    height: auto;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ── Teilnahme-Details (Ferrero-style) ── */
.steps__details {
    max-width: 520px;
    margin: 48px auto 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
}
.steps__details-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.steps__details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.steps__detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.steps__detail-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.steps__detail-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
}
.steps__details-legal {
    margin-top: 16px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   4. FORM (Ferrero style — white card on green)
   ═══════════════════════════════════════════════════ */
.form-section {
    background: var(--cream);
    padding: 60px 24px 0;
    position: relative;
}
/* Section header */
.form-section .section-eyebrow {
    background: rgba(45, 90, 39, 0.08);
    color: var(--green-800);
}
.form-section .section-title {
    color: var(--gray-900);
}

.form-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 48px 44px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}
.form-card__header {
    text-align: center;
    margin-bottom: 36px;
}
.form-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.form-card__subtitle {
    color: var(--gray-500);
    font-size: 0.88rem;
}

.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-label .req { color: var(--red); }
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    background: var(--white);
}
.form-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}
.form-input:hover {
    border-color: var(--gray-400);
}
.form-input:focus {
    outline: none;
    border-color: var(--green-800);
    box-shadow: 0 0 0 3px rgba(45,90,39,0.08);
    background: #fafdf9;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-error {
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 600;
    margin-top: 4px;
    display: none;
}
.form-error.visible { display: block; }
.form-error--global {
    background: var(--red);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 12px;
}

/* Upload zone */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
    background: var(--gray-100);
}
.upload-zone:hover {
    border-color: var(--gray-400);
    background: var(--gray-200);
}
.upload-zone.dragover {
    border-color: var(--green-800);
    background: rgba(45,90,39,0.04);
}
.upload-zone__icon {
    color: var(--gray-500);
    margin-bottom: 12px;
}
.upload-zone__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 4px;
}
.upload-zone__hint {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.upload-preview {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-top: 12px;
}
.upload-preview.visible { display: flex; }
.upload-preview__name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green-800);
}
.upload-preview__remove {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

/* Camera */
.btn-camera {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 12px auto 0;
    padding: 24px 20px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-700);
    transition: all var(--transition);
}
.btn-camera:hover { background: var(--gray-200); }

/* Checkboxes */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.84rem;
    color: var(--gray-700);
}
.form-checkbox input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 2px;
    accent-color: var(--green-800);
    flex-shrink: 0;
}
.form-checkbox a {
    color: var(--green-700);
    font-weight: 600;
    text-decoration: underline;
}

/* Submit */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--green-900);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-top: 24px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(212,168,67,0.3);
}
.btn-submit:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(212,168,67,0.4);
}
.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212,168,67,0.3);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--gray-500);
    font-size: 0.76rem;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success__icon {
    width: 72px; height: 72px;
    background: var(--green-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success__icon svg {
    width: 36px; height: 36px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-500); max-width: 400px; margin: 0 auto; }

@media (max-width: 640px) {
    .form-card { padding: 32px 20px; border-radius: 20px; }
    .form-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   5. PRODUKTE (white card grid)
   ═══════════════════════════════════════════════════ */
.products {
    background: var(--cream);
    padding: 60px 24px 0;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}
.product-item {
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), background 0.3s ease;
}
.product-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}
.product-item__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
}
.product-item__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}


/* ═══════════════════════════════════════════════════
   6. FAQ (white card accordion)
   ═══════════════════════════════════════════════════ */
.faq {
    background: var(--cream);
    padding: 60px 24px 0;
}
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: background 0.2s ease;
}
.faq-item.open {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: left;
    transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(0,0,0,0.03); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-400);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--green-700);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer__inner {
    padding: 0 22px 20px;
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.faq-answer__inner a {
    color: var(--green-700);
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════
   7. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--green-900);
    padding: 48px 24px;
    border-top: 4px solid var(--gold);
    text-align: center;
    margin-top: 0;
}

/* CTA Banner — standalone, edge-to-edge, before footer */
.cta-banner {
    background: var(--cream);
    margin: 0;
    padding: 40px 0 0 0;
    line-height: 0;
}
.cta-banner a {
    display: block;
    line-height: 0;
}
.cta-banner img {
    width: 100%;
    height: auto;
    display: block;
}
.footer__logo {
    height: 60px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* Social Sharing */
.footer__social {
    margin-bottom: 24px;
}
.footer__social-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer__social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer__social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}
.footer__social-icon:hover {
    background: var(--gold);
    color: var(--green-900);
    transform: translateY(-2px);
}
.footer__social-icon svg {
    width: 22px;
    height: 22px;
}

.footer__divider {
    width: 80px; height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 24px;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.footer__links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 600;
    transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.85); }
.footer__links--secondary {
    margin-bottom: 20px;
}
.footer__links--secondary a {
    font-weight: 500;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}
.footer__copy {
    color: rgba(255,255,255,0.28);
    font-size: 0.72rem;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(27,61,26,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.92rem;
}
@media (max-width: 768px) {
    .mobile-cta { display: block; }
    .footer { padding-bottom: 80px; }
}


/* ═══════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: #1a1a1a;
    padding: 20px 24px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    display: none;
}
.cookie-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner__text strong {
    color: white;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}
.cookie-banner__text p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}
.cookie-banner__text p a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner__btn {
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 20px;
    border-radius: var(--radius);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.cookie-banner__btn--accept {
    background: var(--green-800);
    color: white;
}
.cookie-banner__btn--accept:hover {
    background: var(--green-700);
}
.cookie-banner__btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}
.cookie-banner__btn--reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
}
@media (max-width: 640px) {
    .cookie-banner__inner { flex-direction: column; text-align: center; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { flex: 1; }
}


/* ═══════════════════════════════════════════════════
   CONFETTI CANVAS
   ═══════════════════════════════════════════════════ */
#confettiCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
}


/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}