/* ========================================
   BLOXXY - Modern Responsive Stylesheet
   ======================================== */

/* CSS Variables - Premium Agentur-Design */
:root {
    /* Neue Farbpalette – Orange & Blau */
    --primary-color: #FF8A3C;
    --primary-dark: #E9782E;
    --primary-light: #FFE1CC;
    --secondary-color: #2563EB;
    --secondary-dark: #1D4ED8;
    --secondary-light: #DCE7FF;
    --accent-color: #0EA5E9;
    --accent-dark: #0284C7;
    
    --success-color: #10B981;
    --success-dark: #059669;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    
    /* Hochwertige Textfarben */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    
    /* Premium Backgrounds */
    --background-primary: #FAFBFC;
    --background-secondary: #F1F5F9;
    --background-white: #FFFFFF;
    /* Sanfter, rein blauer Hero-Gradient ohne harten Orange-Anteil am unteren Rand */
    --background-gradient: linear-gradient(135deg, #1D4ED8 0%, #2563EB 40%, #0EA5E9 80%, #E0F2FE 100%);
    
    /* Feine Borders */
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Premium Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 32px 64px -12px rgba(0, 0, 0, 0.18);
    
    /* Perfekte Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Smooth Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover:not(.btn):not(.btn-hero-primary):not(.btn-hero-secondary):not(.nav-link):not(.nav-link-app):not(.nav-cta):not(.nav-logo) {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--primary-color);
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 32px;
    color: var(--accent-color);
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-decline {
    background: var(--background-secondary);
    color: var(--text-primary);
}

.cookie-decline:hover {
    background: var(--border-color);
}

.cookie-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: underline;
}

/* Navigation - Premium Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.85;
}

.logo-icon {
    height: 38px;
    width: auto;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-placeholder {
    display: none;
}

.logo-text {
    font-family: 'Orbitron', 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--background-secondary);
}

/* App-Link (Für Schüler) */
.nav-link-app {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link-app:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    color: white;
}

.nav-link-app i {
    font-size: 15px;
}

/* Freeplay Link */
.nav-link-freeplay {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-base);
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    white-space: nowrap;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
    }
}

.nav-link-freeplay:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    color: white;
}

.nav-link-freeplay i {
    font-size: 15px;
}

/* CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(91, 79, 255, 0.25);
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 138, 60, 0.35);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* Hero Section - Premium Design */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--background-gradient);
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 2025: Hero ohne Vollbild-Foto – nur noch als Fallback-Ebene genutzt */
    display: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Etwas aufgehellter Overlay-Verlauf für bessere Lesbarkeit ohne zu dunkel zu wirken */
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.32) 26%, rgba(15, 23, 42, 0.12) 55%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-title .highlight {
    color: var(--accent-color);
    display: block;
    text-shadow: 0 2px 4px rgba(14, 165, 233, 0.15);
    margin-top: 4px;
    font-weight: 800;
}

.hero-title .highlight-orange {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.65;
    margin-bottom: 36px;
    opacity: 0.96;
    font-weight: 400;
    max-width: 580px;
}

.hero-features-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.quick-feature i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Hero-spezifische Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 138, 60, 0.45);
    color: white !important;
}

.btn-hero-primary:hover * {
    color: white !important;
}

.btn-hero-primary i {
    font-size: 18px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    color: white;
}

.btn-hero-secondary i {
    font-size: 18px;
}

.hero-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    opacity: 0.9;
}

.hero-notice i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-image {
    position: relative;
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    /* Device-Frame-Effekt mit dickerem Rahmen */
    border: 8px solid rgba(255, 255, 255, 0.95);
    /* Schatten für Tiefe */
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 40px 100px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-slow);
    opacity: 1;
    /* Hintergrund für den Device-Look */
    background: rgba(255, 255, 255, 0.95);
    padding: 3px;
}

.demo-image:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 45px 110px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.demo-placeholder {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: 50px 40px;
    text-align: center;
    color: white;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
}

.demo-placeholder:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.demo-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 50px;
}

.demo-placeholder h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
}

