/* ===================================
   SCHLAGER – STYLES
   Party. Sommer. Malle. Gänsehaut.
   =================================== */

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

:root {
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-glow: rgba(255, 107, 0, 0.3);
    --yellow: #FFD600;
    --yellow-soft: #FFF3B0;
    --blue: #00B4D8;
    --blue-dark: #0077B6;
    --sand: #F5E6C8;
    --sand-dark: #E8D4A8;
    --malle-sky: #1B7FC3;
    --malle-ocean: #0E5F8A;
    --malle-sunset: #FF8A47;
    --dark: #1A0E04;
    --dark-card: rgba(30, 15, 5, 0.85);
    --dark-surface: rgba(40, 20, 8, 0.9);
    --gray: #A0907A;
    --gray-light: #D4C8B8;
    --white: #FFFFFF;
    --success: #00C853;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px var(--orange-glow);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='30' y='35' text-anchor='middle' font-size='16' opacity='0.04'%3E🌴%3C/text%3E%3C/svg%3E");
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: var(--dark-surface);
    color: var(--gray-light);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: var(--radius-lg);
}

.btn-block { width: 100%; }

.btn-arrow {
    width: 20px;
    height: 20px;
}

.btn-header {
    background: var(--orange);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
}
.btn-header:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* --- PROMO BANNER --- */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: default;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}
.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.promo-banner-cta {
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(26, 14, 4, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}
.no-promo .header { top: 0; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon { font-size: 1.5rem; }
.logo-img { height: 2rem; width: auto; object-fit: contain; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    top: 3px;
}

.logo-dot { color: var(--orange); }

.header-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}
.header-nav a {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.header-nav a:hover { color: var(--orange); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4.5rem;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(27, 127, 195, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 138, 71, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 214, 0, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, rgba(14, 95, 138, 0.15) 0%, var(--dark) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 0, 0.2);
    margin-bottom: 1rem;
}

.hero-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-play-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 2;
}

.hero-play-overlay:hover {
    background: rgba(255, 107, 0, 0.8);
}

.hero-play-overlay.playing {
    background: var(--orange);
}

.hero-play-icon {
    font-size: 0.85rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.hero-audio {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin: 0 auto 2.5rem;
    max-width: 480px;
}

.audio-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.audio-player {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

.hero-cta {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px var(--orange-glow); }
    50% { box-shadow: 0 4px 40px rgba(255, 107, 0, 0.6); }
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.trust-icon { font-size: 1.1rem; }

/* --- PROOF BAR (Marquee) --- */
.proof-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(10, 5, 2, 0.85);
    border-top: 1px solid rgba(255, 107, 0, 0.15);
    padding: 0.75rem 0;
    overflow: hidden;
}

.proof-marquee {
    overflow: hidden;
    width: 100%;
}

.proof-marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.proof-notification {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-dot--green {
    background: #4CAF50;
}

.proof-dot--blue {
    background: #2196F3;
}

.proof-dot--yellow {
    background: #FFD600;
}

.proof-dot--orange {
    background: var(--orange);
}

/* --- EMOTIONAL --- */
.emotional {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.emotional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.emotional-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.emotional-occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.occasion-tag {
    padding: 0.65rem 1.25rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
    cursor: default;
}
.occasion-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
    transform: translateY(-2px);
}

.emoji-scene {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
}

.scene-main {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.scene-sub {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--orange);
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 6rem 0;
    padding-top: calc(6rem + 50px);
    background:
        linear-gradient(180deg, rgba(26, 14, 4, 0.85), rgba(26, 14, 4, 0.80)),
        url('../bilder/gruppenfoto.png') center center / cover no-repeat;
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    flex-grow: 1;
}

.step-connector {
    display: flex;
    align-items: center;
    align-self: center;
    padding-top: 4rem;
    color: var(--orange);
    width: 40px;
    flex-shrink: 0;
}

/* --- VINYL RECORD PLAYER --- */
.vinyl-player {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.vinyl-disc {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5efe6 22%, #e8e0d0 23%, #2a2a2a 24%, #1a1a1a 45%, #2a2a2a 46%, #1a1a1a 65%, #2a2a2a 66%, #1a1a1a 85%, #222 86%, #111 100%);
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vinyl-disc.spinning {
    animation: vinylSpin 2s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(60, 60, 60, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.vinyl-groove-1 { width: 70%; height: 70%; }
.vinyl-groove-2 { width: 55%; height: 55%; }
.vinyl-groove-3 { width: 85%; height: 85%; }

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5efe6, #e8dcc8);
    border: 3px solid rgba(100, 160, 200, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.7rem;
    color: #333;
    font-weight: 600;
}

.vinyl-controls {
    padding: 0 0.5rem;
}

.vinyl-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0ddd8;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.vinyl-progress-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.vinyl-progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    z-index: 1;
}

.vinyl-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 1rem;
}

.vinyl-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.vinyl-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: var(--transition);
    padding: 0.3rem;
}

.vinyl-btn:hover {
    color: #333;
}

.vinyl-btn-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.vinyl-btn-play:hover {
    transform: scale(1.08);
    color: var(--white) !important;
}

/* --- TESTIMONIALS (Horizontal Scroll) --- */
.testimonials {
    padding: 6rem 0;
}

.testimonial-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card-h {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-video-card {
    flex-shrink: 0;
    width: 260px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.testimonial-video-card .testimonial-video-placeholder {
    aspect-ratio: 3 / 4;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-video-wrap video.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-video-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-video-wrap.playing .video-play-btn {
    opacity: 0;
}

.testimonial-card-footer {
    padding: 0.75rem 1rem;
}

.testimonial-card-footer .author-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-card-footer .author-detail {
    font-size: 0.75rem;
    color: var(--gray);
}

.testimonial-review-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: normal;
    white-space: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-detail {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- TESTIMONIAL LAYOUT --- */
.testimonial-carousel {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 0, 0.3);
    background: rgba(26, 14, 4, 0.85);
    color: var(--orange);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.carousel-arrow:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.carousel-arrow-left { left: -24px; }
.carousel-arrow-right { right: -24px; }

/* --- WHAT YOU GET --- */
/* Song Page Section */
.song-page-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(14, 95, 138, 0.08), rgba(255, 107, 0, 0.06));
    border-top: 1px solid rgba(255, 107, 0, 0.08);
}

.song-page-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.song-page-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 4px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,0,0.1);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 36px;
    overflow: hidden;
    background: var(--dark);
}

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

.song-page-content {
    max-width: 520px;
}

.song-page-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.song-page-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.song-page-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.song-page-feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.song-page-features strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.song-page-features p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.02), rgba(255, 107, 0, 0.05));
    text-align: center;
}

.pricing-section .section-title {
    margin-bottom: 0.2rem;
}

.pricing-section .section-sub {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--gray-light);
}

