/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1e2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    /* Colors - Modernere, klarere Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Backgrounds */
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    
    /* Text Colors */
    --text-primary: #1e2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    /* Borders */
    --border-color: #e5e7eb;
    --border-focus: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Additional Root Variables for Klassenfixplaner */
    --kfp-primary: #695ADA;
    --kfp-primary-dark: #553C9A;
    --kfp-primary-light: #8B7EE8;
}

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

/* Cross-Promotion Banner */
.promo-banner {
    background: linear-gradient(135deg, #695ADA, #06b6d4);
    color: white;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 0.875rem;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.promo-text i {
    font-size: 1rem;
}

.promo-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.promo-text a:hover {
    opacity: 0.8;
}

.promo-close {
    position: absolute;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.promo-banner.hidden {
    display: none;
}

.promo-banner.hidden + .navbar {
    top: 0;
}

@media (max-width: 768px) {
    .promo-content {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    .promo-close {
        right: 1rem;
    }
    
    .promo-text {
        gap: 0.25rem;
    }
    
    .navbar {
        top: 45px;
    }
    
    .promo-banner.hidden + .navbar {
        top: 0;
    }
    
    .hero {
        padding-top: 8rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: #695ADA;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    height: 48px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0;
    }
    
    .nav-container {
        padding: 1rem;
        height: 70px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1.25rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu a:hover {
        background-color: #f8f9fa;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin: 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Hero Section */
.hero {
    background: #695ADA;
    color: white;
    padding: 9rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Von center auf start geändert, damit Bild oben anfängt */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    margin-left: 3rem;
}

.hero-badge, .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.ai-badge {
    background: #695ADA;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    color: #06b6d4;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Professional Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: #695ADA;
    color: white;
    border: 2px solid #695ADA;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #553C9A;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1f2937;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Spezifischer Button für Pricing-Box */
.btn-outline {
    background: white;
    color: #695ADA;
    border: 2px solid #695ADA;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: #695ADA;
    color: white;
    border-color: #695ADA;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Spezifischer Button für Modal-Abbrechen */
.btn-cancel {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-cancel:hover {
    background: #e2e8f0;
    color: #475569;
    border-color: #cbd5e1;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Individuelle Farbakzente für jede Stat-Box */
.stat:nth-child(1) .stat-number {
    color: #695ADA !important;
}

.stat:nth-child(1) .stat-label {
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.1) 0%, rgba(139, 126, 232, 0.05) 100%);
    border-color: rgba(105, 90, 218, 0.2);
}

.stat:nth-child(1):hover {
    box-shadow: 0 12px 40px rgba(105, 90, 218, 0.3);
}

.stat:nth-child(2) .stat-number {
    color: #06b6d4 !important;
}

.stat:nth-child(2) .stat-label {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.stat:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

.stat:nth-child(3) .stat-number {
    color: #10b981 !important;
}

.stat:nth-child(3) .stat-label {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat:nth-child(3):hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(105, 90, 218, 0.15);
    min-width: 120px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat:hover {
    box-shadow: 0 12px 40px rgba(105, 90, 218, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b !important;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.1) 0%, rgba(139, 126, 232, 0.05) 100%);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(105, 90, 218, 0.2);
    display: inline-block;
    position: relative;
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    text-align: center;
}

.stat:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #695ADA 0%, #8B7EE8 100%);
    color: white;
}

.stat:nth-child(1) .stat-icon i {
    display: block;
}

.stat:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    color: white;
}

.stat:nth-child(2) .stat-icon i {
    display: block;
}

.stat:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat:nth-child(3) .stat-icon i {
    display: block;
}

/* Icon-Zentrierung für alle Icons */
.stat-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.stat-icon {
    position: relative;
}

/* Font Awesome spezifische Anpassungen */
.fa-solid, .fas {
    font-weight: 900;
}

/* Hover-Effekt entfernt für Icons */

.stat-ai-label {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600 !important;
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.hero-visual {
    position: relative;
}

/* Neue Regel für bessere Positionierung des Bildes */
.hero-visual {
    margin-top: 40px; /* Gleiche Höhe wie Trust-Badge + Titel */
    align-self: flex-start; /* Ausrichtung am oberen Rand */
}

.software-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.mockup-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.mockup-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    background: #695ADA;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trust-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b !important;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b !important;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-image {
        order: 2;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .trust-text h2 {
        font-size: 2rem;
    }
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #695ADA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Product Family Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Product Family Section */
.product-family {
    background: white;
    padding: 6rem 0;
}

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

.product-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #695ADA, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #695ADA;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.current {
    border-color: #695ADA;
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.05), rgba(6, 182, 212, 0.05));
}

.product-card.current::before {
    opacity: 1;
}

.product-card.coming-soon {
    border-style: dashed;
    opacity: 0.7;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-logo {
    height: 40px;
    width: auto;
}

.product-logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--background-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.product-badge {
    background: var(--background-tertiary);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.current-badge {
    background: #695ADA;
    color: white;
}

.coming-badge {
    background: var(--warning-color);
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-tagline {
    color: #695ADA;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(105, 90, 218, 0.1);
    color: #695ADA;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-actions {
    margin-top: auto;
}

.current-page {
    color: #695ADA;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-page::before {
    content: '●';
    color: #695ADA;
}

.btn-disabled {
    background: var(--background-tertiary);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.family-info {
    text-align: center;
    margin-top: 3rem;
}

.family-highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.1), rgba(6, 182, 212, 0.1));
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(105, 90, 218, 0.2);
    max-width: 600px;
    text-align: left;
}

.family-highlight i {
    font-size: 2rem;
    color: #695ADA;
    flex-shrink: 0;
}

.family-highlight h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.family-highlight p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .family-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .family-highlight i {
        font-size: 1.5rem;
    }
}

/* AI Process Section */
.ai-process {
    background: #f8fafc;
    padding: 5rem 0;
}

.ai-process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(105, 90, 218, 0.2);
    border-color: #695ADA;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 20px;
    background: #695ADA;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #695ADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    color: #1a2332;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    background: #695ADA;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
}

.process-step:last-child .step-arrow {
    display: none;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: #695ADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #695ADA;
    margin-bottom: 0.5rem;
}

.ai-process .stat-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Screenshots Section */
.screenshots {
    background: var(--background-primary);
}

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

.screenshot-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.screenshot-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.screenshot-item:hover .screenshot-image {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Screenshot Carousel - Für Konfigurationssektion */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
}

.screenshot-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.screenshot-carousel .screenshot-item {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot-carousel .screenshot-item.active {
    opacity: 1;
}

.screenshot-carousel .screenshot-item img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #f9fafb;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    cursor: zoom-in;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.screenshot-carousel .screenshot-item img:hover {
    transform: scale(1.02);
}

.screenshot-carousel .screenshot-item h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.screenshot-carousel .screenshot-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: #9ca3af;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.lightbox-content {
    display: block;
    max-width: 95%;
    max-height: 95%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #bbb;
}

/* Make all screenshot images clickable */
.mockup-image,
.trust-image img,
.showcase-image img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.mockup-image:hover,
.trust-image img:hover,
.showcase-image img:hover {
    transform: scale(1.02);
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-btn i {
    font-size: 1rem;
    }
    
    .screenshot-carousel .screenshot-item {
        padding: 0 1rem;
    }
    
    .screenshot-carousel .screenshot-item img {
        max-height: 300px;
        padding: 1rem;
    }
    
    .screenshot-carousel .screenshot-item h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .screenshot-carousel .screenshot-item p {
        font-size: 0.95rem;
    }
}

/* Screenshot Grid - Für Planning Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.screenshot-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f9fafb;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.screenshot-card img:hover {
    transform: scale(1.02);
}

.screenshot-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.screenshot-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.screenshot-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.showcase-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: #22c55e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.showcase-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #f9fafb;
    padding: 1rem;
}

@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-image {
        order: -1;
    }
}

/* Output Section */
.output-section {
    padding: 5rem 0;
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.output-card {
    text-align: center;
    transition: all 0.3s ease;
}

.output-card:hover {
    transform: translateY(-5px);
}

.output-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.output-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.output-card img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.output-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.output-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Product Cards Layout */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.product-features {
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
    flex-grow: 0;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li i {
    color: #22c55e;
    font-size: 0.875rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 1rem 0 1.5rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    justify-content: center;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Product Grid */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
}

/* Pricing Section - GTP Style */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #ff6b6b;
}

.pricing-card.test {
    border-color: #22c55e;
}

.pricing-card.test .pricing-discount {
    display: none;
}

.pricing-label {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px 14px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pricing-card.featured .pricing-label {
    background: #ff6b6b;
}

.pricing-card.test .pricing-label {
    background: #22c55e;
}

.pricing-card.upgrade-offer .pricing-label {
    background: #f97316;
    animation: pulse 2s infinite;
}

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

.pricing-card.upgrade-offer {
    border: 2px solid #f97316;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.pricing-card.upgrade-offer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f97316, #ea580c, #f97316);
    z-index: -1;
    opacity: 0;
    animation: glow 3s infinite;
    border-radius: 16px;
}

.pricing-card.upgrade-offer:focus,
.pricing-card.upgrade-offer:focus-visible,
.pricing-card.upgrade-offer *:focus,
.pricing-card.upgrade-offer *:focus-visible {
    outline: none;
}

.pricing-card.upgrade-offer button:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
    border-radius: 8px;
}

@keyframes glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

.price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: -10px;
}

.pricing-header {
    padding: 30px 30px 20px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-price {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 5px;
}

.price-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 10px;
}

.pricing-discount {
    background: #fee2e2;
    color: #dc2626;
    padding: 10px 20px;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 30px;
    text-align: left;
    flex-grow: 1;
    min-height: 280px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card.test .pricing-features i {
    color: #22c55e;
}

.pricing-card .btn-lg {
    width: calc(100% - 60px);
    margin: 0 30px 20px;
    padding: 15px 30px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: auto;
}

.btn-success {
    background: #22c55e;
    color: white;
}

.btn-success:hover {
    background: #16a34a;
}

.pricing-info {
    padding: 0 30px 30px;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-info.test-info {
    color: #059669;
    background: #d1fae5;
    padding: 15px 30px;
    margin: 0 30px 30px;
    border-radius: 8px;
}

/* ===== ORDER MODAL STYLES ===== */

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto 0;
    animation: slideInUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem 1rem 3rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--background-secondary);
    border-radius: 0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--border-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem 3rem 3rem 3rem;
}

/* Order Info Section */
.order-info {
    background: var(--background-secondary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin: 0 -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.upgrade-info {
    background: #fff7ed;
    border-bottom-color: #f97316;
}

.upgrade-info .order-highlight i {
    color: #f97316;
}

.upgrade-info .order-highlight {
    background: #fef3e2;
    border-color: #f97316;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.order-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-detail {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 1rem auto;
    width: fit-content;
}

.savings-highlight i {
    font-size: 1rem;
}

.order-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Form Sections */
.order-form {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* License Section Specific */
.license-section {
    background: rgba(255, 152, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 152, 0, 0.2);
}

.license-section h3::before {
    background: #ff9800;
}

.license-help {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0.5rem;
    padding: 10px 12px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #e65100;
}

.license-help i {
    color: #ff9800;
    margin-top: 2px;
    flex-shrink: 0;
}

.license-help strong {
    color: #e65100;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    margin: 1rem 1rem 1rem 1rem;
}

.form-actions .btn {
    min-width: 150px;
}

/* Form Enhancements for Modals */
.order-form .form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.order-form .form-group input,
.order-form .form-group textarea {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-form .form-group input:focus,
.order-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.order-form .form-group input.error,
.order-form .form-group textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.order-form .form-group input.success,
.order-form .form-group textarea.success {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.order-form .form-group input.warning,
.order-form .form-group textarea.warning {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

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

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Modal Design */
@media (max-width: 768px) {
    .modal.active {
        padding: 10px;
        align-items: flex-start;
    }
    
    .modal-content {
        max-width: 100%;
        margin: 20px 0;
        max-height: calc(100vh - 40px);
    }
    
    .modal-header {
        padding: 1.5rem 2rem 1rem 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1.5rem 2rem 2rem 2rem;
    }
    
    .order-info {
        padding: 1.5rem 0;
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .form-section {
        padding-bottom: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        padding: 1rem 1.5rem 2rem 1.5rem;
        margin: 1rem 0.5rem 1rem 0.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .license-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modal.active {
        padding: 5px;
    }
    
    .modal-content {
        border-radius: 12px;
        margin: 10px 0;
        max-height: calc(100vh - 20px);
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem 0.75rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.125rem;
    }
    
    .modal-body {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }
    
    .order-info {
        padding: 1.25rem 0;
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .order-form {
        padding: 1.25rem 0;
        gap: 1.25rem;
    }
    
    .form-section h3 {
        font-size: 1.125rem;
    }
    
    .license-help {
        flex-direction: column;
        text-align: center;
    }
}

/* Upgrade Modal Specific Styles */
.upgrade-info {
    background: #fdf2f8;
    border-color: rgba(244, 114, 182, 0.2);
}

.upgrade-info .price-amount {
    color: #ec4899;
}

.upgrade-info .order-note {
    color: #be185d;
}

.order-form .form-group input.success,
.order-form .form-group textarea.success {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.order-form .form-group input.warning,
.order-form .form-group textarea.warning {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.order-form .form-group input[readonly],
.order-form .form-group textarea[readonly] {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
    border-style: dashed;
    border-color: #d1d5db;
}

.order-form .form-group input[readonly]:focus,
.order-form .form-group textarea[readonly]:focus {
    box-shadow: none;
    border-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-comparison {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .comparison-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ===== DOWNLOAD MODAL SPECIFIC STYLES ===== */

/* Download Modal Info Section */
.download-info {
    text-align: center;
    margin-bottom: 2rem;
}

.download-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f5f3ff;
    border: 2px solid #695ADA;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.download-highlight i {
    font-size: 2rem;
    color: #695ADA;
}

.download-text h3 {
    color: #553C9A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.download-text p {
    color: #553C9A;
    margin: 0;
    font-size: 0.9rem;
}

.download-note {
    color: #64748b;
    margin: 0;
}

/* Order Modal Info Section */
.order-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f5f3ff;
    border: 2px solid #695ADA;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.order-highlight i {
    font-size: 2rem;
    color: #695ADA;
}

.order-text h3 {
    color: #553C9A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.order-text .price {
    color: #553C9A;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-note {
    color: #64748b;
    margin: 0;
}

/* Download Form */
.download-form .form-section {
    margin-bottom: 1.5rem;
}

.download-features {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.download-features h4 {
    color: #d97706;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.download-features .feature-list {
    display: grid;
    gap: 0.75rem;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 241, 199, 0.8);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.download-features .feature-item i {
    color: #f59e0b;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Trial Button Override for Download Modal */
.download-form .btn-trial {
    background: #695ADA;
    color: white;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.download-form .btn-trial:hover {
    background: #553C9A;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Download Modal */
@media (max-width: 768px) {
    .download-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .download-features .feature-list {
        grid-template-columns: 1fr;
    }
    
    .download-features .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-highlight {
        padding: 1rem;
    }
    
    .download-highlight i {
        font-size: 1.5rem;
    }
    
    .download-text h3 {
        font-size: 1.1rem;
    }
    
    .download-features {
        padding: 1rem;
    }
}

/* ===== UPGRADE SECTION STYLES ===== */

.upgrade-section {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border: 2px solid #ec4899;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.upgrade-header h3 {
    color: #be185d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.upgrade-header p {
    color: #831843;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.upgrade-card {
    background: white;
    border: 2px solid #ec4899;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.upgrade-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ec4899;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.upgrade-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #be185d;
    margin-bottom: 1rem;
}

.upgrade-price {
    margin: 1.5rem 0;
}

.upgrade-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    display: block;
}

.upgrade-price .price-period {
    color: #831843;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.savings-note {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.upgrade-features {
    margin: 1.5rem 0;
    text-align: left;
}

.upgrade-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(236, 72, 153, 0.05);
    border-radius: 8px;
}

.upgrade-benefit i {
    color: #10b981;
    font-size: 1.125rem;
}

.upgrade-benefit span {
    color: #374151;
    font-weight: 500;
}

.upgrade-actions {
    margin-top: 1.5rem;
}

.upgrade-requirement {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ===== UPGRADE MODAL SPECIFIC STYLES ===== */

.upgrade-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #fdf2f8;
    border: 2px solid #ec4899;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.upgrade-highlight i {
    font-size: 2rem;
    color: #ec4899;
}

.upgrade-text h3 {
    color: #be185d;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.upgrade-text .price {
    color: #be185d;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.upgrade-note {
    color: #64748b;
    margin: 0;
    text-align: center;
}

.upgrade-info {
    background: #fdf2f8;
    border-color: rgba(236, 72, 153, 0.2);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin: 0 -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.upgrade-form .form-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.upgrade-form .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.upgrade-form .form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upgrade-form .form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ec4899;
    border-radius: 2px;
}

/* License Section Specific for Upgrade */
.upgrade-form .license-section {
    background: rgba(236, 72, 153, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(236, 72, 153, 0.2);
    margin-bottom: 2rem;
}

.upgrade-form .license-section h3::before {
    background: #ec4899;
}

.upgrade-form .license-help {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0.5rem;
    padding: 10px 12px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #be185d;
}

.upgrade-form .license-help i {
    color: #ec4899;
    margin-top: 2px;
    flex-shrink: 0;
}

.upgrade-form .license-help strong {
    color: #be185d;
}

/* Responsive Design for Upgrade Section */
@media (max-width: 768px) {
    .upgrade-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .upgrade-card {
        padding: 1.5rem;
    }
    
    .upgrade-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .upgrade-features {
        text-align: center;
    }
    
    .upgrade-benefit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .upgrade-section {
        padding: 1rem;
    }
    
    .upgrade-card {
        padding: 1rem;
    }
    
    .upgrade-highlight {
        padding: 1rem;
    }
    
    .upgrade-highlight i {
        font-size: 1.5rem;
    }
    
    .upgrade-text h3 {
        font-size: 1.1rem;
    }
}

/* ===== KLASSENFIXPLANER SPEZIFISCHE STYLES ===== */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 0;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-content h2 {
    color: white;
    padding: 2rem;
    margin: 0;
    font-size: 1.75rem;
}

.modal-subtitle {
    padding: 0 2rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.modal-close {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e5e7eb;
}

/* Order Form Styles */
#orderForm {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.flex-grow {
    flex: 2;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Order Summary */
.order-summary {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.order-summary h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.summary-divider {
    height: 2px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.summary-note {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.modal-actions .btn {
    min-width: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

/* Screenshot Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.lightbox-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.lightbox-counter {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lightbox-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Responsiveness für Lightbox */
@media (max-width: 768px) {
    #lightbox-image {
        max-width: 95vw;
        max-height: 70vh;
    }
    
    .lightbox-nav {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .ai-process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        position: fixed;
        top: auto;
        bottom: 100px;
        transform: none;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-hint {
        position: fixed;
        bottom: 20px;
        font-size: 0.75rem;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles - Diese wurden auch vergessen! */
.footer {
    background: #1a1a1a;
    color: white;
    margin-top: 0;
}

.footer-top {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 3rem 0;
}

.footer-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 1.5rem;
}

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

.footer-brand {
    grid-column: 1 / 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 20px;
    width: auto;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-contact-item i {
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Einführungspreis Badge */
.intro-price-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 8px 0 16px 0;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.intro-price-badge span {
    letter-spacing: 0.3px;
}

/* Dezente Pulse-Animation */
@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4);
    }
}

/* Position relativ für Pricing Card */
.pricing-card {
    position: relative;
}

.pricing-card .pricing-header {
    position: relative;
}

/* Intro Price Tag für Hero Section */
.intro-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 12px;
    vertical-align: middle;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .intro-price-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin: 6px 0 12px 0;
    }
    
    .intro-price-tag {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        display: inline-flex;
    }
}

/* Klassenplanung Benefits Section */
.klassenplanung-benefits {
    background: white;
    padding: 5rem 0;
}

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

.benefit-card {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #695ADA, #8B7EE8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(105, 90, 218, 0.3);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* KI Features Section */
.ki-features {
    padding: 5rem 0;
    background: var(--background-secondary);
}

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

.ki-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.ki-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.ki-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.ki-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ki-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Featured Card Badge */
.featured-card {
    position: relative;
    border: 2px solid var(--primary-color) !important;
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.05), rgba(6, 182, 212, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(105, 90, 218, 0.1);
}

.cta-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-section {
    background: var(--background-secondary);
    padding: 5rem 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.faq-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Responsive Design für Benefits und FAQ */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
}

/* New Footer Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    margin-top: 0.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Upgrade Modal specific styles */
#upgradeModal .modal-header {
    background: #fff;
    border-bottom: 2px solid #f97316;
}

#upgradeModal .modal-header h2 {
    color: #f97316;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Hero Section Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 3rem 0;
        margin-top: 70px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .stat {
        padding: 1rem;
        min-width: unset;
    }
    
    .stat-number {
        font-size: 1.75rem;
        color: #1e293b !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
        color: #475569 !important;
        background: white;
        padding: 4px 8px;
        display: inline-block;
        margin-top: 0.25rem;
    }
    
    .hero-visual {
        padding: 0 1rem;
        width: 100%;
    }
    
    .software-mockup {
        max-width: 100%;
    }
    
    .mockup-image {
        border-radius: 12px;
    }
}

/* Feature Cards Mobile */
@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

/* Trust Section Mobile */
@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }
    
    .trust-content {
        padding: 0 1rem;
    }
    
    .trust-text h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-subtitle {
        font-size: 1rem;
    }
    
    .trust-image {
        margin-top: 1.5rem;
    }
    
    .trust-image img {
        border-radius: 12px;
    }
}

/* Process Section Mobile */
@media (max-width: 768px) {
    .configuration, .planning {
        padding: 3rem 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .process-card h3 {
        font-size: 1.1rem;
    }
    
    .process-card p {
        font-size: 0.95rem;
    }
    
    .process-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .process-feature {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
    .cta {
        padding: 3rem 1rem;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    /* Bessere Touch-Targets */
    .btn, .nav-link, .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Keine Hover-Effekte auf Touch-Geräten */
    @media (hover: none) {
        .btn:hover, .feature-card:hover, .process-card:hover {
            transform: none;
        }
    }
    
    /* Scrollbar-Optimierung */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }
    
    /* Better spacing for touch */
    p {
        line-height: 1.6;
    }
    
    /* Form elements */
    input, textarea, select {
        font-size: 16px; /* Verhindert Zoom bei iOS */
        min-height: 44px;
        padding: 12px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        display: flex;
        gap: 0.5rem;
        margin: 2rem auto 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat {
        padding: 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex: 1;
        min-width: 100px;
        max-width: 120px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        color: #1e293b !important;
        font-weight: 700 !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
        color: #64748b !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        font-weight: 500 !important;
    }
}

/* Image Optimization for Mobile */
@media (max-width: 768px) {
    /* Lazy loading placeholder */
    img[loading="lazy"] {
        background: #f0f0f0;
    }
    
    /* Responsive images */
    .hero-visual img,
    .trust-image img,
    .mockup-image,
    .feature-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Smaller shadows on mobile */
    .software-mockup {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Hide decorative elements on mobile */
    .mockup-overlay {
        display: none;
    }
    
    /* Optimize feature icons */
    .feature-icon {
        will-change: transform;
    }
}

/* Performance Optimizations */
@media (max-width: 768px) {
    /* Disable animations on low-end devices */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
    
    /* Optimize font loading */
    .hero-title,
    .section-title {
        font-display: swap;
    }
}

/* Improved Form Elements for Mobile */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        transition: border-color 0.2s;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #695ADA;
        box-shadow: 0 0 0 3px rgba(105, 90, 218, 0.1);
    }
    
    /* Better select dropdown */
    .form-select {
        background-image: url("data:image/svg+xml,%3csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }
}

/* Modal Improvements for Mobile */
@media (max-width: 768px) {
    .modal-content {
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }
}

/* Improved Scroll Behavior */
@media (max-width: 768px) {
    /* Scroll padding for fixed header */
    html {
        scroll-padding-top: 80px;
    }
    
    /* Smooth scroll with momentum */
    .nav-menu,
    .modal-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Better Focus States for Accessibility */
@media (max-width: 768px) {
    *:focus-visible {
        outline: 3px solid #695ADA;
        outline-offset: 2px;
    }
    
    .btn:focus-visible {
        outline-offset: 4px;
    }
}

/* Loading States */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #695ADA;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved Spacing for Mobile */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better paragraph spacing */
    p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    /* List spacing */
    ul, ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 0.5rem;
    }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mode Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}