/* 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 */
    --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;
    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) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        display: inline-block;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* 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: center;
    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: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 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;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.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;
}

.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;
}

/* 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 */
.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-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;
}

/* Pricing Section */
.pricing {
    background: var(--background-secondary);
    padding: 5rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card-pro {
    border: 2px solid #695ADA;
    box-shadow: 0 10px 40px rgba(105, 90, 218, 0.2);
    position: relative;
}

.pricing-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #695ADA, #06b6d4);
    border-radius: 20px 20px 0 0;
}

.pricing-card-pro:hover {
    box-shadow: 0 20px 60px rgba(105, 90, 218, 0.3);
}

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

.pricing-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pro-badge {
    background: linear-gradient(135deg, #695ADA, #8B7EE8);
    color: white;
    box-shadow: 0 2px 8px rgba(105, 90, 218, 0.3);
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    animation: subtle-pulse 2s infinite;
}

.pro-feature {
    background: linear-gradient(135deg, rgba(105, 90, 218, 0.1), rgba(139, 126, 232, 0.1));
    border: 1px solid rgba(105, 90, 218, 0.2);
    border-radius: 8px;
    padding: 1rem !important;
    margin-bottom: 0.5rem;
}

.pro-feature i {
    color: #695ADA !important;
    font-size: 1.1rem !important;
}

.pro-feature span {
    color: #553C9A !important;
}

.pricing-comparison {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-item i {
    color: #695ADA;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comparison-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

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

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #695ADA;
    display: block;
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 0;
}

.feature-item i {
    color: #06b6d4;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin-top: auto;
}

.order-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-info {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

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

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

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

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #695ADA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.25rem;
    color: white;
}

.method-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.method-info p {
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

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

/* Privacy Checkbox */
.form-privacy {
    margin: 1rem 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.privacy-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #695ADA;
    border-color: #695ADA;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Form Note */
.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
    padding: 12px 16px;
    background: var(--background-secondary);
    border-radius: 8px;
}

.form-note i {
    color: var(--primary-color);
}

/* Responsive Form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
}

/* ===== 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: 20px;
    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: 16px 16px 0 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;
}

.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-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        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 ===== */

/* 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: 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: 30px;
    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;
}

.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;
    }
}