.pricing-card {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(30, 15, 5, 0.85);
    background-image: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.01));
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gradient border via pseudo-element */
    border: none;
    z-index: 0;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light), rgba(255, 214, 0, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: -2;
}

.pricing-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.12));
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.pricing-compare {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.25rem;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 400px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.4;
}

.pricing-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    stroke: var(--orange);
    margin-top: 2px;
}

.pricing-card .btn {
    margin-top: 0.25rem;
    width: 100%;
    max-width: 340px;
}

.pricing-trust {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem 1.25rem;
        margin: 0 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }
}

/* ---- PLAKETTE LANDING SECTION ---- */
.plakette-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.04), rgba(14, 95, 138, 0.06));
}

.plakette-section .section-title { margin-bottom: 0.25rem; }
.plakette-section .section-sub { margin-bottom: 0; }

.plakette-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery: main image + thumbs */
.plakette-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plakette-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
}

.plakette-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.plakette-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    line-height: 1;
    padding: 0 0 2px 0;
}

.plakette-arrow:hover {
    background: rgba(255, 107, 0, 0.6);
    border-color: var(--orange);
}

.plakette-arrow-left { left: 10px; }
.plakette-arrow-right { right: 10px; }

/* Placeholder for "Dein Bild" */
.plakette-main-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    aspect-ratio: 1;
    color: var(--gray);
    padding: 2rem;
    text-align: center;
}

.plakette-main-placeholder-icon { font-size: 2.5rem; }

.plakette-main-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-light);
}

.plakette-main-placeholder small {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Thumbnail row */
.plakette-thumbs {
    display: flex;
    gap: 0.5rem;
}

.plakette-thumb {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.plakette-thumb:hover {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.05);
}

.plakette-thumb.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

.plakette-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.plakette-thumb span {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

.plakette-thumb.active span { color: var(--orange); }

/* Upload placeholder thumb */
.plakette-thumb-upload {
    justify-content: center;
    min-height: 0;
}

.plakette-thumb-upload-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.1rem;
}

/* Right info column */
.plakette-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.plakette-badge {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 214, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.plakette-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.plakette-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.plakette-highlights li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.plakette-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* Legacy price card - kept for other pages */
.wyg-price-card {
    background: var(--dark-surface);
    border: 2px solid var(--orange);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.price-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* --- BONUS --- */
.bonus-section {
    padding: 4rem 0;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 214, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.bonus-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.bonus-hashtag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 6px;
    color: var(--orange);
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
}

.bonus-reward {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bonus-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.5rem 1rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
}

/* --- QUESTIONNAIRE --- */
.questionnaire {
    padding: 9rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08), rgba(26, 14, 4, 0.95));
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    scroll-margin-top: 6rem;
}
.no-promo .questionnaire { padding-top: 6.5rem; }

.questionnaire > .container {
    width: 100%;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem 1.5rem;
    overflow: visible;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 4px;
    width: 20%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    color: var(--gray);
    transition: var(--transition);
}

.progress-step.active {
    background: var(--orange);
    color: var(--white);
}

.progress-step.done {
    background: var(--success);
    color: var(--white);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
    overflow: visible;
}

.form-step.active {
    display: block;
    min-height: 0;
    overflow: visible;
}

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

.form-step-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

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

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

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.4rem;
    line-height: 1.5;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B8BA3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-input option {
    background: var(--dark-surface);
    color: var(--white);
}

/* Option Cards (Radio) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.option-card {
    cursor: pointer;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    min-height: 80px;
    line-height: 1.3;
}

.option-card:hover .option-content {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

/* Toggle Buttons (Multi-Select) */
.toggle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.toggle-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.toggle-grid-2 .toggle-btn {
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
}

/* Voice Column Layout (Step 5) */
.voice-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.voice-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.voice-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 2px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(255,107,0,0.3);
    flex-shrink: 0;
}
.voice-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,107,0,0.5);
}
.voice-play-btn.playing {
    background: var(--dark-surface);
    border: 2px solid var(--orange);
}
.voice-progress-wrap {
    display: none;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 180px;
}
.voice-progress-wrap.active {
    display: flex;
}
.voice-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.voice-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.15s linear;
}
.voice-progress-time {
    font-size: 0.7rem;
    color: var(--gray-light);
    min-width: 28px;
}
.voice-preview-credit {
    font-size: 0.65rem;
    color: var(--gray-light);
    text-align: center;
    line-height: 1.3;
    opacity: 0.8;
}

