/* ═══════════════════════════════════════════════════════════
   SEASONAL CAMPAIGN: EASTER 2026
   ───────────────────────────────────────────────────────────
   Imperial Easter · Editorial Luxury Standard
   Inspired by Ferrero, Kinder, Milka sweepstakes pages
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   1. HERO HEADER — Immersive, Deep, Alive
   ══════════════════════════════════════════ */
.hero-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(155deg,
            rgba(15, 10, 46, 0.82) 0%,
            rgba(27, 20, 100, 0.72) 20%,
            rgba(45, 27, 105, 0.68) 45%,
            rgba(27, 20, 100, 0.72) 55%,
            rgba(21, 15, 80, 0.78) 75%,
            rgba(15, 10, 46, 0.85) 100%),
        url('../../../assets/img/header-pattern.jpg') center / cover no-repeat;
    color: var(--text-inverse);
}

/* Animated gradient shimmer layer */
.hero-header::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 40% 50% at 30% 30%, rgba(201, 169, 98, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255, 180, 130, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 60% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(15, 10, 46, 0.6) 0%, transparent 50%);
    z-index: 1;
    animation: heroShimmer 12s ease-in-out infinite alternate;
}

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

    33% {
        transform: translate(3%, -2%) scale(1.02);
    }

    66% {
        transform: translate(-2%, 3%) scale(1.01);
    }

    100% {
        transform: translate(1%, -1%) scale(1.03);
    }
}

/* Subtle grain texture */
.hero-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

/* Particle canvas layer */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Vignette edges — heavy 3D depth effect */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        /* Strong radial vignette — dark edges, clear center */
        radial-gradient(ellipse 70% 60% at 50% 50%, transparent 20%, rgba(15, 10, 46, 0.45) 60%, rgba(10, 6, 30, 0.88) 100%),
        /* Top edge shadow */
        linear-gradient(180deg, rgba(10, 6, 30, 0.7) 0%, transparent 30%),
        /* Bottom edge shadow */
        linear-gradient(0deg, rgba(10, 6, 30, 0.75) 0%, transparent 35%),
        /* Left edge shadow */
        linear-gradient(90deg, rgba(10, 6, 30, 0.55) 0%, transparent 25%),
        /* Right edge shadow */
        linear-gradient(270deg, rgba(10, 6, 30, 0.55) 0%, transparent 25%);
}

/* Floating decorative elements */
.hero-floaters {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-float {
    position: absolute;
    opacity: 0;
    animation: heroFloat 16s ease-in-out infinite;
}

.hero-float--1 {
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-float--2 {
    bottom: 20%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.hero-float--3 {
    top: 40%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 6s;
    animation-duration: 12s;
}

.hero-float--4 {
    top: 60%;
    left: 12%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 9s;
    animation-duration: 20s;
}

@keyframes heroFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}


/* ── Hero Inner Layout ──── */
.hero-header__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(80px, 14vw, 140px) clamp(32px, 8vw, 48px);
    padding-top: calc(clamp(80px, 14vw, 140px) + env(safe-area-inset-top, 0px));
    padding-left: calc(clamp(32px, 8vw, 48px) + env(safe-area-inset-left, 0px));
    padding-right: calc(clamp(32px, 8vw, 48px) + env(safe-area-inset-right, 0px));
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-header__logo {
    width: clamp(120px, 18vw, 160px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    transition: transform 800ms var(--ease-spring);
    margin-bottom: var(--space-md);
    animation: logoEntrance 1.2s var(--ease-out) 0.2s both;
}

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

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

.hero-header__logo:hover {
    transform: scale(1.06) rotate(-2deg);
}

.hero-header__content {
    animation: contentEntrance 1s var(--ease-out) 0.5s both;
}

@keyframes contentEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ── Stage Badge ──── */
.stage-badge {
    display: inline-block;
    border: 0.5px solid rgba(201, 169, 98, 0.35);
    padding: 10px 28px;
    color: var(--brand-gold-light);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(8px);
    background: rgba(201, 169, 98, 0.06);
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on badge */
.stage-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.15) 50%, transparent 100%);
    animation: shimmerSweep 4s ease-in-out infinite;
}

@keyframes shimmerSweep {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* ── Hero Title ──── */
.hero-header__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 0.92;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.hero-header__title em {
    font-weight: 400;
    font-style: italic;
    display: block;
    font-size: 0.6em;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--brand-gold-light) 0%, #E8D5A0 40%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 98, 0.3));
}

.hero-header__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 440px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin: 0 auto var(--space-sm);
    padding: 0 8px;
}

