/* ========================================
   BLOXXY - Modern Responsive Stylesheet
   ======================================== */

/* CSS Variables - Premium Agentur-Design */
:root {
    /* Moderne Farbpalette - Bloxxy Branding */
    --primary-color: #5B4FFF;
    --primary-dark: #4338CA;
    --primary-light: #8B7FFF;
    --secondary-color: #FF6B9D;
    --secondary-dark: #E74C7C;
    --accent-color: #FDB022;
    --accent-dark: #F59E0B;
    
    --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;
    --background-gradient: linear-gradient(135deg, #5B4FFF 0%, #8B7FFF 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 {
    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: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.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, #10B981, #059669);
    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(16, 185, 129, 0.25);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link-app:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    color: white;
}

.nav-link-app 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(91, 79, 255, 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: linear-gradient(135deg, #5B4FFF 0%, #8B7FFF 50%, #FF6B9D 100%);
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-background.jpg'); /* Fügen Sie Ihr Bild hier ein */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 79, 255, 0.92) 0%, rgba(139, 127, 255, 0.88) 50%, rgba(255, 107, 157, 0.90) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.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;
}

.hero-title .highlight {
    color: var(--accent-color);
    display: block;
    text-shadow: 0 2px 4px rgba(253, 176, 34, 0.15);
    margin-top: 4px;
    font-weight: 800;
}

.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(--background-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.5);
    color: var(--primary-dark);
}

.btn-hero-primary i {
    font-size: 18px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    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.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    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;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@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(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--background-secondary);
    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(--primary-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;
    animation: fadeInUp 0.6s ease-out;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    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(91, 79, 255, 0.25);
}

.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);
    }
}

/* 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: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-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 8px 16px rgba(91, 79, 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;
}

/* 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 {
    transform: translateY(-8px);
    background: white;
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(91, 79, 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-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-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);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item h4 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.screenshot-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 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: linear-gradient(135deg, var(--primary-color), var(--secondary-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;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .startchancen-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .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);
    }
}

/* 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-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;
    }
    
    .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;
    }
    
    .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;
    }
}