.toggle-btn {
    padding: 0.6rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.3;
}

.toggle-btn:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.toggle-btn.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

.sonstiges-input {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.sonstiges-input.visible {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.75rem;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.form-input.error {
    border-color: #FF4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

/* Order Summary */
.order-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.summary-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray-light);
}

.summary-price {
    font-weight: 700;
    color: var(--white);
}

.summary-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.75rem 0;
}

.summary-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.summary-total .summary-price {
    color: var(--orange);
    font-size: 1.2rem;
}

/* Fake-Rabatt: durchgestrichener Originalpreis */
.summary-price-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Add-on Checkboxen (Blitz-Versand, Streaming) */
.summary-addon {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    margin: 0.6rem 0;
    background: rgba(255, 107, 0, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.summary-addon:hover {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.08);
}

.addon-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.addon-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 2px;
}

.addon-checkbox-input:checked ~ .addon-checkmark {
    background: var(--orange);
    border-color: var(--orange);
}

.addon-checkbox-input:checked ~ .addon-checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.addon-info strong {
    font-size: 0.95rem;
    color: var(--white);
}

.addon-info small {
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.3;
}

.addon-price {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
    white-space: nowrap;
    margin-top: 2px;
}

.addon-badge {
    font-weight: 700;
    color: var(--success);
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(0, 200, 83, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-top: 2px;
}

.summary-addon:has(.addon-checkbox-input:checked) {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.1);
}

/* Plakette Add-on with image */
.summary-addon-plakette {
    flex-wrap: wrap;
}

.addon-content-wrap {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
}

.addon-content-wrap .addon-info {
    flex: 1;
    min-width: 150px;
}

.addon-content-wrap .addon-price {
    margin-top: 2px;
}

.addon-plakette-img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    margin: 0.5rem auto 0;
    display: block;
}

/* Streaming included state (when plakette is selected) */
.addon-included {
    pointer-events: none;
    position: relative;
}

.addon-included .addon-checkmark,
.addon-included .addon-info,
.addon-included .addon-price {
    opacity: 0.35;
}

.addon-included .addon-price {
    display: none;
}

.addon-included-badge {
    display: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
    margin-top: 2px;
}

.addon-included .addon-included-badge {
    display: inline-block;
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: -5px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.video-lightbox-close:hover {
    opacity: 1;
}

.video-lightbox-player {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    background: #000;
}

/* Review Audio Play Button states */
.review-play-btn.playing {
    background: var(--orange);
    animation: audioPulse 1.5s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}

.btn-checkout {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.15rem;
}

/* Toggle max-reached state */
.toggle-btn.max-reached {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}

/* Error highlight for toggle grids */
.toggle-grid.error-highlight {
    border: 2px solid #FF4444;
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

/* Tip Box */
.tip-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 214, 0, 0.08);
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.tip-box-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tip-box-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yellow);
    line-height: 1.4;
}

/* --- FAQ --- */
.faq {
    padding: 6rem 0;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    padding: 1.25rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--gray-light);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

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

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

/* --- FINAL CTA --- */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 214, 0, 0.08));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15), transparent 70%);
}

.final-cta .container {
    position: relative;
}

.final-cta .section-sub {
    margin-bottom: 2rem;
}

/* --- FOOTER --- */
.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- LEGAL PAGE --- */
.legal-section h2 { margin-bottom: 1.5rem; }
.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--orange);
}
.legal-section p,
.legal-section ul {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-section ul {
    padding-left: 1.5rem;
}
.legal-section li {
    margin-bottom: 0.4rem;
}
.legal-section a {
    color: var(--orange);
    text-decoration: underline;
}
.legal-section a:hover {
    color: var(--orange-light);
}

/* --- VIDEO PLACEHOLDER (Emotional Section) --- */
.video-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(14, 95, 138, 0.15));
    border: 2px dashed rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow);
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.video-placeholder-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* --- TESTIMONIAL VIDEO PLACEHOLDERS --- */
.testimonial-video-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(14, 95, 138, 0.1));
    border: 1px dashed rgba(255, 107, 0, 0.25);
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-video-placeholder .video-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.video-placeholder-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(255, 214, 0, 0.05));
}

.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(255, 214, 0, 0.05));
    border: 2px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guarantee-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guarantee-badge-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

/* --- CARD BACKGROUNDS WITH MALLE WARMTH --- */
.testimonial-card-h {
    background: linear-gradient(135deg, rgba(40, 20, 8, 0.9), rgba(30, 15, 5, 0.85));
}

.step-card {
    background: linear-gradient(135deg, rgba(40, 20, 8, 0.8), rgba(30, 15, 5, 0.7));
    border: 1px solid rgba(255, 107, 0, 0.08);
}

