/* Moderner 2026-Style Showcase Slider */
.modern-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1200px;
}
.slider-track {
    width: 100%;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 12px 48px rgba(0,212,255,0.10), 0 2px 24px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, #1a1e23 60%, #232b36 100%);
}
.slider-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: scale(0.96) translateY(30px) rotateY(8deg);
    transition: opacity 1.2s cubic-bezier(.7,.2,.2,1), transform 0.9s cubic-bezier(.7,.2,.2,1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}
.slider-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0) rotateY(0deg);
    z-index: 2;
    pointer-events: auto;
}
.slider-slide img {
    box-sizing: border-box;
    width: 100%;
    max-width: 700px;
    height: 370px;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.12), transparent 52%), #111827;
    margin-bottom: 0;
    transition: box-shadow 0.3s;
}
.slider-slide.active img {
    box-shadow: 0 16px 48px rgba(0,212,255,0.13), 0 8px 32px rgba(0,0,0,0.18);
}
.slider-overlay {
    width: 100%;
    background: linear-gradient(90deg, rgba(0,212,255,0.12) 0%, rgba(0,0,0,0.82) 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 18px 32px;
    border-radius: 0 0 18px 18px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    position: relative;
    z-index: 3;
    margin-top: -4px;
}
.slider-dots {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
}
.slider-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    opacity: 0.35;
    cursor: pointer;
    transition: opacity 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,212,255,0.10);
    outline: none;
}
.slider-dot.active, .slider-dot:focus {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(0,212,255,0.18);
}
.slider-dot:hover {
    opacity: 0.7;
}
/* Moderner YouTube-Embed für How-to-Tutorial */
.howto-youtube-embed {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.howto-youtube-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #111;
    outline: none;
    transition: box-shadow 0.3s;
}
.howto-youtube-embed iframe:focus, .howto-youtube-embed iframe:hover {
    box-shadow: 0 12px 40px rgba(0,212,255,0.18), 0 8px 32px rgba(0,0,0,0.18);
}
/* Moderner Video-Player für How-to-Tutorial */
.howto-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.howto-video-player {
    max-width: 700px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #111;
    outline: none;
    transition: box-shadow 0.3s;
}
.howto-video-player:focus, .howto-video-player:hover {
    box-shadow: 0 12px 40px rgba(0,212,255,0.18), 0 8px 32px rgba(0,0,0,0.18);
}
/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #ff6b35;
    --secondary-dark: #cc5500;
    --accent-color: #ffd700;
    --accent-dark: #ffb300;
    --success-color: #00c853;
    --error-color: #f44336;
    --warning-color: #ff9800;

    --light-bg: #ffffff;
    --light-secondary: #f8f9fa;
    --light-tertiary: #e9ecef;
    --card-bg: #ffffff;
    --card-hover: #f8f9fa;
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-bg) 0%, var(--light-secondary) 100%);
    
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 15px rgba(0, 212, 255, 0.2);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* 2025 Modern Features */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5);
    --morphism-blur: blur(20px);
    --navbar-height: 80px;
    --anchor-offset: calc(var(--navbar-height) + 18px);
}

html {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    scroll-padding-top: var(--anchor-offset);
    touch-action: pan-y pinch-zoom;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
    font-weight: 400;
    scroll-behavior: smooth;
}

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

/* Modern Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #343D4B;
    backdrop-filter: var(--morphism-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: #2a323d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--neon-glow));
}

.logo-image {
    width: 140px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Mobile Actions - auf Desktop ausblenden */
.mobile-actions {
    display: none;
}