/* ── Hero Value Props ──── */
.hero-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
    animation: contentEntrance 1s var(--ease-out) 0.8s both;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

.hero-benefit__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    opacity: 0.7;
}

.hero-benefit__sep {
    width: 3px;
    height: 3px;
    background: rgba(201, 169, 98, 0.3);
    border-radius: 50%;
}

/* ── Hero CTA ──── */
.hero-header__cta {
    background: #fff;
    color: var(--brand-indigo) !important;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-top: var(--space-lg);
    animation: ctaEntrance 0.8s var(--ease-spring) 1s both;
    position: relative;
}

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

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

.hero-header__cta:hover {
    background: var(--brand-gold-light) !important;
    color: var(--brand-indigo) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(27, 20, 100, 0.3);
}

/* ── Countdown ──── */
.countdown {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.12);
    animation: contentEntrance 1s var(--ease-out) 0.7s both;
}

.countdown__unit {
    text-align: center;
    min-width: 48px;
}

.countdown__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1;
    font-weight: 300;
}

.countdown__label {
    display: block;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 8px;
    font-weight: 600;
}

.countdown__separator {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brand-gold);
    margin-top: -12px;
    opacity: 0.4;
    animation: colonPulse 1s ease-in-out infinite;
}

@keyframes colonPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.1;
    }
}

/* ── Scroll Hint ──── */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollHintBounce 2s ease-in-out infinite 3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes scrollHintBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.6;
    }
}

.hero-scroll-hint__line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.4) 0%, transparent 100%);
}

.hero-scroll-hint__text {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}


/* ══════════════════════════════════════════
   2. URGENCY STRIP (NEW — Marketing)
   ══════════════════════════════════════════ */
.urgency-strip {
    background: var(--bg-deep);
    color: var(--text-inverse);
    padding: 14px clamp(20px, 5vw, 40px);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.urgency-strip__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.urgency-item__icon {
    color: var(--brand-gold);
    font-size: 0.85rem;
}

.urgency-item__highlight {
    color: var(--brand-gold-light);
}

.urgency-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}


/* ══════════════════════════════════════════
   3. PRIZES
   ══════════════════════════════════════════ */
.hero-prize {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-white);
    border: 0.5px solid var(--border-hairline);
    position: relative;
}

.hero-prize__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 24px;
    margin-bottom: 8px;
}

.hero-prize::before,
.hero-prize::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 0.5px solid var(--brand-gold-muted);
}

.hero-prize::before {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}

.hero-prize::after {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

.hero-prize .display-title {
    color: var(--brand-indigo);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.prize-value {
    color: var(--brand-gold);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: var(--space-sm);
}

/* Value anchoring highlight */
.prize-value strong {
    font-size: 1.1em;
    color: var(--brand-gold);
}

.prize-desc {
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
    font-size: 0.9rem;
}

.prize-icon {
    margin: var(--space-lg) 0;
    color: var(--brand-gold);
    opacity: 0.12;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--space-xl);
}

.prize-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border: 0.5px solid var(--border-hairline);
    background: var(--bg-white);
    transition: all 500ms var(--ease-out);
    position: relative;
    cursor: default;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 500ms var(--ease-out);
}

.prize-card:hover::before {
    width: 40px;
}