.occasion-tag {
    background: rgba(40, 20, 8, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.12);
}

.hero-audio {
    background: rgba(40, 20, 8, 0.85);
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.form-wrapper {
    background: rgba(40, 20, 8, 0.9);
    border: 1px solid rgba(255, 107, 0, 0.12);
}

.footer {
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 5, 2, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--orange-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* DSGVO: Both cookie buttons must be equally prominent */
.cookie-btn-accept,
.cookie-btn-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cookie-btn-accept {
    background: var(--orange);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--orange-light);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--orange);
}

.cookie-btn-reject:hover {
    background: var(--orange);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* --- DECORATIVE: SUNSET GLOW (Hero) --- */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(255, 214, 0, 0.1) 0%, rgba(255, 138, 71, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* --- DECORATIVE: WAVE DIVIDER (Hero → How-it-Works) --- */
.how-it-works {
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -49px;
    left: 0;
    right: 0;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 25 C360 0, 540 50, 720 25 C900 0, 1080 50, 1440 25 L1440 50 L0 50 Z' fill='%231A0E04'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* --- DECORATIVE: FLOATING MUSICAL NOTES --- */
.hero-notes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-note {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    animation: floatNote 10s ease-in-out infinite;
}

.hero-note-1 { left: 5%; bottom: 35%; animation-delay: 0s; }
.hero-note-2 { left: 12%; bottom: 20%; animation-delay: 2s; }
.hero-note-3 { left: 20%; bottom: 50%; animation-delay: 4.5s; }
.hero-note-4 { right: 8%; bottom: 30%; animation-delay: 1.5s; }
.hero-note-5 { right: 18%; bottom: 55%; animation-delay: 5s; }
.hero-note-6 { left: 30%; bottom: 15%; animation-delay: 7s; width: 22px; height: 22px; }
.hero-note-7 { right: 25%; bottom: 25%; animation-delay: 3.5s; width: 20px; height: 20px; }

@keyframes floatNote {
    0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
    10%  { opacity: 0.22; }
    80%  { opacity: 0.18; }
    100% { opacity: 0; transform: translateY(-150px) rotate(20deg); }
}

/* --- DECORATIVE: SAND GRADIENT (Section bottoms) --- */
.emotional {
    position: relative;
}

.emotional::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(245, 230, 200, 0.035));
    pointer-events: none;
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(245, 230, 200, 0.04));
    pointer-events: none;
}

/* --- DECORATIVE: COCKTAIL DIVIDER --- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 0;
    color: var(--orange);
    opacity: 0.18;
}

.divider-svg {
    width: 280px;
    height: 30px;
}

/* ============================
   FRAGEBOGEN v3 — NEW STYLES
   ============================ */

/* Progress Header */
.progress-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Form Step Sub-heading */
.form-step-sub {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
}

/* Anlass Tile Grid */
.toggle-grid-anlass {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.toggle-btn-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.85rem 0.75rem;
    min-height: 68px;
    text-align: center;
}

.tile-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.tile-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Interstitial Screens */
.interstitial .interstitial-content {
    text-align: center;
    padding: 2rem 0;
}

.interstitial-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 2rem;
}

.interstitial-sub {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.interstitial-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 320px;
    margin: 0 auto;
}

.interstitial-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-light);
}

.interstitial-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.interstitial-trust {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow);
}

/* Inline Value Props (dezente Leiste unter Titel) */
.value-props-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.value-prop-item {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Field Errors */
.field-error {
    font-size: 0.8rem;
    color: #FF4444;
    margin-top: 0.35rem;
    min-height: 0;
    display: none;
}

.field-error:not(:empty) {
    display: block;
}

.field-char-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.35rem;
}
.field-char-info .field-error {
    margin-top: 0;
}
.char-counter {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}
.form-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    line-height: 1.5;
}
.form-tip-icon {
    flex-shrink: 0;
}

/* Textarea Meta (counter + encouragement) */
.textarea-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.35rem;
    gap: 0.5rem;
}

.char-counter {
    font-size: 0.75rem;
    color: var(--gray);
    flex-shrink: 0;
}

.encouragement {
    font-size: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.enc-hint {
    color: var(--gray);
}

.enc-positive {
    color: var(--orange-light);
}

.enc-success {
    color: var(--success);
}

/* Soft-Nudge Modal */
.nudge-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nudge-modal-overlay.visible {
    opacity: 1;
}

.nudge-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.nudge-modal-overlay.visible .nudge-modal {
    transform: scale(1);
}

.nudge-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #FF6B00;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.nudge-modal-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.nudge-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nudge-btn-add {
    width: 100%;
}

.nudge-btn-skip {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #999;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nudge-btn-skip:hover {
    color: #ccc;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Songtitel Chips */
.songtitel-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.songtitel-chip {
    padding: 0.5rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.songtitel-chip:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.songtitel-chip.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

/* Summary Card */
.summary-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-row-edit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row-edit:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    min-width: 70px;
    flex-shrink: 0;
}

.summary-value {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-light);
    word-break: break-word;
}

.summary-edit-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.summary-edit-btn:hover {
    opacity: 1;
}

/* Upsell Section */
.upsell-section {
    margin-bottom: 1.5rem;
}

