/* ================================
   CINEMATIC AI LANDING PAGE
   Conversion-optimierte Beige-Ästhetik
   ================================ */

:root {
    /* Landing Page Farbpalette */
    --primary-beige: #F5E6D3;
    --warm-beige: #E8D5B7;
    --rich-beige: #D4B896;
    --golden-beige: #C49B7A;
    --dark-beige: #A67C5A;
    --accent-gold: #B8860B;

    --cream-white: #FDF8F0;
    --soft-white: #FEFCF7;
    --warm-gray: #8B7355;
    --deep-brown: #3E2723;

    /* Landing-spezifische Gradienten */
    --hero-gradient: linear-gradient(135deg, var(--cream-white) 0%, var(--primary-beige) 50%, var(--warm-beige) 100%);
    --cta-gradient: linear-gradient(135deg, var(--golden-beige) 0%, var(--dark-beige) 100%);
    --premium-gradient: linear-gradient(135deg, var(--accent-gold) 0%, #DAA520 50%, var(--golden-beige) 100%);

    /* Schatten für Landing */
    --hero-shadow: 0 20px 60px rgba(212, 184, 150, 0.3);
    --card-shadow: 0 12px 40px rgba(196, 155, 122, 0.2);
    --hover-shadow: 0 20px 60px rgba(184, 134, 11, 0.4);

    /* Animationen */
    --bounce-ease: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   BASE & RESET
   ================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--deep-brown);
    overflow-x: hidden;
    background: var(--cream-white);
}

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

/* ================================
   NAVIGATION - FLOATING & SMART
   ================================ */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(196, 155, 122, 0.2);
    transition: all 0.3s var(--smooth-ease);
    transform: translateY(0);
}

.landing-nav.scrolled {
    background: rgba(253, 248, 240, 0.98);
    box-shadow: var(--card-shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--deep-brown);
}

.logo-icon {
    font-size: 1.8rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    transition: all 0.3s var(--smooth-ease);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--premium-gradient);
    transition: all 0.3s var(--smooth-ease);
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--cta-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--bounce-ease);
    box-shadow: var(--card-shadow);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--hover-shadow);
}

#site-logo {
    height: 300px;
    margin-right: 25px;
    margin-top: -150px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-brown);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ================================
   HERO SECTION - CONVERSION MAGIC
   ================================ */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    background-attachment: fixed;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 80% 70%, rgba(196, 155, 122, 0.15) 0%, transparent 60%),
            linear-gradient(45deg, transparent 30%, rgba(253, 248, 240, 0.8) 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; left: 85%; animation-delay: -5s; }
.floating-element:nth-child(3) { top: 30%; left: 70%; animation-delay: -10s; }
.floating-element:nth-child(4) { top: 80%; left: 20%; animation-delay: -15s; }
.floating-element:nth-child(5) { top: 10%; left: 50%; animation-delay: -8s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-20px) rotate(360deg); opacity: 0.1; }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s var(--bounce-ease);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 134, 11, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 1.1rem;
    animation: rocketFloat 1.5s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep-brown);
}

.title-highlight {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(253, 248, 240, 0.8);
    border-radius: 1.5rem;
    border: 1px solid rgba(196, 155, 122, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s var(--bounce-ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    flex-shrink: 0; /* Verhindert Schrumpfen */
}

.primary-cta {
    background: var(--cta-gradient);
    color: white;
    box-shadow: var(--hero-shadow);
    z-index: 2; /* Höhere Priorität */
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: all 0.6s ease;
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--hover-shadow);
}

.primary-cta:hover::before {
    left: 100%;
}

.secondary-cta {
    background: transparent;
    color: var(--deep-brown);
    border: 2px solid var(--warm-beige);
    z-index: 1;
}

.secondary-cta:hover {
    background: var(--warm-beige);
    transform: translateY(-3px);
    border-color: var(--golden-beige);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

/* ================================
   HERO VISUAL - INTERACTIVE
   ================================ */

.hero-visual {
    position: relative;
    animation: slideInRight 1s var(--bounce-ease);
    text-align: right;
}

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

.video-preview-container {
    position: relative;
    perspective: 1000px;
}

.video-preview {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 2rem;
    border: 3px solid var(--golden-beige);
    box-shadow: var(--hero-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--bounce-ease);
    overflow: hidden;
    position: relative;
}

.video-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(196, 155, 122, 0.2) 0%, transparent 50%);
    animation: previewGlow 4s ease-in-out infinite;
}