.prize-card:hover {
    background: var(--bg-warm);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.prize-qty {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--brand-gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.prize-name {
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.prize-card__value {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.prize-total {
    text-align: center;
    padding: 24px;
    margin-top: 48px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.prize-total strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brand-gold);
    font-weight: 300;
    margin-top: 8px;
}


/* ══════════════════════════════════════════
   3b. GEWINNE — Premium Image-Rich Prizes
   Editorial Luxury · Phase 7 Standard
   ══════════════════════════════════════════ */

/* ── HAUPTGEWINN — Thermomix Hero Card ──── */
.gewinne-hero {
    position: relative;
    background: var(--bg-white);
    border: 0.5px solid var(--border-hairline);
    overflow: hidden;
    transition: box-shadow 600ms var(--ease-out);
}

.gewinne-hero:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

/* Architectural corner ornaments */
.gewinne-hero::before,
.gewinne-hero::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 0.5px solid var(--brand-gold-muted);
    z-index: 2;
    pointer-events: none;
}

.gewinne-hero::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.gewinne-hero::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Badge */
.gewinne-hero__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 28px;
}

.gewinne-hero__badge-icon {
    font-size: 0.9rem;
}

/* Split layout: Image left, Content right */
.gewinne-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.gewinne-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    overflow: hidden;
    position: relative;
}

/* Subtle shimmer on image background */
.gewinne-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(201, 169, 98, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gewinne-hero__image img {
    max-width: 85%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.08));
    transition: transform 800ms var(--ease-out);
}

.gewinne-hero:hover .gewinne-hero__image img {
    transform: scale(1.04) translateY(-4px);
}

.gewinne-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-xl);
}

.gewinne-hero__qty {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--brand-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.gewinne-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.gewinne-hero__title em {
    font-weight: 400;
    font-style: italic;
    color: var(--brand-indigo);
}

.gewinne-hero__divider {
    width: 40px;
    height: 0.5px;
    background: var(--brand-gold);
    margin-bottom: var(--space-sm);
}

.gewinne-hero__value {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: var(--space-sm);
}

.gewinne-hero__desc {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 380px;
}


/* ── SECONDARY PRIZE GRID (3-Column) ──── */
.gewinne-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gewinne-card {
    background: var(--bg-white);
    border: 0.5px solid var(--border-hairline);
    text-align: center;
    transition: all 600ms var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gold hover accent line at top */
.gewinne-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    transition: width 600ms var(--ease-out);
}

.gewinne-card:hover::before {
    width: 60%;
}

.gewinne-card:hover {
    background: var(--bg-warm);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.gewinne-card__img-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    overflow: hidden;
}

.gewinne-card__img-wrap img {
    max-width: 80%;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.06));
    transition: transform 600ms var(--ease-out);
}

.gewinne-card:hover .gewinne-card__img-wrap img {
    transform: scale(1.06) translateY(-4px);
}

.gewinne-card__body {
    padding: 0 var(--space-md) var(--space-lg);
}

.gewinne-card__qty {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 300;
    color: var(--brand-gold);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.gewinne-card__name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gewinne-card__value {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.03em;
}


/* ── GENUSSBOX — Special Wide Card ──── */
.gewinne-genussbox {
    margin-top: var(--space-xl);
    background: var(--bg-white);
    border: 0.5px solid var(--border-hairline);
    position: relative;
    overflow: hidden;
    transition: box-shadow 600ms var(--ease-out);
}

.gewinne-genussbox:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.05);
}

/* Subtle gold shimmer on left edge */
.gewinne-genussbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, var(--brand-gold) 40%, var(--brand-gold) 60%, transparent 90%);
    opacity: 0.4;
}

.gewinne-genussbox__label {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-indigo);
    color: var(--brand-gold-light);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
}

.gewinne-genussbox__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

.gewinne-genussbox__main-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, var(--bg-cream) 0%, #F0E8D8 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay on genussbox image area */
.gewinne-genussbox__main-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../../assets/hero-pattern.jpg');
    background-size: 400px;
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

.gewinne-genussbox__main-img img {
    max-width: 85%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 1;
    transition: transform 800ms var(--ease-out);
}

.gewinne-genussbox:hover .gewinne-genussbox__main-img img {
    transform: scale(1.03);
}

.gewinne-genussbox__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-xl);
}

.gewinne-genussbox__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.gewinne-genussbox__title em {
    font-weight: 400;
    font-style: italic;
    color: var(--brand-indigo);
}