.upsell-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.upsell-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.upsell-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
}

.upsell-card.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
}

.upsell-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upsell-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.upsell-icon-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
}


.upsell-info {
    flex: 1;
}

.upsell-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.upsell-info small {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.upsell-popular {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 214, 0, 0.15));
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.4rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.upsell-delivery {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.3rem;
    opacity: 0.7;
}

.upsell-price {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.upsell-check {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.upsell-card.active .upsell-check {
    opacity: 1;
    transform: scale(1);
}

/* Price Breakdown */
.price-breakdown {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.price-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    padding-top: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.price-new {
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
}

.price-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.12));
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    margin-right: 0.35rem;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.price-free {
    color: #4CAF50;
    font-weight: 600;
}

.price-countdown {
    padding: 0.3rem 0 0.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.price-countdown-text {
    color: rgba(255, 255, 255, 0.6);
}

.price-countdown-timer {
    color: #4CAF50;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.price-countdown-after {
    color: var(--gray);
    font-size: 0.75rem;
}


/* ---- Legal Checkbox Shake ---- */
.legal-checkbox-shake {
    animation: checkboxShake 0.5s ease;
}
.legal-checkbox-shake span,
.legal-checkbox-shake input {
    color: #FF2D2D !important;
    accent-color: #FF2D2D !important;
    transition: color 0.3s ease;
}
@keyframes checkboxShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-6px); }
    30% { transform: translateX(5px); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
}

.price-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0;
}

/* Social Proof Footer in Form */
.form-social-proof {
    text-align: center;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

/* Next Button Disabled State */
#nextBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Trust Elements under Checkout */
.trust-elements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Slide Animation Override */
.form-step {
    animation: slideIn 0.3s ease;
}

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

/* ============================
   ANLASS CHANGE WARNING MODAL
   ============================ */
.anlass-warn-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anlass-warn-overlay.visible {
    opacity: 1;
}

.anlass-warn-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 180, 0, 0.35);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.anlass-warn-overlay.visible .anlass-warn-modal {
    transform: scale(1);
}

.anlass-warn-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #ffb400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.anlass-warn-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.anlass-warn-text:last-of-type {
    margin-bottom: 2rem;
}

.anlass-warn-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.anlass-warn-btn-change {
    flex: 1;
}

.anlass-warn-btn-keep {
    flex: 1;
}

/* ============================
   FERTIG OVERLAY (Step 6 → 7)
   ============================ */
.fertig-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(30, 15, 10, 0.94);
    opacity: 0;
    animation: fertigFadeIn 0.3s ease forwards;
}

.fertig-overlay.fade-out {
    animation: fertigFadeOut 0.4s ease forwards;
}

.fertig-circle-wrap {
    position: relative;
    width: 110px;
    height: 110px;
}

/* Circle outline — drawn via stroke-dashoffset */
.fertig-circle-wrap .fertig-circle {
    width: 110px;
    height: 110px;
    fill: none;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 330;
    stroke-dashoffset: 330;
    animation: fertigDrawCircle 0.6s ease 0.2s forwards;
}

/* Checkmark inside — pops after circle is drawn */
.fertig-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    stroke: #22c55e;
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: fertigPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards;
}