@keyframes previewGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.video-preview:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(184, 134, 11, 0.4);
}

.preview-placeholder {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.preview-play-button {
    width: 80px;
    height: 80px;
    background: var(--cta-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: all 0.3s var(--bounce-ease);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.preview-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.5);
}

.play-icon {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.preview-text {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.floating-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ui-element {
    position: absolute;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(196, 155, 122, 0.3);
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    color: var(--deep-brown);
    box-shadow: var(--card-shadow);
    animation: uiFloat 3s ease-in-out infinite;
}

.prompt-box {
    top: -2rem;
    left: -2rem;
    max-width: 200px;
    animation-delay: 0s;
}

.model-selector {
    top: 50%;
    right: -3rem;
    animation-delay: -1s;
}

.progress-bar {
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    animation-delay: -2s;
}

@keyframes uiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.typing-animation::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.model-badge {
    background: var(--accent-gold);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.progress-fill {
    height: 4px;
    background: var(--premium-gradient);
    border-radius: 2px;
    animation: progressFill 3s linear infinite;
    margin-bottom: 0.5rem;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ================================
   SCROLL INDICATOR
   ================================ */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--warm-gray);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--golden-beige);
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--golden-beige);
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features-section {
    padding: 8rem 0;
    background: var(--soft-white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--cream-white), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--premium-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--cream-white);
    border: 2px solid rgba(196, 155, 122, 0.2);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s var(--bounce-ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warm-beige);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--golden-beige);
    box-shadow: var(--hover-shadow);
}

.feature-card:hover::before {
    background: var(--premium-gradient);
    height: 6px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================
   SHOWCASE SECTION
   ================================ */

.showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--warm-beige) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-item {
    background: var(--cream-white);
    border-radius: 2rem;
    overflow: hidden;
    border: 2px solid rgba(196, 155, 122, 0.2);
    transition: all 0.4s var(--bounce-ease);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.showcase-video {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.video-thumbnail-1 {
    background-image: url('../demo/demo-thumb-bike.jpg');
    background-size: cover;
    background-position: center;
}

.video-thumbnail-2 {
    background-image: url('../demo/demo-thumb-dino.jpg');
    background-size: cover;
    background-position: center;
}

.video-thumbnail-3 {
    background-image: url('../demo/demo-thumb-godzilla.jpg');
    background-size: cover;
    background-position: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.showcase-item:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--cta-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s var(--bounce-ease);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-info h4 {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.showcase-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.showcase-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(253, 248, 240, 0.8);
    border-radius: 2rem;
    border: 2px solid rgba(196, 155, 122, 0.2);
}

.showcase-cta p {
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta-section {
    padding: 8rem 0;
    background: var(--hero-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(196, 155, 122, 0.1) 0%, transparent 50%);
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle strong {
    color: var(--accent-gold);
}

.mega-cta {
    background: var(--premium-gradient);
    color: white;
    padding: 2rem 3rem;
    border-radius: 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--hero-shadow);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mega-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    transition: all 0.8s ease;
}

.mega-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px rgba(184, 134, 11, 0.5);
}

.mega-cta:hover::before {
    left: 100%;
}

.cta-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 0.3rem;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

/* ================================
   FOOTER
   ================================ */

.landing-footer {
    background: var(--deep-brown);
    color: var(--cream-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--warm-beige);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--golden-beige);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--warm-beige);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 155, 122, 0.2);
    color: var(--warm-gray);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 1rem 2rem; /* Reduziertes Padding */
        text-align: center;
        overflow: hidden; /* Verhindert horizontales Scrollen */
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem); /* Bessere mobile Skalierung */
        line-height: 1.2;
        word-wrap: normal;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        flex: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    .primary-cta {
        order: 1;
    }

    .secondary-cta {
        order: 2;
    }

    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }

    .feature-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Visual Section mobile */
    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }

    .floating-ui-elements {
        display: none; /* Verstecke auf Mobile für bessere Performance */
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-container {
        padding: 6rem 0.5rem 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-cta {
        margin-bottom: 1.5rem;
    }

    .cta-button {
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .mega-cta {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
}

/* ================================
   PERFORMANCE OPTIMIZATIONS
   ================================ */

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Preload hover states */
.cta-button:hover,
.feature-card:hover,
.showcase-item:hover {
    will-change: transform;
}

/* ================================
   PRICING SECTION - CONVERSION OPTIMIERT
   ================================ */

.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--primary-beige) 50%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 25% 25%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(196, 155, 122, 0.05) 0%, transparent 50%);
    animation: pricingGlow 10s ease-in-out infinite;
}