.gewinne-genussbox__divider {
    width: 32px;
    height: 0.5px;
    background: var(--brand-gold);
    margin-bottom: var(--space-sm);
}

.gewinne-genussbox__desc {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 400px;
}

/* Inklusive-Section with Schüssel + Handschuhe */
.gewinne-genussbox__includes {
    border-top: 0.5px solid var(--border-hairline);
    padding-top: var(--space-md);
}

.gewinne-genussbox__includes-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
}

.gewinne-genussbox__inlays {
    display: flex;
    gap: var(--space-md);
}

.gewinne-genussbox__inlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--space-sm);
    background: var(--bg-cream);
    border: 0.5px solid var(--border-hairline);
    min-width: 100px;
    transition: all 500ms var(--ease-out);
}

.gewinne-genussbox__inlay:hover {
    background: var(--bg-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.gewinne-genussbox__inlay img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
}

.gewinne-genussbox__inlay span {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}


/* ── GEWINNE TOTAL — Value Anchor ──── */
.gewinne-total {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    margin-top: var(--space-xl);
    position: relative;
}

/* Decorative hairline above */
.gewinne-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

.gewinne-total__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.gewinne-total__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--brand-gold);
    letter-spacing: -0.02em;
}


/* ── RESPONSIVE — Prizes ──── */
@media (max-width: 968px) {
    .gewinne-hero__inner {
        grid-template-columns: 1fr;
    }

    .gewinne-hero__image {
        padding: var(--space-lg) var(--space-md);
        min-height: 260px;
    }

    .gewinne-hero__image img {
        max-height: 240px;
    }

    .gewinne-hero__content {
        padding: var(--space-lg) var(--space-md);
        text-align: center;
        align-items: center;
    }

    .gewinne-hero__desc {
        text-align: center;
    }

    .gewinne-genussbox__inner {
        grid-template-columns: 1fr;
    }

    .gewinne-genussbox__main-img {
        padding: var(--space-lg) var(--space-md);
        min-height: 240px;
    }

    .gewinne-genussbox__content {
        padding: var(--space-lg) var(--space-md);
        text-align: center;
        align-items: center;
    }

    .gewinne-genussbox__desc {
        text-align: center;
    }

    .gewinne-genussbox__inlays {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gewinne-grid {
        grid-template-columns: 1fr;
    }

    .gewinne-card__img-wrap {
        height: 180px;
    }

    .gewinne-genussbox__label {
        position: relative;
        display: block;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (min-width: 769px) and (max-width: 968px) {
    .gewinne-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ══════════════════════════════════════════
   4. PRODUCTS
   ══════════════════════════════════════════ */
.products-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.products-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.products__tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    color: var(--text-tertiary);
}

.products__tab:hover {
    color: var(--text-primary);
}

.products__tab.active {
    color: var(--brand-gold);
    border-bottom-color: var(--brand-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border-hairline);
    border: 0.5px solid var(--border-hairline);
}

.product-card {
    background: var(--bg-white);
    text-align: center;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    transition: all 500ms var(--ease-out);
    cursor: default;
    position: relative;
}

.product-card.hidden {
    display: none;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--brand-gold);
    transition: width 500ms var(--ease-out);
}

.product-card:hover::after {
    width: 40px;
}

.product-card:hover {
    background: var(--bg-cream);
}

.product-card:hover .product-card__img img {
    transform: scale(1.06);
}

.product-card__img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.product-card__img img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 600ms var(--ease-out);
}

.product-card__name {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.4;
}


/* ══════════════════════════════════════════
   5. STORE LOCATOR
   ══════════════════════════════════════════ */
.store-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.store-stat {
    flex: 1;
    text-align: center;
    padding: var(--space-md) 0;
    border-right: 0.5px solid var(--border-hairline);
}

.store-stat:last-child {
    border-right: none;
}

.store-stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--brand-gold);
    line-height: 1.1;
}

.store-stat__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.store-locator {
    max-width: 580px;
    margin: 0 auto;
}

.store-locator__search {
    position: relative;
    margin-bottom: var(--space-md);
}