.fertig-text {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22c55e;
    opacity: 0;
    transform: scale(0.7);
    animation: fertigTextPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes fertigFadeIn {
    to { opacity: 1; }
}

@keyframes fertigFadeOut {
    to { opacity: 0; }
}

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

@keyframes fertigPop {
    to { transform: translate(-50%, -50%) scale(1); }
}

@keyframes fertigTextPop {
    to { opacity: 1; transform: scale(1); }
}

/* ============================
   RESPONSIVE
   ============================ */

/* --- 1440px: Laptops / kleinere Desktops --- */
@media (max-width: 1440px) {
    .container { max-width: 1060px; }
    .hero { padding: 7rem 0 4rem; }
    .hero-content { padding-bottom: 3rem; }
    .song-page-grid { gap: 3rem; }
    .plakette-grid { max-width: 880px; gap: 2.5rem; }
    .guarantee-card { padding: 2.5rem 2rem; }
    .bonus-card { padding: 2.5rem 2rem; }
}

/* --- 1024px: Tablets Landscape / kleine Laptops --- */
@media (max-width: 1024px) {
    .container { max-width: 920px; padding: 0 1.25rem; }

    .hero { padding: 8rem 0 4rem; }
    .hero-headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
    .hero-sub { font-size: 0.9rem; max-width: 480px; }
    .hero-video-wrap { max-width: 580px; }
    .hero::before { width: 500px; height: 350px; }

    .steps-grid { gap: 0.75rem; }
    .step-card { min-width: 180px; padding: 1.5rem 1.25rem; }
    .step-connector { width: 30px; }

    .song-page-grid {
        grid-template-columns: 0.4fr 0.6fr;
        gap: 2.5rem;
    }
    .phone-mockup { width: 240px; height: 480px; }

    .plakette-grid { gap: 2rem; }
    .plakette-main { max-width: 360px; }

    .testimonial-review-card { width: 260px; }
    .testimonial-video-card { width: 240px; }

    .pricing-card { max-width: 500px; }

    /* Form: leicht enger */
    .questionnaire { padding: 7.5rem 0 1.25rem; }
    .form-wrapper { max-width: 600px; padding: 1.5rem 1.75rem 1.25rem; }
    .form-step-title { font-size: 1.45rem; }

    .emotional-desc { font-size: 1rem; }
    .guarantee-card { max-width: 620px; padding: 2.5rem 2rem; }
    .faq-list { max-width: 620px; }

    .footer-links { gap: 1.25rem; }
    .footer-links a { font-size: 0.8rem; }
}

/* --- 768px: Tablets Portrait --- */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .promo-banner { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
    .promo-banner-inner { gap: 0.5rem; }

    .hero { padding: 7.5rem 0 5rem; }
    .hero-notes { display: none; }
    .hero::before { width: 350px; height: 250px; }
    .hero-headline { font-size: 2rem; }
    .hero-sub { font-size: 0.9rem; max-width: 420px; }
    .hero-video-wrap { max-width: 100%; }
    .hero-trust { justify-content: center; gap: 1rem; }
    .trust-item { font-size: 0.8rem; }
    .divider-svg { width: 200px; }

    .emotional-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .emotional-visual { order: -1; }
    .emotional { padding: 4rem 0; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-card { max-width: 400px; width: 100%; }
    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .how-it-works { padding: 4rem 0; padding-top: calc(4rem + 50px); }

    .song-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .song-page-content { max-width: 100%; }
    .phone-mockup { width: 220px; height: 440px; }
    .song-page-features { text-align: left; }
    .song-page-section { padding: 4rem 0; }

    .plakette-section { padding: 3rem 0; }
    .plakette-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .plakette-main { max-width: 320px; }
    .plakette-info { text-align: center; align-items: center; }
    .plakette-highlights { text-align: left; }

    .carousel-arrow { display: none; }
    .option-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials { padding: 4rem 0; }
    .testimonial-video-card { width: 220px; }
    .testimonial-review-card { width: 250px; }

    /* --- FRAGEBOGEN: komplett sichtbar auf Tablets --- */
    .questionnaire { padding: 7.5rem 0 1rem; }
    .form-wrapper {
        max-width: 100%;
        margin: 0 0.5rem;
        padding: 1.25rem 1.25rem 1rem;
        border-radius: var(--radius-lg);
    }
    .form-step-title { font-size: 1.35rem; margin-bottom: 1.25rem; }
    .form-step-sub { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .toggle-grid-anlass { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .toggle-btn-tile { padding: 1rem 0.5rem; min-height: 70px; }
    .tile-emoji { font-size: 1.5rem; }
    .toggle-grid-2 { gap: 0.6rem; }
    .toggle-grid-2 .toggle-btn { padding: 0.75rem 0.9rem; font-size: 0.95rem; }
    .interstitial-title { font-size: 1.4rem; }

    .upsell-card { padding: 0.85rem 1rem; }
    .upsell-card-inner { flex-wrap: wrap; }
    .upsell-price { width: 100%; text-align: right; margin-top: 0.25rem; }
    .upsell-info strong { font-size: 0.85rem; }
    .upsell-info small { font-size: 0.75rem; }

    .summary-card { padding: 1rem; }
    .price-breakdown { padding: 1rem; }

    .form-nav { margin-top: 1.5rem; padding-top: 1.25rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

    .value-props-inline { gap: 0.4rem 0.75rem; margin-bottom: 1.25rem; }

    /* Plakette-Optionen innerhalb Fragebogen */
    .plakette-template-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
    .plakette-upload-layout { flex-direction: column; }
    .plakette-custom-preview-thumb { width: 100px; }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-banner-text { font-size: 0.8rem; }

    /* Footer */
    .footer-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }

    /* Guarantee & Bonus */
    .guarantee-section { padding: 3.5rem 0; }
    .guarantee-card { padding: 2rem 1.5rem; }
    .bonus-card { padding: 2rem 1.5rem; }

    /* FAQ */
    .faq { padding: 4rem 0; }
    .final-cta { padding: 4rem 0; }
}

/* ---- PLAKETTE BILD-AUSWAHL ---- */
.plakette-options {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.plakette-options.open {
    max-height: 900px;
    opacity: 1;
}

.plakette-options-layout {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.plakette-auswahl {
    flex: 1;
    min-width: 0;
}

.plakette-auswahl-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: var(--white);
}

/* Tabs */
.plakette-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plakette-tab {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-light);
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.plakette-tab:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.plakette-tab.active {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--orange);
    color: var(--orange);
}

.plakette-tab-content {
    display: none;
}

.plakette-tab-content.active {
    display: block;
}

/* Upload Area */
.plakette-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.plakette-upload-area:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.03);
}

.plakette-upload-icon {
    font-size: 1.8rem;
}

.plakette-upload-text {
    font-size: 0.8rem;
    color: var(--gray);
}

.plakette-upload-preview {
    position: relative;
    display: inline-block;
    margin-top: 0.75rem;
    overflow: visible;
}

.plakette-upload-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--orange);
    box-shadow: 0 2px 12px rgba(255, 107, 0, 0.2);
    display: block;
}

.plakette-upload-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 26px;
    height: 26px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Upload Layout: Thumbnail + Upload Area side by side */
.plakette-upload-layout {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.plakette-custom-preview-thumb {
    flex-shrink: 0;
    width: 110px;
    cursor: pointer;
}

.plakette-custom-preview-thumb:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
}