@keyframes pricingGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--warm-gray);
}

.toggle-switch {
    position: relative;
    background: var(--warm-beige);
    border-radius: 2rem;
    padding: 0.3rem;
    display: flex;
    box-shadow: var(--inner-shadow);
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-switch label {
    padding: 0.8rem 1.5rem;
    border-radius: 1.7rem;
    cursor: pointer;
    transition: all 0.3s var(--smooth-ease);
    font-weight: 600;
    color: var(--warm-gray);
    position: relative;
    z-index: 2;
    margin: 0;
}

.toggle-switch input[type="radio"]:checked + label {
    color: var(--deep-brown);
}

.toggle-slider {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    height: calc(100% - 0.6rem);
    width: calc(50% - 0.15rem);
    background: var(--card-gradient);
    border-radius: 1.7rem;
    transition: transform 0.4s var(--bounce-ease);
    box-shadow: var(--soft-shadow);
    z-index: 1;
}

.toggle-switch input[type="radio"]:nth-child(3):checked ~ .toggle-slider {
    transform: translateX(100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--card-gradient);
    border: 2px solid rgba(196, 155, 122, 0.2);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--bounce-ease);
    overflow: hidden;
    cursor: pointer;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warm-beige);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--golden-beige);
    box-shadow: var(--hover-shadow);
}

.pricing-card:hover::before {
    background: var(--premium-gradient);
    height: 6px;
}

/* Popular Card Special Styling */
.popular-card {
    border-color: var(--accent-gold);
    background: linear-gradient(145deg, #fff9f0 0%, var(--primary-beige) 100%);
    transform: scale(1.05);
    z-index: 3;
}

.popular-card::before {
    background: var(--accent-gold);
    height: 6px;
}

.popular-card:hover {
    transform: translateY(-10px) scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    z-index: 4;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pricingIconFloat 3s ease-in-out infinite;
}

@keyframes pricingIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--warm-gray);
    font-size: 1rem;
}