.store-locator__icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.store-locator__input {
    width: 100%;
    padding: 20px 20px 20px 52px;
    border: 0.5px solid var(--border-subtle);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    background: var(--bg-white);
    transition: all var(--duration) var(--ease-out);
    border-radius: 0;
    letter-spacing: 0.01em;
}

.store-locator__input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px var(--brand-gold-muted);
}

.store-locator__input::placeholder {
    color: var(--text-tertiary);
}

.store-locator__results {
    display: flex;
    flex-direction: column;
}

.store-result {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 20px;
    border: 0.5px solid var(--border-hairline);
    border-top: none;
    background: var(--bg-white);
    transition: all var(--duration) var(--ease-out);
}

.store-result:first-child {
    border-top: 0.5px solid var(--border-hairline);
}

.store-result:hover {
    background: var(--bg-warm);
    padding-left: 28px;
}

.store-result__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--brand-gold);
    opacity: 0.6;
}

.store-result__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-result__city {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.store-result__address {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.store-result__plz {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
}

.stores__no-results {
    padding: var(--space-lg);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    border: 0.5px solid var(--border-hairline);
    background: var(--bg-white);
}

.store-locator__hint {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.72rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

.store-locator__hint a {
    color: var(--brand-gold);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(201, 169, 98, 0.3);
    transition: border-color var(--duration) var(--ease-out);
}

.store-locator__hint a:hover {
    border-bottom-color: var(--brand-gold);
}


/* ══════════════════════════════════════════
   6. PARTICIPATION
   ══════════════════════════════════════════ */
.social-proof {
    text-align: center;
    padding: var(--space-md);
    border: 0.5px solid var(--border-hairline);
    background: var(--bg-warm);
}

.social-proof__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.social-proof__count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.social-proof__count strong {
    color: var(--brand-gold);
    font-weight: 700;
}

/* Live pulse dot */
.social-proof__live {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

.social-proof__divider {
    color: var(--brand-gold);
    opacity: 0.4;
}

.social-proof__note {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

/* ── Steps ──── */
.participation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
    gap: var(--space-lg);
}

.participation-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 0.5px;
    background: var(--border-subtle);
    z-index: 0;
}

.step-item {
    text-align: center;
    padding: 0 var(--space-sm);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border: 0.5px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.8rem;
    background: var(--bg-white);
    transition: all var(--duration) var(--ease-out);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.step-item:hover .step-icon {
    border-color: var(--brand-gold);
    background: var(--brand-gold-muted);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.15);
}

.step-text {
    text-align: center;
}

.step-title {
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 220px;
}


/* ══════════════════════════════════════════
   7. FORM — Premium Dark Treatment
   ══════════════════════════════════════════ */
.form-section {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--space-xl);
    border: 0.5px solid var(--border-hairline);
    position: relative;
}

/* Premium dark variant */
.form-section--premium {
    background: var(--brand-indigo-deep);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: clamp(32px, 5vw, 56px);
    max-width: 620px;
    overflow: hidden;
}

.form-section--premium::before,
.form-section--premium::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 0.5px solid rgba(201, 169, 98, 0.2);
}

.form-section--premium::before {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}

.form-section--premium::after {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

/* Ambient glow behind form */
.form-section__glow {
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 16px auto 0;
    max-width: 400px;
}

/* Dark form overrides */
.form-section--premium .form-label {
    color: rgba(255, 255, 255, 0.65);
}

.form-section--premium .form-input {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
    background: transparent;
}

.form-section--premium .form-input:focus {
    border-bottom-color: var(--brand-gold);
}

.form-section--premium .form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-section--premium .form-checkbox {
    color: rgba(255, 255, 255, 0.55);
}

.form-section--premium .form-checkbox a {
    color: var(--brand-gold-light);
}

.form-section--premium .btn-back {
    color: rgba(255, 255, 255, 0.4);
}

.form-section--premium .btn-back:hover {
    color: rgba(255, 255, 255, 0.8);
}

.form-section--premium .form-error {
    color: #FF8A80;
}

.form-section--premium .form-input.error {
    border-bottom-color: #FF8A80;
}

/* Gold button */
.btn--gold {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #D4AF37 50%, var(--brand-gold-light) 100%);
    color: var(--brand-indigo-deep);
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
    transition: all var(--duration) var(--ease-out);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 98, 0.45);
    filter: brightness(1.1);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 0.5px solid var(--border-subtle);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    background: transparent;
    transition: border-color var(--duration) var(--ease-out);
    border-radius: 0;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--brand-gold);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.required {
    color: var(--brand-gold);
}

.form-step {
    display: none;
    position: relative;
    z-index: 1;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-error {
    color: var(--brand-gold);
    font-size: 0.72rem;
    margin-top: 6px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-input.error {
    border-bottom-color: var(--brand-gold);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

.btn-back {
    background: transparent;
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 24px;
    border: none;
    cursor: pointer;
    transition: color var(--duration);
}

.btn-back:hover {
    color: var(--text-primary);
}

/* ── Upload Zone — Premium Dark ──── */
.upload-zone {
    border: 1px dashed rgba(201, 169, 98, 0.25);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--duration) var(--ease-out);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-zone:hover {
    border-color: var(--brand-gold);
    background: rgba(201, 169, 98, 0.06);
}

.upload-zone__icon {
    color: var(--brand-gold);
    margin-bottom: 16px;
    opacity: 0.7;
    transition: all var(--duration) var(--ease-out);
}

.upload-zone:hover .upload-zone__icon {
    opacity: 1;
    transform: translateY(-4px);
}

.upload-zone__title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.upload-zone__hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

/* Upload success state */
.upload-zone.upload-success {
    border-color: #4ADE80;
    border-style: solid;
    background: rgba(74, 222, 128, 0.06);
}

.upload-preview {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-sm);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.upload-preview.visible {
    display: flex;
}

.file-remove {
    color: var(--brand-gold);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.upload-actions {
    margin-top: var(--space-sm);
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-camera {
    display: block;
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 98, 0.25);
    cursor: pointer;
    padding: 16px 24px;
    transition: all var(--duration) var(--ease-out);
    letter-spacing: 0.04em;
}

.btn-camera:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
    background: rgba(201, 169, 98, 0.06);
}

/* ── Checkboxes ──── */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--brand-gold);
}

.form-checkbox a {
    color: var(--brand-gold);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(201, 169, 98, 0.3);
}

/* ── Form Progress — Dark ──── */
.form-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.form-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.form-progress__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    transition: all var(--duration);
}

.form-progress__label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--duration);
}