.plakette-upload-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.plakette-upload-right .plakette-upload-area {
    flex: 1;
    justify-content: center;
}

.plakette-upload-hint {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    line-height: 1.4;
}

.plakette-upload-hinweis {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--success);
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 8px;
}

/* Template Grid */
.plakette-template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.plakette-template-thumb {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.plakette-template-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.plakette-template-thumb span {
    font-size: 0.7rem;
    color: var(--gray);
}

.plakette-template-thumb:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.plakette-template-thumb.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.25);
}

.plakette-template-thumb.active span {
    color: var(--orange);
}

/* ---- TEMPLATE LIGHTBOX ---- */
.tpl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.tpl-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.tpl-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.tpl-lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 540px;
    width: 90vw;
    z-index: 1;
}

.tpl-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.tpl-lightbox-close:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.tpl-lightbox-img-wrap {
    width: 100%;
    text-align: center;
}

.tpl-lightbox-img-wrap img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.tpl-lightbox-label {
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--white);
}

.tpl-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.tpl-lightbox-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.tpl-lightbox-prev {
    left: -60px;
}

.tpl-lightbox-next {
    right: -60px;
}

.tpl-lightbox-select {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* Responsive Plakette + Lightbox */
@media (max-width: 768px) {
    .tpl-lightbox-content {
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
    }

    .tpl-lightbox-close {
        top: 10px;
        right: 10px;
        z-index: 2;
    }

    .tpl-lightbox-arrow {
        top: auto;
        bottom: 90px;
        transform: none;
        z-index: 2;
    }

    .tpl-lightbox-prev {
        left: 20px;
    }

    .tpl-lightbox-next {
        right: 20px;
    }

    .tpl-lightbox-img-wrap img {
        max-height: 50vh;
        border-radius: var(--radius);
    }
}

@media (max-width: 480px) {
    .plakette-template-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plakette-tabs {
        flex-direction: column;
    }

    .plakette-custom-preview-thumb { width: 90px; }
}

/* ---- PHONE VIDEO PLACEHOLDER ---- */
.phone-screen {
    position: relative;
}

.phone-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-surface), rgba(26, 14, 4, 0.95));
    gap: 0.75rem;
    z-index: 1;
}

.phone-video-placeholder-icon {
    font-size: 2.5rem;
}

.phone-video-placeholder-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.phone-video-placeholder.hidden {
    display: none;
}

/* ---- EMAIL CAPTURE BLOCK (Zwischenblock nach Step 4) ---- */
.email-capture-block {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    padding: 2rem 0;
}

