/* === styles.css === */
:root {
    /* PlatzDa Brand Colors - Aus der App übernommen */
    --primary: #10b981;        /* Emerald Green - Tennis Court Color */
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #3b82f6;      /* Blue Accent */
    --accent: #f59e0b;         /* Orange für CTAs */
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #475569;           /* Darker gray for better readability */
    --gray-light: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Tennis Court Colors */
    --court-green: #10b981;
    --court-clay: #d97706;
    --court-blue: #3b82f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-court: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows - Wie in der App */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 10px 30px -5px rgba(16, 185, 129, 0.3);
    
    /* Border Radius - Konsistent mit Tailwind */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ==================== DARK MODE ==================== */
[data-theme="dark"] {
    --dark: #f1f5f9;
    --dark-light: #e2e8f0;
    --gray: #94a3b8;
    --gray-light: #334155;
    --light: #0f172a;
    --white: #1e293b;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
    background-color: #0f172a;
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .hero-title {
    color: #f1f5f9;
}

[data-theme="dark"] .hero-title .highlight {
    color: var(--primary-light);
}

[data-theme="dark"] .hero-title .highlight::after {
    background: var(--primary);
    opacity: 0.3;
}

[data-theme="dark"] .hero-subtitle {
    color: #94a3b8;
}

[data-theme="dark"] .feature-card-enhanced,
[data-theme="dark"] .highlight-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .faq-item {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .feature-card-icon {
    background: rgba(16, 185, 129, 0.15);
}

[data-theme="dark"] .pricing-card.featured {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: var(--primary);
}

[data-theme="dark"] .faq-question {
    color: var(--dark);
}

[data-theme="dark"] .footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cookie-banner {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .demo-app {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cta {
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
}

[data-theme="dark"] .highlights-section {
    background: #0f172a;
}

[data-theme="dark"] .booking-methods {
    background: var(--white);
}

[data-theme="dark"] .method-card {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .pricing-toggle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .toggle-btn {
    color: #64748b;
}

[data-theme="dark"] .toggle-btn:hover:not(.active) {
    color: #94a3b8;
}

[data-theme="dark"] .toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .discount {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .plan-features li::before {
    color: var(--primary);
}

[data-theme="dark"] .tech-stack {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .tech-logo {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
}

[data-theme="dark"] .accent-line {
    background: var(--primary);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--dark);
}

[data-theme="dark"] .hero-benefit {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-hero-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--dark);
}

[data-theme="dark"] .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .features {
    background: #0f172a;
}

[data-theme="dark"] .pricing {
    background: var(--white);
}

[data-theme="dark"] .faq {
    background: #0f172a;
}

[data-theme="dark"] .faq-answer {
    background: transparent;
}

[data-theme="dark"] .popular-badge {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .discount {
    background: var(--primary);
    color: #ffffff;
}

[data-theme="dark"] .cta-content h2 {
    color: #f1f5f9;
}

[data-theme="dark"] .cta-content p {
    color: #94a3b8;
}

[data-theme="dark"] .btn-cta-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #f1f5f9;
}

[data-theme="dark"] .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-section h3,
[data-theme="dark"] .footer-section h4 {
    color: #f1f5f9;
}

[data-theme="dark"] .footer-section p,
[data-theme="dark"] .footer-section a {
    color: #94a3b8;
}

[data-theme="dark"] .footer-section a:hover {
    color: var(--primary);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* Smooth theme transition */
body,
.navbar,
.hero,
.feature-card-enhanced,
.highlight-card,
.pricing-card,
.faq-item,
.footer,
.cta,
.highlights-section,
.booking-methods,
.method-card,
.tech-logo,
input,
textarea {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==================== NAVBAR - Wie in der App ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-light);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-green);
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    white-space: nowrap;
}

.logo-suffix {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid var(--gray-light);
}

.lang-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray) !important;
    text-decoration: none;
    padding: 0.2rem 0.35rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}

.lang-link:hover {
    color: var(--primary) !important;
}

.lang-link.active {
    color: var(--primary) !important;
    background: rgba(16, 185, 129, 0.1);
}

.lang-divider {
    color: var(--gray-light);
    font-size: 0.75rem;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.2s ease;
    padding: 0.375rem;
}

.theme-toggle:hover {
    color: var(--primary);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    width: 16px;
    height: 16px;
}

.theme-toggle-label {
    display: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle {
    color: var(--gray);
}

[data-theme="dark"] .theme-toggle:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== BUTTONS - App-Style ==================== */
.btn-primary, .btn-hero-primary, .btn-cta-primary {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-green);
    transition: background 0.15s ease;
}

.btn-primary:hover, .btn-hero-primary:hover, .btn-cta-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-hero-secondary, .btn-cta-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s ease, color 0.15s ease;
}

.btn-hero-secondary:hover, .btn-cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================== HERO SECTION - Tennis Court Theme ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Court Stats - Tennis themed */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(16, 185, 129, 0.2);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stat:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* ==================== FEATURES SECTION - App-inspired ==================== */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* Enhanced Feature Cards */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    position: relative;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    background: var(--primary);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card-enhanced:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-card-enhanced:hover::before {
    opacity: 1;
}

.feature-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
    color: var(--primary);
}

.feature-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.5rem 0;
}