.demo-placeholder p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.demo-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Wenn GIF vorhanden ist: */
.demo-gif {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.image-placeholder {
    box-shadow: var(--shadow-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--secondary-color);
}

.btn-light:hover {
    background: var(--background-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* Wird nicht mehr verwendet */

.btn-full {
    width: 100%;
}

/* Wird nicht mehr verwendet - durch nav-link-app ersetzt */

/* Section Base Styles - Premium */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FFB366);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 138, 60, 0.35);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Freeplay Banner Section */
.freeplay-banner {
    background: linear-gradient(135deg, #FF8A3C 0%, #FF6B1A 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.freeplay-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.freeplay-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.freeplay-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.freeplay-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
}

.freeplay-text {
    color: white;
}

.freeplay-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.freeplay-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.freeplay-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.freeplay-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.freeplay-feature-item i {
    font-size: 20px;
    color: #FFE5B4;
}

.freeplay-cta {
    text-align: center;
    flex-shrink: 0;
}

.btn-freeplay-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    white-space: nowrap;
    border: 3px solid transparent;
}

.btn-freeplay-primary:hover {
    background: #FFFAF0;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: white;
    color: var(--primary-color);
}

.btn-freeplay-primary i {
    font-size: 22px;
}

.freeplay-hint {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Why Programming Section */
.why-programming {
    background: var(--background-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: none;
}

.why-card:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 12px 28px rgba(255, 138, 60, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Competencies Section */
.competencies-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 100px 0;
    position: relative;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.competency-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.competency-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.competency-highlight {
    border: 2px solid var(--primary-light);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF7F0 100%);
}

.competency-highlight:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(255, 138, 60, 0.2);
}

.competency-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(255, 138, 60, 0.3);
}

.competency-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 700;
}

.competency-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.competency-benefits {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.competency-benefits li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.competency-benefits li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 16px;
}