.email-capture-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.email-capture-inner {
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.email-capture-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.email-capture-sub {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.email-capture-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-capture-input {
    text-align: center;
}

.email-capture-btn {
    width: 100%;
}

.email-capture-skip {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-capture-skip:hover {
    color: var(--gray-light);
}

/* --- 480px: Smartphones --- */
@media (max-width: 480px) {
    html { font-size: 15px; }

    .container { padding: 0 1rem; }

    .promo-banner { font-size: 0.7rem; padding: 0.35rem 0.5rem; }
    .promo-banner-inner { gap: 0.3rem; }

    .header { top: 30px; padding: 0.75rem 0; }
    .logo-img { height: 1.6rem; }
    .logo-text { font-size: 1.3rem; }
    .btn-header { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .hero { padding: 6.5rem 0 3.5rem; min-height: auto; }
    .hero-content { padding-top: 1rem; padding-bottom: 2rem; }
    .hero-headline { font-size: 1.7rem; letter-spacing: 1px; }
    .hero-sub { font-size: 0.85rem; max-width: 100%; margin-bottom: 1rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
    .hero-cta { font-size: 0.95rem; padding: 0.85rem 2rem; }
    .hero-trust { gap: 0.6rem; }
    .trust-item { font-size: 0.75rem; }
    .trust-icon { font-size: 0.95rem; }
    .hero-play-overlay { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .section-title { font-size: 1.6rem; }
    .section-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }

    .emotional { padding: 3rem 0; }
    .emotional-desc { font-size: 0.9rem; line-height: 1.7; }
    .occasion-tag { padding: 0.5rem 0.9rem; font-size: 0.8rem; }

    .how-it-works { padding: 3rem 0; padding-top: calc(3rem + 50px); }
    .step-card { padding: 1.5rem 1.25rem; }
    .step-icon { font-size: 2rem; }
    .step-title { font-size: 1.05rem; }
    .step-desc { font-size: 0.85rem; }

    .song-page-section { padding: 3rem 0; }
    .phone-mockup { width: 200px; height: 400px; }
    .song-page-desc { font-size: 1rem; }

    .testimonials { padding: 3rem 0; }
    .testimonial-video-card { width: 200px; }
    .testimonial-review-card { width: 240px; }

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

    /* --- FRAGEBOGEN: Smartphones --- */
    .questionnaire { padding-top: 7rem; padding-bottom: 0.75rem; }
    .form-wrapper {
        margin: 0 0.25rem;
        padding: 1rem 0.85rem 0.85rem;
        border-radius: var(--radius);
    }
    .form-step-title { font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 0.5px; }
    .form-step-sub { font-size: 0.85rem; margin-top: -0.5rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-label { font-size: 0.85rem; }
    .form-input { padding: 0.75rem 0.85rem; font-size: 0.95rem; }

    .toggle-grid-anlass { gap: 0.5rem; }
    .toggle-btn-tile { padding: 0.85rem 0.4rem; min-height: 65px; gap: 0.3rem; }
    .tile-emoji { font-size: 1.3rem; }
    .tile-label { font-size: 0.78rem; }

    .toggle-grid-2 { gap: 0.5rem; }
    .toggle-grid-2 .toggle-btn { padding: 0.7rem 0.75rem; font-size: 0.9rem; }
    .toggle-btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }

    .value-props-inline { gap: 0.3rem 0.6rem; margin-bottom: 1rem; padding: 0.3rem 0; }
    .value-prop-item { font-size: 0.68rem; }

    .voice-preview { gap: 0.3rem; }
    .voice-play-btn { width: 32px; height: 32px; font-size: 0.75rem; }
    .voice-preview-credit { font-size: 0.6rem; }
    .voice-progress-wrap { max-width: 150px; }

    .songtitel-chip { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
    .tip-box { padding: 0.75rem 1rem; }
    .tip-box-icon { font-size: 1.2rem; }
    .tip-box-text { font-size: 0.85rem; }

    .interstitial-title { font-size: 1.2rem; }
    .interstitial-sub { font-size: 0.9rem; }

    .summary-card { padding: 0.85rem; }
    .summary-label { font-size: 0.75rem; min-width: 60px; }
    .summary-value { font-size: 0.85rem; }

    .upsell-title { font-size: 1.05rem; }
    .upsell-card { padding: 0.75rem 0.85rem; }
    .upsell-icon { font-size: 1.25rem; }
    .upsell-icon-img { width: 42px; height: 42px; }
    .upsell-info strong { font-size: 0.82rem; }
    .upsell-info small { font-size: 0.72rem; }
    .upsell-price { font-size: 0.85rem; }
    .upsell-popular { font-size: 0.58rem; }
    .upsell-check { width: 18px; height: 18px; font-size: 0.65rem; }

    .price-breakdown { padding: 0.85rem; }
    .price-row { font-size: 0.82rem; }
    .price-total { font-size: 1.05rem; }

    .form-nav { margin-top: 1.25rem; padding-top: 1rem; }
    .form-nav .btn-secondary { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .form-nav .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
    .btn-checkout { padding: 0.9rem; font-size: 1.05rem; }

    .form-social-proof { font-size: 0.78rem; padding-top: 1rem; }
    .progress-label { font-size: 0.78rem; }

    .email-capture-inner { padding: 1.5rem 1.25rem; }
    .email-capture-title { font-size: 1.3rem; }
    .email-capture-sub { font-size: 0.85rem; }

    .plakette-template-grid { gap: 0.4rem; }
    .plakette-tab { font-size: 0.75rem; padding: 0.5rem 0.4rem; }
    .plakette-auswahl-title { font-size: 0.9rem; }
    .plakette-upload-area { padding: 1rem 0.75rem; }
    .plakette-upload-text { font-size: 0.75rem; }

    /* Legal Checkboxen */
    .legal-checkbox-label { font-size: 0.78rem !important; }

    /* Pricing */
    .pricing-section { padding: 1.5rem 0; }
    .pricing-card { padding: 1.25rem 1rem; margin: 0 0.5rem; }
    .pricing-price { font-size: 2.2rem; }
    .pricing-features li { font-size: 0.82rem; }
    .pricing-badge { font-size: 0.8rem; }

    /* Plakette Landing */
    .plakette-section { padding: 2.5rem 0; }
    .plakette-main { max-width: 280px; }
    .plakette-badge { font-size: 0.8rem; }
    .plakette-desc { font-size: 0.9rem; }
    .plakette-highlights li { font-size: 0.82rem; }

    /* Guarantee */
    .guarantee-section { padding: 3rem 0; }
    .guarantee-card { padding: 1.75rem 1.25rem; }
    .guarantee-desc { font-size: 1rem; }
    .guarantee-badge-item { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

    /* Bonus */
    .bonus-card { padding: 1.75rem 1.25rem; }
    .bonus-title { font-size: 1.8rem; }
    .bonus-desc { font-size: 0.95rem; }

    /* FAQ */
    .faq { padding: 3rem 0; }
    .faq-question { font-size: 0.95rem; padding: 1rem 0; }
    .faq-answer { font-size: 0.88rem; }

    /* Final CTA */
    .final-cta { padding: 3rem 0; }

    /* Footer */
    .footer { padding: 2rem 0 1.25rem; }
    .footer-tagline { font-size: 0.78rem; }
    .footer-bottom p { font-size: 0.75rem; }

    /* Cookie Banner */
    .cookie-banner { padding: 1rem; }
    .cookie-banner-actions { gap: 0.5rem; }
    .cookie-btn-accept, .cookie-btn-reject { padding: 0.5rem 1rem; font-size: 0.8rem; }

    /* Nudge Modal */
    .nudge-modal { padding: 2rem 1.5rem; }
    .nudge-modal-title { font-size: 1.5rem; }
    .nudge-modal-text { font-size: 0.9rem; }

    /* Anlass Warn Modal */
    .anlass-warn-modal { padding: 2rem 1.5rem; }
    .anlass-warn-title { font-size: 1.4rem; }
}