.hamburger {
    align-items: center;
    background: transparent;
    border: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger:focus-visible,
.nav-menu a:focus-visible {
    outline: 3px solid rgba(0, 212, 255, 0.72);
    outline-offset: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Hero Section - Complete Redesign */
.hero {
    min-height: 100vh;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

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

/* Hero Left Side */
.hero-left {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    backdrop-filter: var(--morphism-blur);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.hero-badge i {
    color: var(--accent-color);
    animation: spin 3s linear infinite;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    color: white;
    margin-bottom: 10px;
}

.hero-title-accent {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 560px;
}

.hero-proof {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-proof span {
    align-items: center;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    font-size: 0.94rem;
    font-weight: 700;
    gap: 8px;
    padding: 9px 13px;
    backdrop-filter: blur(16px);
}

.hero-proof i {
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--morphism-blur);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right Side */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.app-showcase {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-screen {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.screen-main {
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 3px solid var(--primary-color);
}

.showcase-screen:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 0 70px rgba(0, 212, 255, 0.2);
    z-index: 10;
}

.screen-main:hover {
    box-shadow: 
        0 45px 110px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 212, 255, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    border-color: var(--primary-dark);
    transform: translateX(-50%) rotateX(1deg) rotateY(-0.5deg) scale(1.05);
}

.showcase-screen img {
    height: 80%;
    display: block;
    transition: var(--transition);
    margin-bottom: -230px;
    margin-top: -100px;
}

.screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.showcase-screen:hover .screen-overlay {
    opacity: 1;
}

/* Single Screen Layout */
.screen-main {
    width: 600px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(2deg) rotateY(-1deg);
    z-index: 3;
    perspective: 1000px;
    margin-bottom: 20px;
}

.screen-secondary,
.screen-tertiary {
    display: none;
}

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

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    backdrop-filter: var(--morphism-blur);
    transition: var(--transition);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

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

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.hero-badge i {
    color: var(--accent-color);
    animation: spin 3s linear infinite;
}

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

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-title-line {
    display: block;
    color: white;
    transition: var(--transition);
}

.hero-title-line:hover {
    transform: scale(1.02);
}

.glow-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: flex-start;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: var(--neon-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: slideInLeft 0.8s ease-out 1s both;
}

/* Modern Buttons with 2025 Effects */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    backdrop-filter: var(--morphism-blur);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-button);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--neon-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

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

/* Modern Section Styles */
section {
    padding: 120px 0;
    position: relative;
    scroll-margin-top: var(--anchor-offset);
}

footer {
    scroll-margin-top: var(--anchor-offset);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Features Section */
.features {
    background: var(--light-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
}

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

.feature-showcase {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    margin: 54px 0 38px;
    position: relative;
    z-index: 2;
}

.feature-showcase-copy {
    max-width: 610px;
}

.feature-eyebrow {
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 16px;
}

.feature-showcase-copy h3 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
    margin-bottom: 20px;
}

.feature-showcase-copy p {
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.feature-highlight-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.feature-highlight-list span {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 212, 255, 0.16);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    color: var(--text-primary);
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.feature-highlight-list i {
    color: var(--primary-color);
    flex: 0 0 auto;
    margin-top: 3px;
}

.feature-demo-reel {
    background: #0f172a;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(8, 22, 45, 0.28), 0 0 44px rgba(0, 212, 255, 0.12);
    overflow: hidden;
    position: relative;
}

.demo-reel-topbar {
    align-items: center;
    background: rgba(8, 16, 32, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    gap: 8px;
    min-height: 52px;
    padding: 0 18px;
}

.demo-reel-topbar span {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: block;
    height: 10px;
    width: 10px;
}

.demo-reel-topbar span:first-child {
    background: #ff5f57;
}

.demo-reel-topbar span:nth-child(2) {
    background: #ffbd2e;
}

.demo-reel-topbar span:nth-child(3) {
    background: #28c840;
}

.demo-reel-topbar strong {
    font-size: 0.9rem;
    margin-left: 10px;
}

.demo-reel-window {
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 212, 255, 0.16), transparent 38%),
        linear-gradient(135deg, #111827 0%, #0d1f3d 100%);
    height: 430px;
    overflow: hidden;
    position: relative;
}

.demo-shot {
    animation: featureDemoReel 25s infinite;
    inset: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    transform: translateX(24px) scale(0.98);
}

.demo-shot-two {
    animation-delay: 5s;
}

.demo-shot-three {
    animation-delay: 10s;
}

.demo-shot-four {
    animation-delay: 15s;
}

.demo-shot-five {
    animation-delay: 20s;
}

.demo-shot img {
    box-sizing: border-box;
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 28px 30px 84px;
    width: 100%;
}

.demo-shot figcaption {
    align-items: center;
    background: rgba(3, 10, 23, 0.86);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 999px;
    bottom: 26px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    gap: 12px;
    left: 28px;
    padding: 12px 16px;
    position: absolute;
}

.demo-shot figcaption span {
    background: var(--gradient-primary);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.78rem;
    justify-content: center;
    min-width: 38px;
    padding: 5px 9px;
}

@keyframes featureDemoReel {
    0%, 16% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    20%, 100% {
        opacity: 0;
        transform: translateX(-24px) scale(0.98);
    }
}

.feature-flow {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 28px;
    position: relative;
    z-index: 2;
}

.feature-flow-step {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 212, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(13, 31, 61, 0.08);
    overflow: hidden;
    padding: 16px;
    position: relative;
    transition: var(--transition);
}

.feature-flow-step:hover {
    border-color: rgba(0, 212, 255, 0.42);
    box-shadow: 0 24px 58px rgba(13, 31, 61, 0.14);
    transform: translateY(-6px);
}

.feature-flow-number {
    background: var(--gradient-primary);
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    left: 28px;
    padding: 8px 12px;
    position: absolute;
    top: 28px;
    z-index: 3;
}

.feature-flow-shot {
    aspect-ratio: 4 / 3;
    background: #0f172a;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
}

.feature-flow-step-wide .feature-flow-shot {
    aspect-ratio: 16 / 10;
}

.feature-flow-shot img {
    box-sizing: border-box;
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    width: 100%;
}

.feature-flow-step h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-flow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.feature-proof-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}

.feature-proof-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    display: grid;
    gap: 8px;
    padding: 20px;
}

.feature-proof-item i {
    color: var(--primary-color);
    font-size: 1.35rem;
}

.feature-proof-item strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.feature-proof-item span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
    .demo-shot {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .demo-shot-one {
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .feature-showcase-copy {
        max-width: 820px;
    }

    .feature-demo-reel {
        max-width: 860px;
        width: 100%;
    }

    .feature-flow,
    .feature-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .feature-showcase {
        gap: 30px;
        margin-top: 38px;
    }

    .feature-showcase-copy h3 {
        font-size: 2rem;
    }

    .feature-showcase-copy p {
        font-size: 1rem;
    }

    .feature-highlight-list span {
        padding: 13px 14px;
    }

    .feature-demo-reel {
        border-radius: 16px;
    }

    .demo-reel-window {
        height: 340px;
    }

    .demo-shot img {
        padding: 18px 16px 76px;
    }

    .demo-shot figcaption {
        bottom: 18px;
        left: 16px;
        right: 16px;
    }

    .feature-flow,
    .feature-proof-grid {
        grid-template-columns: 1fr;
    }

    .feature-flow-step {
        padding: 14px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: var(--morphism-blur);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

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

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);

}



.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--neon-glow);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-image {
    margin: 20px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.feature-card:hover .feature-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover .feature-image img {
    filter: brightness(1.05);
}

.feature-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.feature-list li {
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: var(--transition);
}

.feature-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.feature-list li:hover::before {
    transform: translateX(3px);
    color: var(--accent-color);
}

/* How it Works Section */
.how-it-works {
    background: var(--light-bg);
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Modern How-To Steps */
.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.step-feature {
    background: var(--light-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-feature:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.comparison-card.old-way {
    border-color: var(--error-color);
}

.comparison-card.new-way {
    border-color: var(--success-color);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.comparison-header i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comparison-card.old-way .comparison-header i {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

.comparison-card.new-way .comparison-header i {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success-color);
}

.comparison-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list i.fa-check {
    color: var(--success-color);
    font-size: 1.1rem;
}

.comparison-list i.fa-times {
    color: var(--error-color);
    font-size: 1.1rem;
}

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

.game-rules h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rule-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.rule-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.rule-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.rule-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modern Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--morphism-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    color: white;
    z-index: 10000;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: var(--success-color);
}

.notification-error i {
    color: var(--error-color);
}

.notification-info i {
    color: var(--primary-color);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: var(--neon-glow);
}

/* Floating Particles */
.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: floatUp 5s linear infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Rainbow Animation for Konami Code */
@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Mobile Navigation Improvements */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Pricing Section */
.pricing {
    background: var(--light-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.02) 50%, transparent 70%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount {
    background: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

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

.pricing-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: var(--morphism-blur);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.pricing-card:hover .amount {
    transform: scale(1.1);
    text-shadow: var(--neon-glow);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.pricing-features i.fa-check {
    color: var(--success-color);
}

.pricing-features i.fa-times {
    color: var(--error-color);
}

.pricing-action-btn {
    margin: 4px 0 28px;
    min-height: 58px;
}

.pricing-card .btn-secondary.pricing-action-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 153, 204, 0.3);
    box-shadow: 0 14px 34px rgba(0, 153, 204, 0.12);
    color: var(--primary-dark);
}

.pricing-card .btn-secondary.pricing-action-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
}

.pricing-card .btn-primary.pricing-action-btn {
    box-shadow: 0 16px 38px rgba(0, 153, 204, 0.28);
}

/* Modern Download Section */
.download {
    background: var(--light-bg);
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%, rgba(255, 107, 53, 0.02) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

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

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.download-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-title {
    font-weight: 600;
    font-size: 1rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.download-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-secondary);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-badge i {
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-badge:hover i {
    color: white;
}

.app-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-device {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: var(--morphism-blur);
    transition: var(--transition);
}

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

.device-screen {
    background: #2a2a2a;
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 300px;
    height: 400px;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: #333;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.app-title {
    font-weight: 600;
    color: white;
}

.app-status {
    background: var(--success-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #2a2a2a;
}

.tournament-preview {
    text-align: center;
    padding: 20px;
    background: #333;
    border-radius: var(--border-radius);
}

.tournament-title {
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.player-count {
    color: #ccc;
    font-size: 0.9rem;
}

.quick-stats {
    display: flex;
    gap: 15px;
}

.stat-mini {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: #333;
    border-radius: var(--border-radius);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Contact Section */
.contact {
    background: var(--light-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.02) 50%, transparent 70%);

}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    backdrop-filter: var(--morphism-blur);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--neon-glow);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: var(--morphism-blur);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--light-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Contact Message Styles */
.contact-message {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid;
    animation: slideIn 0.5s ease-out;
}

.contact-message.success {
    border-left-color: var(--success-color);
    background: rgba(0, 200, 83, 0.1);
}

.contact-message.error {
    border-left-color: var(--error-color);
    background: rgba(244, 67, 54, 0.1);
}

.contact-message .message-icon {
    font-size: 1.5rem;
}

.contact-message.success .message-icon {
    color: var(--success-color);
}

.contact-message.error .message-icon {
    color: var(--error-color);
}

.contact-message .message-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
}

.contact-message.success .message-text {
    color: var(--success-color);
}

.contact-message.error .message-text {
    color: var(--error-color);
}

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

/* Modern Footer */
.footer {
    background: var(--light-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.01) 0%, transparent 50%, rgba(255, 107, 53, 0.01) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 80px;
        flex-direction: column;
        background: rgba(52, 61, 75, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        width: auto;
        max-width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        visibility: hidden;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: clamp(18px, 4vh, 28px) 20px 24px;
        gap: 6px;
        justify-content: flex-start;
        align-items: center;
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
        pointer-events: none;
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.08rem;
        padding: 13px 0;
        margin: 0;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.5s ease forwards;
    }
    
    .nav-menu.active a {
        animation-delay: calc(var(--item-index, 0) * 0.1s);
    }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(10px);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Mobile Actions - nur im mobilen Menü sichtbar */
    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
        width: 100%;
        max-width: 300px;
        padding: 10px 0 0;
    }
    
    .mobile-actions .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
    }
    
    .mobile-actions .btn-outline {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .mobile-actions .btn-outline:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .mobile-actions .btn-primary {
        background: var(--gradient-primary);
        border: none;
        color: white;
    }
    
    .mobile-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }
    
    /* Desktop Actions - nur auf Desktop sichtbar */
    .nav-actions {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Visual - App Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 600px;
}

.hero-app-showcase {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screens {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 212, 255, 0.1);
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.screen img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    
}

.screen-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.screen:hover .screen-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.screen:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2), 0 0 60px rgba(0, 212, 255, 0.2);
    z-index: 10;
}

.screen:hover img {
    filter: brightness(1.05);
}

/* Single Screen Layout - Hero Visual */
.screen-1 {
    width: 400px;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(2deg) rotateY(-1deg);
    z-index: 3;
    perspective: 1000px;
}

.screen-2,
.screen-3 {
    display: none;
}

.app-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 153, 204, 0.08) 0%, transparent 50%);
    border-radius: 50%;
    z-index: -1;
    animation: subtlePulse 10s ease-in-out infinite;
    filter: blur(15px);
}

@keyframes subtlePulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1.05);
    }
}



/* Responsive adjustments for hero visual */
@media (max-width: 1200px) {
    .hero-app-showcase {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
    
    .screen-1 {
        width: 350px;
        height: auto;
    }
    
    .app-glow {
        width: 400px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .hero-proof {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-right {
        display: none;
    }
    
    /* Mobile Screenshot Layout */
    .screen-main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        align-items: flex-start;
        min-height: auto;
        padding: 112px 0 96px;
    }

    .hero-container {
        width: 100%;
    }

    .hero-badge {
        line-height: 1.35;
        margin-bottom: 20px;
        max-width: 100%;
        padding: 10px 14px;
        white-space: normal;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.25rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .hero-proof {
        gap: 8px;
        margin-bottom: 28px;
    }

    .hero-proof span {
        font-size: 0.82rem;
        padding: 8px 10px;
    }

    .hero-stats {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 28px;
    }

    .stat-card {
        min-width: 0;
        padding: 10px 6px;
    }

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

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

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

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

    #cookieBanner {
        font-size: 0.92rem !important;
        line-height: 1.35 !important;
        padding: 0.85rem 1rem !important;
    }

    #cookieBanner span {
        display: block;
    }

    #cookieBanner button {
        display: block !important;
        margin: 0.75rem auto 0 !important;
        max-width: 170px;
        width: 100%;
    }
}

/* Custom Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.custom-toast {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    margin-bottom: 10px;
    min-width: 350px;
    max-width: 500px;
    box-shadow: var(--shadow-card);
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: auto;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.success {
    border-left: 4px solid var(--success-color);
    background: rgba(0, 200, 83, 0.1);
}

.custom-toast.error {
    border-left: 4px solid var(--error-color);
    background: rgba(244, 67, 54, 0.1);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.success .toast-icon {
    background: rgba(0, 200, 83, 0.2);
    color: var(--success-color);
}

.error .toast-icon {
    background: rgba(244, 67, 54, 0.2);
    color: var(--error-color);
}

.toast-message {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
    border-radius: 4px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

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

/* Mobile Toast Styles */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .custom-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Mobile landing page polish */
@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 42px;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.65rem);
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .section-subtitle {
        font-size: 1.03rem;
        line-height: 1.55;
        max-width: 34rem;
    }

    .feature-showcase {
        gap: 28px;
        margin: 34px 0 30px;
    }

    .feature-showcase-copy h3 {
        font-size: clamp(1.85rem, 7vw, 2.35rem);
        line-height: 1.1;
    }

    .feature-showcase-copy p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .feature-highlight-list {
        gap: 10px;
        margin-top: 22px;
    }

    .feature-highlight-list span {
        padding: 12px 14px;
    }

    .feature-demo-reel {
        border-radius: 16px;
    }

    .demo-reel-topbar {
        min-height: 46px;
        padding: 0 14px;
    }

    .demo-reel-window {
        height: 310px;
    }

    .demo-shot img {
        padding: 16px 14px 68px;
    }

    .demo-shot figcaption {
        bottom: 16px;
        left: 14px;
        right: 14px;
        padding: 10px 12px;
    }

    .feature-flow {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
        margin: 8px 0 26px;
        overflow-x: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .feature-flow-step {
        max-width: 100%;
        padding: 14px;
        width: 100%;
    }

    .feature-flow-step:hover {
        transform: none;
    }

    .feature-flow-shot {
        margin-bottom: 14px;
    }

    .feature-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .feature-proof-item {
        padding: 16px;
    }

    .feature-proof-item strong,
    .feature-proof-item span {
        font-size: 0.9rem;
    }

    .howto-video-wrapper {
        margin-bottom: 28px;
    }

    .howto-youtube-embed iframe {
        border-radius: 14px;
    }

    .how-it-works-content,
    .how-to-steps {
        gap: 18px;
    }

    .step-item {
        display: block;
        padding: 24px 22px;
    }

    .step-number {
        display: inline-block;
        font-size: 2.35rem;
        margin-bottom: 16px;
        min-width: 0;
        text-align: left;
    }

    .step-icon {
        height: 52px;
        margin-bottom: 16px;
        width: 52px;
    }

    .step-content h3 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .step-content p {
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .step-features {
        gap: 8px;
    }

    .step-feature {
        border-radius: 999px;
        font-size: 0.86rem;
        padding: 7px 12px;
    }

    .comparison-grid,
    .rules-grid {
        gap: 18px;
    }

    .comparison-card,
    .rule-item {
        padding: 24px 20px;
    }

    .pricing-grid {
        gap: 18px;
    }

    .pricing-card {
        padding: 30px 26px;
    }

    .pricing-header h3 {
        font-size: 1.55rem;
    }

    .price {
        margin-bottom: 22px;
    }

    .amount {
        font-size: clamp(2.7rem, 15vw, 3.25rem);
    }

    .pricing-action-btn {
        margin-bottom: 20px;
        min-height: 52px;
    }

    .pricing-features {
        margin-bottom: 18px;
    }

    .pricing-features li {
        justify-content: flex-start;
        padding: 10px 0;
        text-align: left;
    }

    .download {
        overflow-x: hidden;
    }

    .download-content {
        gap: 30px;
        justify-items: stretch;
    }

    .download-text {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .download-text h2 {
        font-size: clamp(2.05rem, 10vw, 2.4rem);
        line-height: 1.12;
        margin-bottom: 18px;
        overflow-wrap: anywhere;
    }

    .download-text p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .download-buttons {
        gap: 12px;
    }

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

    .download-features {
        gap: 10px;
        justify-content: center;
        margin-top: 22px;
    }

    .feature-badge {
        font-size: 0.86rem;
        padding: 9px 12px;
    }

    .showcase-device {
        margin: 0 auto;
        max-width: 320px;
        padding: 14px;
        width: 100%;
    }

    .device-screen {
        height: 340px;
        width: 100%;
    }

    .contact-content {
        gap: 28px;
    }

    .contact-info {
        gap: 12px;
        max-width: none;
    }

    .contact-card {
        align-items: center;
        display: flex;
        gap: 14px;
        padding: 18px;
        text-align: left;
    }

    .contact-icon {
        flex: 0 0 auto;
        height: 48px;
        margin-bottom: 0;
        width: 48px;
    }

    .contact-form {
        padding: 24px 20px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
    }

    .footer {
        padding: 54px 0 20px;
    }

    .footer-content {
        gap: 24px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: clamp(1.9rem, 8.5vw, 2.28rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-eyebrow,
    .download-badge {
        font-size: 0.86rem;
        padding: 9px 13px;
    }

    .feature-showcase-copy h3 {
        font-size: clamp(1.72rem, 8vw, 2.1rem);
    }

    .feature-proof-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .download-text h2 {
        font-size: clamp(2rem, 10vw, 2.28rem);
    }

    .contact-card {
        border-radius: 16px;
    }
}

/* Modern product hero concept */
.hero {
    align-items: center;
    background:
        linear-gradient(115deg, rgba(3, 10, 23, 0.98) 0%, rgba(11, 24, 43, 0.98) 52%, rgba(17, 33, 54, 0.98) 100%);
    color: #fff;
    min-height: 100svh;
    padding: var(--navbar-height) 0 56px;
}

.hero-background-image {
    background:
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
    background-size: 86px 86px;
    opacity: 0.42;
}

.hero-background-image::before {
    background:
        linear-gradient(115deg, rgba(0, 212, 255, 0.12), transparent 36%),
        linear-gradient(245deg, rgba(255, 107, 53, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(3, 10, 23, 0.22), rgba(3, 10, 23, 0.82));
}

.hero-particles {
    animation: none;
    background:
        linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.08) 45%, transparent 70%),
        linear-gradient(315deg, transparent 0%, rgba(255, 255, 255, 0.05) 42%, transparent 72%);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.34;
}

.hero-container {
    gap: clamp(42px, 6vw, 86px);
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    max-width: 1320px;
    padding: 0 48px;
    width: 100%;
}

.hero-left {
    max-width: 650px;
}

.hero-badge {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.32);
    color: #b8f4ff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 24px;
    padding: 10px 15px;
}

.hero-badge i {
    animation: none;
    color: #ffd84d;
}

.hero-title {
    font-size: clamp(3.35rem, 5vw, 4.9rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.92;
    margin-bottom: 24px;
}

.hero-title-main {
    color: #fff;
    margin-bottom: 10px;
}

.hero-title-accent {
    background: linear-gradient(135deg, #35e3ff 0%, #00a9dc 62%, #6de8ff 100%);
    background-clip: text;
    text-shadow: none;
    -webkit-background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-proof {
    gap: 9px;
    margin-bottom: 34px;
}

.hero-proof span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    padding: 8px 12px;
}

.hero-actions .btn {
    border-radius: 14px;
    min-height: 54px;
}

.hero-trial-note {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 0.92rem;
    gap: 10px;
    line-height: 1.45;
    margin-top: 18px;
    max-width: 530px;
}

.hero-trial-note i {
    align-items: center;
    background: rgba(21, 226, 138, 0.12);
    border: 1px solid rgba(21, 226, 138, 0.24);
    border-radius: 50%;
    color: #2df0a0;
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.hero-trial-note strong {
    color: #fff;
}

.hero-right {
    align-items: center;
    display: flex;
    justify-content: center;
}

.hero-product-stage {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        rgba(7, 16, 31, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 212, 255, 0.12) inset;
    padding: 18px;
    position: relative;
    width: min(100%, 700px);
}

.hero-stage-label {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0 4px;
}

.hero-stage-label strong {
    color: #fff;
    font-size: 0.95rem;
}

.hero-stage-label em {
    font-size: 0.88rem;
    font-style: normal;
}

.hero-live-dot {
    background: #15e28a;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(21, 226, 138, 0.14);
    display: inline-block;
    height: 9px;
    width: 9px;
}

.hero-product-stage .modern-slider {
    margin: 0;
    max-width: none;
    min-height: 0;
    width: 100%;
}

.hero-product-stage .slider-track {
    background: linear-gradient(135deg, #08111f 0%, #101a2d 100%);
    border: 1px solid rgba(0, 212, 255, 0.16);
    border-radius: 22px;
    box-shadow: none;
    height: 392px;
}

.hero-product-stage .slider-slide img {
    background: #0a1221;
    box-shadow: none;
    height: 332px;
    padding: 18px;
}

.hero-product-stage .slider-overlay {
    background: linear-gradient(90deg, rgba(3, 10, 23, 0.96), rgba(0, 212, 255, 0.14));
    border-radius: 0 0 20px 20px;
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0;
    padding: 15px 20px;
}

.hero-product-stage .slider-dots {
    gap: 10px;
    margin-top: 14px;
}

.hero-product-stage .slider-dot {
    height: 10px;
    width: 10px;
}

.hero-stage-flow {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
}

.hero-stage-flow span {
    align-items: center;
    background: rgba(3, 10, 23, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 9px 8px;
}

.hero-stage-flow strong {
    color: var(--primary-color);
    font-size: 0.78rem;
}

.pricing-trial-callout {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.11), rgba(21, 226, 138, 0.08)),
        #ffffff;
    border: 1px solid rgba(0, 153, 204, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(13, 31, 61, 0.08);
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin: -34px auto 34px;
    max-width: 980px;
    padding: 18px 20px;
    position: relative;
    z-index: 2;
}

.pricing-trial-icon {
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: #fff;
    display: inline-flex;
    font-size: 1.15rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.pricing-trial-copy {
    display: grid;
    gap: 3px;
}

.pricing-trial-copy strong {
    color: var(--text-primary);
    font-size: 1.08rem;
}

.pricing-trial-copy span {
    color: var(--text-secondary);
    line-height: 1.45;
}

.pricing-trial-callout .btn {
    border-radius: 12px;
    min-height: 48px;
    padding: 13px 18px;
    white-space: nowrap;
}

.faq {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    padding: 96px 0;
}

.faq-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 980px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.65;
}

.footer-link-button,
.cookie-link-button {
    appearance: none;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-align: left;
}

.footer-section .footer-link-button,
.footer-bottom-links .footer-link-button {
    color: var(--text-secondary);
    line-height: 1.4;
    transition: var(--transition);
}

.footer-section .footer-link-button:hover,
.footer-bottom-links .footer-link-button:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom-links .footer-link-button {
    color: var(--text-muted);
    white-space: nowrap;
}

.footer-bottom-links .footer-link-button:hover {
    transform: translateY(-1px);
}

.cookie-link-button {
    color: #ffd700;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        max-width: 820px;
        padding: 0 28px;
        text-align: center;
    }

    .hero-left {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof,
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        min-height: auto;
        padding: 112px 0 46px;
    }

    .hero-container {
        gap: 36px;
        padding: 0 20px;
        text-align: left;
    }

    .hero-left {
        max-width: none;
    }

    .hero-badge {
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(2.75rem, 14vw, 4rem);
        line-height: 0.95;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 32rem;
    }

    .hero-proof {
        justify-content: flex-start;
        margin-bottom: 26px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-trial-note {
        margin-top: 16px;
    }

    .hero-right {
        display: flex;
        width: 100%;
    }

    .hero-product-stage {
        border-radius: 22px;
        padding: 12px;
        width: 100%;
    }

    .hero-stage-label {
        margin-bottom: 10px;
    }

    .hero-stage-label em {
        display: none;
    }

    .hero-product-stage .slider-track {
        border-radius: 16px;
        height: 222px;
    }

    .hero-product-stage .slider-slide img {
        height: 178px;
        padding: 10px;
    }

    .hero-product-stage .slider-overlay {
        border-radius: 0 0 14px 14px;
        font-size: 0.86rem;
        padding: 9px 12px;
    }

    .hero-stage-flow {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-proof {
        display: none;
    }

    .hero-description {
        margin-bottom: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 102px 0 38px;
    }

    .hero-title {
        font-size: clamp(2.12rem, 10.5vw, 2.68rem);
        line-height: 0.98;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-proof span {
        font-size: 0.78rem;
        padding: 7px 9px;
    }

    .hero-actions {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-actions .btn {
        flex: 1 1 0;
        font-size: 0.82rem;
        gap: 8px;
        justify-content: center;
        min-height: 48px;
        padding: 12px 8px;
        width: auto;
    }

    .hero-actions .btn i {
        margin-right: 0;
    }

    .hero-trial-note {
        align-items: center;
        font-size: 0.84rem;
        margin-top: 14px;
    }

    .hero-trial-note i {
        height: 30px;
        width: 30px;
    }

    .hero-product-stage .slider-track {
        height: 178px;
    }

    .hero-product-stage .slider-slide img {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .pricing-trial-callout {
        grid-template-columns: 1fr;
        margin: -18px 0 24px;
        padding: 20px;
        text-align: center;
    }

    .pricing-trial-icon {
        margin: 0 auto;
    }

    .pricing-trial-callout .btn {
        justify-content: center;
        width: 100%;
    }

    .faq {
        padding: 68px 0;
    }

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

    .faq-item {
        border-radius: 14px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .hero-left,
    .hero-right,
    .hero-product-stage,
    .hero-product-stage .modern-slider {
        max-width: 100%;
        min-width: 0;
    }

    .hero-container {
        overflow: hidden;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: clamp(1.95rem, 9vw, 2.32rem);
        line-height: 1.04;
        max-width: 100%;
    }

    .hero-title-main,
    .hero-title-accent {
        max-width: 100%;
        overflow-wrap: break-word;
        white-space: normal;
        word-break: normal;
    }

    .hero-proof {
        flex-wrap: wrap;
        gap: 8px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-proof span {
        flex: 0 1 auto;
        min-width: 0;
        white-space: normal;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .hero-actions .btn {
        min-width: 0;
        white-space: normal;
        width: 100%;
    }

    .hero-trial-note,
    .hero-trial-note span {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .hero-product-stage {
        overflow: hidden;
    }

    #cookieBanner {
        max-width: 100vw;
    }

    #cookieBanner .cookie-link-button {
        display: inline !important;
        margin: 0 !important;
        max-width: none;
        width: auto;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.78rem, 9vw, 2.05rem);
    }
}