.form-progress__step.active .form-progress__num {
    background: var(--brand-gold);
    color: var(--brand-indigo-deep);
    border-color: var(--brand-gold);
}

.form-progress__step.active .form-progress__label {
    color: var(--brand-gold);
}

.form-progress__step.completed .form-progress__num {
    background: var(--brand-indigo);
    color: #fff;
    border-color: var(--brand-indigo);
}

.form-progress__line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--duration);
    margin-bottom: 20px;
}

.form-progress__line.active {
    background: var(--brand-gold);
}

/* ── Success ──── */
.form-success {
    text-align: center;
    padding: var(--space-lg) 0;
}

.form-success__icon {
    margin-bottom: var(--space-md);
    color: #4ADE80;
}

.form-success__icon svg {
    width: 56px;
    height: 56px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brand-gold);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}


/* ══════════════════════════════════════════
   8. TRUST & CTA
   ══════════════════════════════════════════ */
.trust-badge {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 0.5px solid var(--border-hairline);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-badge--dark {
    color: rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.btn--pulse {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.12);
    }
}

.mobile-sticky-cta {
    display: none;
}


/* ══════════════════════════════════════════
   9. RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-header {
        min-height: auto;
    }

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .participation-steps {
        max-width: 500px;
    }

    .participation-steps::before {
        left: 25%;
        right: 25%;
    }

    .urgency-strip__inner {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {

    /* ── HERO — Mobile-optimized ──── */
    .hero-header {
        min-height: 100vh;
        min-height: 100svh;
        /* Zoom into pattern center on mobile for more impact */
        background-position: center center;
        background-size: cover;
    }

    .hero-header__inner {
        padding: clamp(60px, 12vw, 100px) 24px;
        padding-top: calc(clamp(60px, 12vw, 100px) + env(safe-area-inset-top, 0px));
        padding-bottom: 100px;
    }

    .hero-header__logo {
        width: clamp(90px, 22vw, 120px);
        margin-bottom: var(--space-sm);
    }

    .hero-header__title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        line-height: 0.95;
    }

    .hero-header__title em {
        font-size: 0.55em;
    }

    .hero-header__desc {
        font-size: 0.85rem;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 12px;
    }

    .stage-badge {
        font-size: 0.52rem;
        padding: 8px 16px;
        letter-spacing: 0.18em;
    }

    /* Benefits — vertical stack on mobile */
    .hero-benefits {
        flex-direction: column;
        gap: 6px;
        margin-top: var(--space-sm);
    }

    .hero-benefit {
        font-size: 0.65rem;
    }

    .hero-benefit__sep {
        display: none;
    }

    /* Countdown — compact on mobile */
    .countdown {
        gap: 12px;
        padding: var(--space-sm) var(--space-md);
        margin-top: var(--space-md);
    }

    .countdown__number {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .countdown__unit {
        min-width: 40px;
    }

    .countdown__label {
        font-size: 0.45rem;
        margin-top: 4px;
    }

    .countdown__separator {
        font-size: 1rem;
    }

    /* Hero CTA — full width on mobile */
    .hero-header__cta {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
        padding: 18px 32px;
        margin-top: var(--space-md);
    }

    /* Hide scroll hint on mobile */
    .hero-scroll-hint {
        display: none;
    }

    /* Reduce floating orbs on mobile (performance) */
    .hero-float--3,
    .hero-float--4 {
        display: none;
    }

    /* ── VIGNETTE — Tighten for mobile viewpoint ──── */
    .hero-vignette {
        background:
            radial-gradient(ellipse 60% 50% at 50% 50%, transparent 10%, rgba(15, 10, 46, 0.5) 55%, rgba(10, 6, 30, 0.92) 100%),
            linear-gradient(180deg, rgba(10, 6, 30, 0.75) 0%, transparent 25%),
            linear-gradient(0deg, rgba(10, 6, 30, 0.8) 0%, transparent 30%),
            linear-gradient(90deg, rgba(10, 6, 30, 0.65) 0%, transparent 20%),
            linear-gradient(270deg, rgba(10, 6, 30, 0.65) 0%, transparent 20%);
    }

    /* ── URGENCY STRIP — Stack vertically ──── */
    .urgency-strip__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .urgency-sep {
        display: none;
    }

    .urgency-item {
        font-size: 0.6rem;
    }

    /* ── PRIZES — Full width cards ──── */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gewinne-card__img-wrap {
        height: 160px;
    }

    /* ── PRODUCTS — Scrollable tabs ──── */
    .products-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0 16px;
        gap: 2px;
    }

    .products-tabs::-webkit-scrollbar {
        display: none;
    }

    .products__tab {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 0.62rem;
        white-space: nowrap;
    }

    /* ── PARTICIPATION STEPS — Better proportions ──── */
    .participation-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        max-width: 100%;
        padding: 0 16px;
    }

    .participation-steps::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 0.5px;
        height: auto;
    }

    .step-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        align-items: center;
        gap: var(--space-sm);
        text-align: left;
        padding: 0;
    }

    .step-icon {
        margin: 0;
    }

    /* ── FORM — Full-width button, tighter padding ──── */
    .form-section {
        padding: var(--space-lg) 16px;
    }

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

    .btn--primary,
    .form-section .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    /* ── STORY — Better text readability ──── */
    .story-content {
        text-align: center;
        max-width: 100%;
    }

    .story-content .section-heading {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .story-content p {
        font-size: 0.88rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .story-content .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .story-values {
        justify-content: center;
    }

    .story-value {
        font-size: 0.6rem;
        padding: 10px 16px;
    }

    /* ── MOBILE STICKY CTA ──── */
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, transparent 0%, rgba(10, 6, 30, 0.95) 30%);
        border: none;
        z-index: 100;
        transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
        justify-content: center;
    }

    .mobile-sticky-cta .btn {
        padding: 16px 24px;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
        transition: all 400ms var(--ease-out);
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .mobile-sticky-cta .btn {
        background: var(--brand-indigo) !important;
        color: #fff !important;
    }

    .mobile-sticky-cta.cta-light .btn {
        background: rgba(255, 255, 255, 0.97) !important;
        color: var(--brand-indigo) !important;
    }

    .mobile-sticky-cta.cta-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
    }

    /* Safe bottom padding so footer isn't hidden by sticky CTA */
    body {
        padding-bottom: 72px;
    }

    /* ── SECTIONS — Tighter vertical spacing ──── */
    .section-heading {
        font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    }

    .hero-prize .display-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* ══════════════════════════════════════════
   9b. SMALL PHONES (≤ 480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-header__inner {
        padding: 56px 16px 90px;
        padding-top: calc(56px + env(safe-area-inset-top, 0px));
    }

    .hero-header__title {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .hero-header__desc {
        font-size: 0.8rem;
        padding: 0 4px;
    }

    .countdown {
        gap: 8px;
        padding: 10px 12px;
    }

    .countdown__number {
        font-size: 1.3rem;
    }

    .countdown__unit {
        min-width: 34px;
    }

    .product-card__img {
        height: 110px;
    }

    .products__tab {
        padding: 8px 12px;
        font-size: 0.58rem;
    }

    .urgency-item {
        font-size: 0.55rem;
        gap: 4px;
    }

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

    .gewinne-card__img-wrap {
        height: 140px;
    }

    .form-section {
        padding: var(--space-md) 12px;
    }
}

/* ══════════════════════════════════════════
   9c. TINY PHONES (≤ 360px — SE, Mini)
   ══════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-header__title {
        font-size: 2rem;
    }

    .hero-header__desc {
        font-size: 0.75rem;
    }

    .stage-badge {
        font-size: 0.48rem;
        padding: 6px 12px;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-benefit {
        font-size: 0.58rem;
    }

    .mobile-sticky-cta .btn {
        font-size: 0.62rem;
        padding: 14px 16px;
    }
}


/* ══════════════════════════════════════════
   10. STORY / ABOUT SLAVYANKA
   ══════════════════════════════════════════ */
.section--story {
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
    padding: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Village painting as full-bleed BG */
.story-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.story-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay gradient for readability */
.story-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(15, 10, 46, 0.92) 0%,
            rgba(15, 10, 46, 0.75) 40%,
            rgba(15, 10, 46, 0.4) 70%,
            rgba(15, 10, 46, 0.15) 100%);
    z-index: 2;
}