/* KMK Info Box */
.kmk-info-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
    border: 2px solid var(--secondary-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.kmk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.kmk-text h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.kmk-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.kmk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.kmk-badge {
    background: white;
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.kmk-badge i {
    color: var(--success-color);
}

.kmk-badge:hover {
    background: var(--background-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments for Competencies */
@media (max-width: 768px) {
    .competencies-section {
        padding: 60px 0;
    }

    .competencies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .competency-card {
        padding: 28px;
    }

    .kmk-info-box {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .kmk-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .kmk-badges {
        flex-direction: column;
        gap: 10px;
    }

    .kmk-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 38px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(255, 138, 60, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Startchancen Section */
.startchancen {
    background: var(--background-primary);
}

.startchancen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.startchancen-text h2 {
    margin-bottom: 20px;
}

.startchancen-text p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.startchancen-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.startchancen-list {
    list-style: none;
    margin: 30px 0;
}

.startchancen-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 17px;
}

.startchancen-list i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-grid-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 40px;
}

.test-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.test-option-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.test-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.test-option-freeplay {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: #10B981;
    color: white;
}

.test-option-freeplay:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.test-option-license {
    border-color: var(--border-color);
}

.test-option-license:hover {
    border-color: var(--primary-color);
}

.test-option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
}

.test-option-freeplay .test-option-icon {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.test-option-license .test-option-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.test-option-content {
    text-align: center;
}

.test-option-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.test-option-freeplay h3 {
    color: white;
}

.test-option-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.test-option-freeplay p {
    color: rgba(255, 255, 255, 0.95);
}

.test-option-license p {
    color: var(--text-secondary);
}

.test-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.test-option-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.test-option-freeplay .test-option-features li {
    color: white;
}

.test-option-freeplay .test-option-features i {
    color: #FFE5B4;
}

.test-option-license .test-option-features i {
    color: var(--success-color);
}

.btn-success {
    background: white;
    color: #059669;
    border: 2px solid transparent;
}

.btn-success:hover {
    background: #F0FDF4;
    border-color: white;
    color: #047857;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 44px;
    position: relative;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(253, 176, 34, 0.35);
}

.pricing-popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    position: relative;
}

.pricing-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.1;
}

.pricing-popular .pricing-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--success-color), #059669);
    border-color: var(--success-color);
    color: white;
}

.pricing-highlight .pricing-title,
.pricing-highlight .pricing-price,
.pricing-highlight .pricing-duration,
.pricing-highlight .pricing-features {
    color: white;
}

.pricing-highlight .pricing-features i {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.pricing-duration {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.pricing-highlight .pricing-duration {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-notice {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--background-secondary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.pricing-notice i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Screenshots Section */
.screenshots {
    background: var(--background-primary);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.screenshot-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.screenshots-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.screenshots-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 230px;
}

.screenshots-image-col,
.screenshots-text-col {
    flex: 1;
}

.screenshots-text-col h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.screenshots-text-col p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.screenshots-row-reverse .screenshots-image-col {
    order: 2;
}

.screenshots-row-reverse .screenshots-text-col {
    order: 1;
}

@media (max-width: 768px) {
    .screenshots-row {
        flex-direction: column;
        min-height: auto;
    }

    .screenshots-row .screenshot-image {
        height: auto;
    }

    .screenshots-row-reverse .screenshots-image-col,
    .screenshots-row-reverse .screenshots-text-col {
        order: initial;
    }
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 16px;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: var(--background-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-highlight {
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote i {
    color: var(--primary-light);
    font-size: 32px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--background-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* For Educators Section */
.for-educators {
    background: white;
}

.educators-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.educators-text h2 {
    margin-bottom: 20px;
}

.educators-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.educators-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.educators-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
}

.educators-list i {
    color: var(--success-color);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.educators-list strong {
    color: var(--text-primary);
}

.educators-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.educator-feature {
    background: var(--background-primary);
    padding: 28px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

.educator-feature:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.feature-number {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.educator-feature h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.educator-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--background-primary);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.contact-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin-top: 10px !important;
}

/* CTA Section */
.cta {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact-item i {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========================================
   CODE MANAGEMENT SECTION
   ======================================== */

.code-management {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}

.code-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
}

.code-feature:last-child {
    margin-bottom: 0;
}

.code-feature-reverse {
    direction: rtl;
}

.code-feature-reverse > * {
    direction: ltr;
}

.code-feature-image {
    position: relative;
}

.code-feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.code-feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.code-feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.code-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.code-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.code-feature-list i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.code-feature-highlight {
    background: linear-gradient(135deg, rgba(91, 79, 255, 0.1), rgba(139, 127, 255, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.code-feature-highlight i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.code-feature-highlight strong {
    color: var(--primary-color);
    margin-right: 6px;
}

/* ========================================
   WORLD BUILDER SECTION
   ======================================== */

.world-builder {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.world-builder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.world-builder-image {
    position: relative;
}

.world-builder-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.world-builder-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 0;
}

.world-builder-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.world-builder-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.world-builder-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.world-builder-list i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.world-builder-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.wb-feature {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.wb-feature:hover {
    box-shadow: var(--shadow-lg);
}

.wb-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255, 138, 60, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wb-feature-icon i {
    font-size: 28px;
    color: white;
}

.wb-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.wb-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    /* Reduzierte 3D-Effekte auf Tablets */
    .demo-image {
        transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
        border-width: 6px;
    }
    
    .demo-image:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    }
    
    @keyframes fadeInDevice {
        from {
            opacity: 0;
            transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(20px);
        }
        to {
            opacity: 1;
            transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) translateY(0);
        }
    }
    
    .freeplay-banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .freeplay-icon {
        margin: 0 auto;
    }
    
    .freeplay-features {
        grid-template-columns: 1fr;
    }
    
    .startchancen-content,
    .world-builder-content,
    .code-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .code-feature-reverse {
        direction: ltr;
    }
    
    .world-builder-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .educators-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        gap: 12px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-2xl);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link, .nav-link-app, .nav-link-freeplay, .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Minimale 3D-Effekte auf Mobil */
    .demo-image {
        transform: none;
        border-width: 4px;
        box-shadow: 
            0 0 0 1px rgba(0, 0, 0, 0.05),
            0 15px 40px rgba(0, 0, 0, 0.25),
            0 25px 60px rgba(0, 0, 0, 0.15),
            0 0 60px rgba(59, 130, 246, 0.25);
    }
    
    .demo-image:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 0 0 1px rgba(0, 0, 0, 0.05),
            0 20px 50px rgba(0, 0, 0, 0.3),
            0 30px 70px rgba(0, 0, 0, 0.2),
            0 0 70px rgba(59, 130, 246, 0.3);
    }
    
    @keyframes fadeInDevice {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .freeplay-banner {
        padding: 40px 0;
    }
    
    .freeplay-banner-content {
        padding: 30px 20px;
    }
    
    .freeplay-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
    
    .freeplay-text h2 {
        font-size: 24px;
    }
    
    .freeplay-text p {
        font-size: 16px;
    }
    
    .btn-freeplay-primary {
        width: 100%;
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .why-grid,
    .features-grid,
    .pricing-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }
    
    .test-options-grid {
        grid-template-columns: 1fr;
    }
    
    .test-option-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: stretch;
    }
    
    .cookie-btn {
        flex: 1;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .why-card,
    .feature-card,
    .pricing-card {
        padding: 25px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .nav-toggle,
    .cta,
    .footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