.pricing-amount {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(196, 155, 122, 0.2);
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-detail {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-weight: 500;
}

.value-proposition {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.price-per-video {
    font-size: 0.9rem;
    color: var(--dark-beige);
    font-weight: 600;
}

.savings-badge {
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    animation: savingsPulse 2s ease-in-out infinite;
}

.starter-savings {
    background: linear-gradient(135deg, #10b981, #059669);
}

.popular-savings {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.professional-savings {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

@keyframes savingsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.premium-feature .feature-icon {
    background: var(--premium-gradient);
    animation: premiumGlow 2s ease-in-out infinite;
}

@keyframes premiumGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(184, 134, 11, 0.5); }
    50% { box-shadow: 0 0 20px rgba(184, 134, 11, 0.5); }
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s var(--bounce-ease);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.starter-cta {
    background: var(--cta-gradient);
    color: white;
    box-shadow: var(--soft-shadow);
}

.popular-cta {
    background: var(--premium-gradient);
    color: white;
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.4);
}

.professional-cta {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: all 0.6s ease;
}

.pricing-cta:hover {
    transform: translateY(-4px) scale(1.02);
}

.pricing-cta:hover::before {
    left: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.pricing-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

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

/* FAQ Section */
.pricing-faq {
    margin-bottom: 4rem;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--cream-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(196, 155, 122, 0.2);
    transition: all 0.3s var(--smooth-ease);
}

.faq-item:hover {
    border-color: var(--golden-beige);
    transform: translateY(-2px);
}

.faq-item h4 {
    color: var(--deep-brown);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--warm-gray);
    line-height: 1.5;
}

/* Trust Section */
.pricing-trust {
    text-align: center;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 6rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .popular-card {
        transform: scale(1);
        order: -1; /* Popular card zuerst auf Mobile */
    }

    .popular-card:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }

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

    .pricing-cta {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

/* ================================
   PRICING CALCULATOR & INTRO
   ================================ */

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-explanation {
    background: var(--card-gradient);
    border: 2px solid rgba(196, 155, 122, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-explanation h3 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-explanation p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.pricing-calculator {
    background: var(--cream-white);
    border: 2px solid rgba(196, 155, 122, 0.2);
    border-radius: 2rem;
    padding: 2.5rem;
    margin: 4rem auto;
    max-width: 700px;
    text-align: center;
}

.pricing-calculator h3 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-calculator p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ================================
   IMPROVED SLIDER STYLING
   ================================ */

.calculator-input input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--accent-gold) 0%, var(--accent-gold) var(--range-progress, 10%), var(--warm-beige) var(--range-progress, 25%), var(--warm-beige) 100%);
    outline: none;
    margin-bottom: 1rem;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.calculator-input input[type="range"]::-webkit-slider-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: transparent;
    border-radius: 4px;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cta-gradient);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid white;
    position: relative;
    z-index: 2;
}

.calculator-input input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
}

.calculator-input input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.3);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.8);
}

/* Firefox */
.calculator-input input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: var(--warm-beige);
    border-radius: 4px;
    border: none;
}

.calculator-input input[type="range"]::-moz-range-progress {
    background: var(--accent-gold);
    height: 8px;
    border-radius: 4px;
}

.calculator-input input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cta-gradient);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.calculator-input input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
}

/* IE/Edge */
.calculator-input input[type="range"]::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.calculator-input input[type="range"]::-ms-fill-lower {
    background: var(--accent-gold);
    border-radius: 4px;
}

.calculator-input input[type="range"]::-ms-fill-upper {
    background: var(--warm-beige);
    border-radius: 4px;
}

.calculator-input input[type="range"]::-ms-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cta-gradient);
    cursor: pointer;
    border: 3px solid white;
    margin-top: 1px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

/* Active State Styling */
.calculator-input input[type="range"]:focus {
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.2);
    border-radius: 4px;
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    .calculator-input input[type="range"]::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }

    .calculator-input input[type="range"]::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }

    .calculator-input input[type="range"]::-ms-thumb {
        width: 32px;
        height: 32px;
    }
}

/* Enhanced Visual Feedback */
.calculator-value {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.calculator-value.updating {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.5);
}

@media (min-width: 769px) {
    .pricing-features {
        height: 575px;
    }
}

/* Mobile Calculator */
@media (max-width: 768px) {
    .pricing-benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    #site-logo {
        display: none;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .pricing-calculator {
        padding: 2rem 1.5rem;
    }
}

/* Updated Savings Calculations */
.popular-savings {
    background: linear-gradient(135deg, #10b981, #059669);
}

.professional-savings {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