/* Pattern overlay on top */
.story-pattern-bg {
    position: absolute;
    inset: 0;
    background-image: url('../../../assets/hero-pattern.jpg');
    background-size: 500px;
    background-repeat: repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.story-content-wrapper {
    position: relative;
    z-index: 10;
    padding: var(--space-2xl) 0;
    width: 100%;
}

.story-content {
    max-width: 520px;
    color: var(--text-inverse);
}

.story-content .eyebrow {
    color: var(--brand-gold-light);
}

.story-content .section-heading {
    color: #fff;
    margin-top: 12px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.story-content .divider {
    background: var(--brand-gold);
    opacity: 0.5;
}

.story-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: var(--space-sm);
    letter-spacing: 0.01em;
}

.story-values {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.story-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    transition: all var(--duration) var(--ease-out);
}

.story-value:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
    background: rgba(201, 169, 98, 0.08);
    transform: translateY(-2px);
}

.story-value__icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section--story {
        min-height: 500px;
    }

    .story-bg-image::after {
        background:
            linear-gradient(180deg,
                rgba(15, 10, 46, 0.85) 0%,
                rgba(15, 10, 46, 0.6) 50%,
                rgba(15, 10, 46, 0.85) 100%);
    }

    .story-values {
        flex-direction: column;
        gap: var(--space-xs);
    }
}