.feature-card-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .feature-card-enhanced {
        padding: 1.25rem;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Feature Badge */
.feature-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-lg);
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e2e8f0;
}

.toggle-btn {
    padding: 0.65rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
}

.toggle-btn:hover:not(.active) {
    color: #334155;
}

.toggle-btn.active {
    background: white;
    color: #0f172a;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.discount {
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-size: 0.7rem;
    margin-left: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-green);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0.25rem;
}

.amount .cents {
    font-size: 0.5em;
    font-weight: 600;
}

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

.plan-description {
    color: var(--gray);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.plan-features li.disabled {
    color: var(--gray);
    opacity: 0.5;
}

.plan-features li.disabled::before {
    content: '✗';
    color: var(--gray);
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.plan-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.plan-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-green);
}

.plan-btn.primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: border-color 0.15s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
}

.faq-question:hover {
    background: var(--light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary:hover {
    background: var(--light);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .theme-toggle {
    margin: 0;
    color: inherit;
    opacity: inherit;
    font-size: 0.875rem;
    padding: 0;
    border: none;
}

.footer-bottom .theme-toggle:hover {
    color: var(--primary);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: 1rem;
        left: auto;
        width: auto;
        min-width: 160px;
        background: var(--white);
        flex-direction: column;
        padding: 0.35rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: var(--radius-md);
        border: 1px solid rgba(0, 0, 0, 0.08);
        display: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.65rem 1rem;
        border-radius: var(--radius-sm);
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--dark);
    }

    .nav-links a:not(.btn-primary)::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: var(--light);
        color: var(--primary);
    }

    .lang-switcher {
        flex-direction: row;
        justify-content: center;
        border-left: none;
        border-top: 1px solid var(--gray-light);
        margin-left: 0;
        padding-left: 0;
        padding-top: 0.5rem;
        margin-top: 0.25rem;
    }

    .lang-link {
        min-height: auto;
        padding: 0.3rem 0.6rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 0.5rem !important;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-header .subtitle {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        min-height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-section a {
        display: inline-block;
        padding: 0.75rem 1rem;
        min-height: 44px;
        line-height: 1.5;
    }

    .faq-item {
        border-radius: var(--radius-md);
        margin-bottom: 0.75rem;
        border-width: 1px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
        min-height: 48px;
        gap: 0.75rem;
    }

    .faq-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .faq {
        padding: var(--spacing-lg) 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .pricing-card {
        padding: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.875rem;
    }

    .faq-answer p {
        padding: 0 0.875rem 0.875rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.35rem;
    }
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--primary);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--gray);
    border: 2px solid var(--gray-light);
}

.cookie-btn.decline:hover {
    background: var(--light);
    border-color: var(--gray);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}


/* === logo-fixes.css === */
/* ==================== LOGO FIX ==================== */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease !important;
}

.logo:hover {
    opacity: 0.8 !important;
}

.logo h1 {
    color: var(--dark) !important;
    margin: 0 !important;
}

.logo .logo-icon {
    font-size: 1.5rem !important;
}

/* Chevron SVG Logo Icon */
.logo-icon-svg {
    flex-shrink: 0;
}

/* Nav Logo Text – nur im .logo Kontext */
.logo .logo-text {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    letter-spacing: -0.02em;
    text-decoration: none;
}

[data-theme="dark"] .logo .logo-text {
    color: #f1f5f9 !important;
}

.logo-da {
    color: #10b981;
}

.logo .logo-suffix {
    color: #9ca3af !important;
    font-weight: 500 !important;
    font-size: 0.75em !important;
}

/* Footer Logo Lockup – immer Lightmode-Variante */
.footer-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: opacity 0.2s ease;
}

.footer-logo-lockup:hover {
    opacity: 0.85;
}

.footer-logo-lockup .logo-icon-svg {
    flex-shrink: 0;
    align-self: center;
}

.footer-logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(16, 185, 129, 0.4);
    padding-left: 0.75rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.footer-logo-suffix {
    color: #64748b;
    font-weight: 500;
    font-size: 0.7em;
}

.footer-logo-tagline {
    font-size: 0.75rem;
    font-weight: 300;
    color: #94a3b8;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-top: 0.15rem;
}

/* Demo Button Styling */
.demo-disabled {
    cursor: pointer !important;
}

.demo-disabled:hover {
    opacity: 0.9 !important;
}


/* === fonts.css === */
/* Inter – self-hosted (latin-ext) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter – self-hosted (latin) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


