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


/* === use-cases.css === */
/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights-section {
    padding: 5rem 0;
    background: var(--light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.highlight-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.highlight-icon.icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.highlight-icon.icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.highlight-icon.icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.highlight-icon.icon-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

.highlight-icon.icon-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.highlight-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.375rem 0;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* 5 Karten Layout: 3 oben, 2 unten zentriert */
.highlights-grid .highlight-card:nth-child(4),
.highlights-grid .highlight-card:nth-child(5) {
    grid-column: span 1;
}

@media (min-width: 769px) {
    .highlights-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .highlights-grid .highlight-card:nth-child(1),
    .highlights-grid .highlight-card:nth-child(2),
    .highlights-grid .highlight-card:nth-child(3) {
        grid-column: span 2;
    }

    .highlights-grid .highlight-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .highlights-grid .highlight-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.25rem;
    }
}

/* ==================== USE CASES SECTION (Legacy) ==================== */
.use-cases {
    padding: 5rem 0;
    background: var(--light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

/* Use Cases Grid - In einer Zeile */
.use-cases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 180px;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.use-case:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--primary);
}

/* Individuelle Farben für jedes Feature */
.use-case:nth-child(1) .use-case-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.use-case:nth-child(2) .use-case-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.use-case:nth-child(3) .use-case-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.use-case:nth-child(4) .use-case-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: #f59e0b;
}

.use-case:nth-child(5) .use-case-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

.use-case:nth-child(6) .use-case-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.use-case h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.use-case p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .use-cases-grid {
        gap: 1rem;
    }
    
    .use-case {
        min-width: 120px;
        max-width: 140px;
        padding: 1.25rem 0.75rem;
    }
    
    .use-case-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .use-cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .use-case {
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-case {
        padding: 1rem 0.5rem;
    }
    
    .use-case-icon {
        font-size: 2rem;
    }
    
    .use-case h3 {
        font-size: 1rem;
    }
}


/* === hero-calendar.css === */
/* ==================== PLATZDA DEMO APP ==================== */
.demo-wrapper {
    max-width: 950px;
    margin: 3rem auto 0;
}

/* ==================== BROWSER FRAME ==================== */
.browser-frame {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 24px 48px -12px rgba(0, 0, 0, 0.12),
        0 48px 80px -20px rgba(0, 0, 0, 0.14);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.browser-frame:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 24px 48px -12px rgba(0, 0, 0, 0.14),
        0 56px 96px -20px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.browser-toolbar {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    background: #f1f3f5;
    border-bottom: 1px solid #e2e5e9;
    gap: 0.75rem;
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot-red { background: #ff5f57; }
.browser-dots .dot-yellow { background: #febc2e; }
.browser-dots .dot-green { background: #28c840; }

.browser-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #dfe1e5;
    border-radius: 6px;
    padding: 5px 12px;
    max-width: 400px;
    margin: 0 auto;
}

.browser-lock {
    color: #10b981;
    flex-shrink: 0;
}

.browser-url-text {
    font-size: 0.8rem;
    color: #5f6368;
    font-family: var(--font-primary);
    font-weight: 400;
    white-space: nowrap;
}

.browser-toolbar-right {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    justify-content: flex-end;
}

.browser-action-icon {
    color: #9aa0a6;
}

/* ==================== ANIMATED CURSOR ==================== */
.demo-cursor {
    position: absolute;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: translate(-2px, -2px);
    will-change: left, top;
}

.demo-cursor.visible {
    opacity: 1;
}

.demo-cursor svg {
    display: block;
}

.cursor-ripple {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.35);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.cursor-ripple.active {
    animation: cursor-click-ripple 0.6s ease-out forwards;
}

@keyframes cursor-click-ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.demo-app {
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

/* ==================== APP HEADER ==================== */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.demo-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-logo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-brand {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.demo-brand-sub {
    color: #10b981;
    font-weight: 400;
    font-size: 0.8rem;
}

.demo-brand-sub strong {
    color: #10b981;
    font-weight: 700;
}

.demo-pin-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.demo-pin-btn:hover {
    background: #059669;
}

/* ==================== CALENDAR NAVIGATION ==================== */
.demo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.demo-nav-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #4b5563;
    cursor: pointer;
}

.demo-nav-btn:hover {
    background: #e5e7eb;
}

.demo-nav-btn.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.demo-nav-arrow {
    padding: 0.4rem 0.6rem;
}

.demo-nav-today {
    background: white;
}

.demo-nav-date {
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 500;
    padding: 0 0.5rem;
}

/* ==================== CALENDAR GRID ==================== */
.demo-calendar {
    background: white;
    overflow-x: auto;
}

/* Header Row */
.cal-header {
    display: grid;
    grid-template-columns: 60px repeat(3, 1fr);
    border-bottom: 1px solid #e5e7eb;
}

.cal-time-header {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    background: #f9fafb;
}

.cal-day-header {
    padding: 0.6rem 0.5rem;
    text-align: center;
    border-left: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cal-day-header.cal-today {
    background: #3b82f6;
    color: white;
}

.cal-day-header .day-name {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
}

.cal-day-header .day-date {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Place Labels Row */
.cal-places {
    display: grid;
    grid-template-columns: 60px repeat(3, 1fr);
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cal-place-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid #e5e7eb;
}

.cal-place-group span {
    padding: 0.4rem;
    font-size: 0.65rem;
    color: #6b7280;
    text-align: center;
    border-right: 1px solid #f3f4f6;
}

.cal-place-group span:last-child {
    border-right: none;
}

/* Time Rows */
.cal-row {
    display: grid;
    grid-template-columns: 60px repeat(3, 1fr);
    border-bottom: 1px solid #f3f4f6;
}

.cal-row:last-child {
    border-bottom: none;
}

.cal-time-cell {
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-day-cells {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid #e5e7eb;
}

/* ==================== SLOT STYLES ==================== */
.cal-slot {
    padding: 0.5rem 0.25rem;
    font-size: 0.7rem;
    text-align: center;
    border-right: 1px solid #f3f4f6;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-slot:last-child {
    border-right: none;
}

/* Free Slots */
.cal-slot.free {
    background: white;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.cal-slot.free:hover {
    background: #ecfdf5;
    color: #059669;
    box-shadow: inset 0 0 0 1.5px #10b98140;
}

/* Booked Slots - Different Colors */
.cal-slot.booked {
    color: white;
    font-size: 0.8rem;
    cursor: default;
}

.cal-slot.booked.purple {
    background: #c4b5fd;
}

.cal-slot.booked.green {
    background: #86efac;
}

.cal-slot.booked.yellow {
    background: #fde047;
    color: #92400e;
}

.cal-slot.booked.coral {
    background: #fca5a5;
}

.cal-slot.booked.blue {
    background: #93c5fd;
}

/* Just booked indicator - simple glowing dot */
.cal-slot.just-booked {
    position: relative;
}

.cal-slot.just-booked::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 10;
    animation: trace-border 1.8s linear 3 forwards;
}

/* PIN = Lila */
.cal-slot.just-booked.purple::before {
    background: white;
    box-shadow: 0 0 6px 3px #a855f7, 0 0 12px 6px rgba(168, 85, 247, 0.5);
}

/* Anfrage = Grün */
.cal-slot.just-booked.green::before {
    background: white;
    box-shadow: 0 0 6px 3px #10b981, 0 0 12px 6px rgba(16, 185, 129, 0.5);
}

/* PayPal = Blau */
.cal-slot.just-booked.blue::before {
    background: white;
    box-shadow: 0 0 6px 3px #3b82f6, 0 0 12px 6px rgba(59, 130, 246, 0.5);
}

@keyframes trace-border {
    0%, 100% {
        top: -4px;
        left: -4px;
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    25% {
        top: -4px;
        left: calc(100% - 4px);
    }
    50% {
        top: calc(100% - 4px);
        left: calc(100% - 4px);
    }
    75% {
        top: calc(100% - 4px);
        left: -4px;
    }
    98% {
        opacity: 1;
    }
}

/* ==================== MODAL ==================== */
.demo-modal {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(0px);
    pointer-events: none;
    visibility: hidden;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, visibility 0s 0.3s;
}

.demo-modal.active {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    pointer-events: auto;
    visibility: visible;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, visibility 0s 0s;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    width: 90%;
    max-width: 320px;
    position: relative;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.demo-modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Modal Steps */
.modal-step {
    display: none;
    text-align: center;
}

.modal-step.active {
    display: block;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.modal-slot-info {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Method Buttons */
.modal-methods {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.modal-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    min-width: 80px;
}

.modal-method:hover {
    border-color: #10b981;
    background: #ecfdf5;
}

.modal-method .method-icon {
    font-size: 1.5rem;
}

.modal-method .method-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

/* ==================== PIN PAD ==================== */
.pin-display {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin: 0.5rem 0;
}

.pin-digit {
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #1f2937;
}

.pin-digit.filled {
    border-color: #a855f7;
    background: #faf5ff;
}

.pin-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    max-width: 170px;
    margin: 0.5rem auto;
}

.pin-key {
    width: 48px;
    height: 38px;
    border: none;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
}

.pin-key:hover {
    background: #e5e7eb;
}

.pin-key:active {
    background: #d1d5db;
}

.pin-key-empty {
    visibility: hidden;
}

.pin-key-delete {
    color: #ef4444;
}

/* ==================== REQUEST FORM ==================== */
.request-form {
    margin-top: 1rem;
}

.request-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    background: #f9fafb;
}

.request-form input:focus {
    outline: none;
    border-color: #10b981;
}

.request-info,
.pin-info,
.paypal-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.request-info .info-item,
.pin-info .info-item,
.paypal-info .info-item {
    font-size: 0.75rem;
    color: #166534;
    text-align: left;
}

.pin-info {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.pin-info .info-item {
    color: #6b21a8;
}

.pin-combo {
    margin-bottom: 0.5rem;
}

.pin-email-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: 6px;
    font-size: 0.8rem;
}

.pin-email-compact .email-label {
    color: #6b7280;
    font-weight: 500;
}

.pin-email-compact .email-value {
    color: #6b21a8;
    font-weight: 600;
}

.paypal-info {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.paypal-info .info-item {
    color: #1e40af;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background: #059669;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* ==================== PAYPAL ==================== */
.paypal-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.5rem 0 1rem;
}

.paypal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.paypal-btn:hover {
    background: #005ea6;
}

.paypal-logo {
    font-style: italic;
    font-weight: 700;
}

.paypal-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* ==================== SUCCESS ==================== */
.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: success-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

@keyframes success-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-size: 1.25rem;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.success-msg {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.success-time {
    background: #ecfdf5;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #065f46;
    display: inline-block;
}

.success-time strong {
    color: #10b981;
    font-size: 1.1rem;
}

/* ==================== DEMO HINT ==================== */
.demo-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #ecfdf5;
    color: #065f46;
    font-size: 0.85rem;
    font-weight: 500;
}

.hint-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

/* ==================== USP BADGES ==================== */
.demo-usps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.usp-check {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

/* Tablet */
@media (max-width: 900px) {
    .demo-wrapper {
        margin: 2rem auto 0;
    }

    .browser-toolbar {
        padding: 0.5rem 0.75rem;
    }

    .browser-dots .dot {
        width: 10px;
        height: 10px;
    }

    .browser-url-bar {
        padding: 4px 10px;
    }

    .browser-url-text {
        font-size: 0.75rem;
    }

    .cal-slot {
        min-height: 40px;
        font-size: 0.65rem;
    }

    .cal-day-header .day-name {
        font-size: 0.75rem;
    }

    .cal-day-header .day-date {
        font-size: 0.65rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .demo-wrapper {
        margin: 1.5rem auto 0;
    }

    .browser-toolbar {
        padding: 0.45rem 0.6rem;
    }

    .browser-dots .dot {
        width: 9px;
        height: 9px;
    }

    .browser-dots {
        gap: 5px;
    }

    .browser-url-bar {
        padding: 3px 8px;
        max-width: 240px;
    }

    .browser-url-text {
        font-size: 0.7rem;
    }

    .browser-toolbar-right {
        width: 44px;
    }

    /* Cursor auf Mobilgeräten ausblenden */
    .demo-cursor {
        display: none !important;
    }

    .demo-header {
        padding: 0.6rem 1rem;
    }

    .demo-brand-sub {
        display: none;
    }

    .demo-pin-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .demo-nav {
        gap: 0.25rem;
        padding: 0.5rem;
    }

    .demo-nav-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        min-height: 36px;
    }

    .demo-nav-date {
        font-size: 0.75rem;
    }

    /* Kalender auf 2 Tage reduzieren für bessere Lesbarkeit */
    .cal-header,
    .cal-places,
    .cal-row {
        grid-template-columns: 50px repeat(2, 1fr);
    }

    /* Dritten Tag auf Mobile ausblenden */
    .cal-day-header:nth-child(4),
    .cal-day-cells:nth-child(4),
    .cal-place-group:nth-child(4) {
        display: none;
    }

    .cal-time-cell {
        font-size: 0.7rem;
        padding: 0.4rem 0.25rem;
    }

    /* Touch-freundliche Slot-Größe */
    .cal-slot {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
        min-height: 44px;
    }

    .cal-slot.free:hover {
        transform: none;
    }

    .cal-slot.free:active {
        background: #ecfdf5;
        color: #059669;
    }

    .cal-day-header .day-name {
        font-size: 0.75rem;
    }

    .cal-day-header .day-date {
        font-size: 0.65rem;
    }

    .cal-place-group span {
        font-size: 0.6rem;
        padding: 0.35rem 0.15rem;
    }

    .modal-content {
        padding: 1.25rem;
        max-width: 300px;
        width: 95%;
    }

    .modal-methods {
        gap: 0.5rem;
    }

    .modal-method {
        padding: 0.75rem 0.5rem;
        min-width: 70px;
        min-height: 70px;
    }

    .modal-method .method-icon {
        font-size: 1.4rem;
    }

    .modal-method .method-label {
        font-size: 0.7rem;
    }

    .pin-digit {
        width: 36px;
        height: 44px;
        font-size: 1.1rem;
    }

    .pin-pad {
        max-width: 160px;
    }

    .pin-key {
        width: 46px;
        height: 44px;
        font-size: 1rem;
    }

    .request-info,
    .pin-info,
    .paypal-info {
        padding: 0.6rem;
    }

    .request-info .info-item,
    .pin-info .info-item,
    .paypal-info .info-item {
        font-size: 0.7rem;
    }

    .submit-btn,
    .paypal-btn {
        min-height: 48px;
        font-size: 1rem;
    }

    .demo-usps {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .usp-item {
        font-size: 0.85rem;
    }

    .demo-hint {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .demo-wrapper {
        margin: 1rem auto 0;
    }

    .browser-toolbar {
        padding: 0.4rem 0.5rem;
    }

    .browser-dots .dot {
        width: 8px;
        height: 8px;
    }

    .browser-url-bar {
        max-width: 180px;
    }

    .browser-url-text {
        font-size: 0.65rem;
    }

    .browser-toolbar-right {
        display: none;
    }

    .demo-header {
        padding: 0.5rem 0.75rem;
    }

    .demo-brand {
        font-size: 0.85rem;
    }

    .demo-logo {
        width: 24px;
        height: 24px;
    }

    .demo-pin-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .cal-header,
    .cal-places,
    .cal-row {
        grid-template-columns: 45px repeat(2, 1fr);
    }

    .cal-time-cell {
        font-size: 0.65rem;
    }

    .cal-day-header .day-name {
        font-size: 0.7rem;
    }

    .cal-day-header .day-date {
        font-size: 0.6rem;
    }

    .cal-slot {
        font-size: 0.65rem;
        min-height: 40px;
    }

    .cal-place-group span {
        font-size: 0.55rem;
    }

    .modal-content {
        padding: 1rem;
        margin: 0.5rem;
    }

    .modal-header h3 {
        font-size: 1rem;
    }

    .modal-slot-info {
        font-size: 0.8rem;
    }

    .pin-digit {
        width: 32px;
        height: 40px;
        font-size: 1rem;
    }

    .pin-pad {
        max-width: 140px;
        gap: 0.25rem;
    }

    .pin-key {
        width: 42px;
        height: 40px;
        font-size: 0.95rem;
    }

    .pin-email-compact {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }

    .paypal-amount {
        font-size: 1.75rem;
    }

    .usp-item {
        font-size: 0.8rem;
    }

    .usp-check {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* ==================== THEME TOGGLE ==================== */
.demo-theme-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.demo-theme-toggle:hover {
    background: #e5e7eb;
    color: #374151;
}

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

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

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

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


/* ==================== DARKMODE STYLES ==================== */
[data-theme="dark"] .browser-frame {
    background: #111827;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 24px 48px -12px rgba(0, 0, 0, 0.3),
        0 48px 80px -20px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .browser-frame:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 24px 48px -12px rgba(0, 0, 0, 0.35),
        0 56px 96px -20px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .browser-toolbar {
    background: #1e293b;
    border-bottom-color: #334155;
}

[data-theme="dark"] .browser-dots .dot-red { background: #ff5f57; }
[data-theme="dark"] .browser-dots .dot-yellow { background: #febc2e; }
[data-theme="dark"] .browser-dots .dot-green { background: #28c840; }

[data-theme="dark"] .browser-url-bar {
    background: #0f172a;
    border-color: #334155;
}

[data-theme="dark"] .browser-lock {
    color: #10b981;
}

[data-theme="dark"] .browser-url-text {
    color: #94a3b8;
}

[data-theme="dark"] .browser-action-icon {
    color: #64748b;
}

[data-theme="dark"] .demo-cursor svg {
    fill: #1e293b;
    stroke: #f1f5f9;
}

[data-theme="dark"] .demo-modal.active {
    background: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .modal-content {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .demo-app {
    background: #111827;
}

[data-theme="dark"] .demo-app .demo-header {
    background: #0f172a;
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .demo-brand {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .demo-brand-sub {
    color: #10b981;
}

[data-theme="dark"] .demo-app .demo-theme-toggle {
    background: #1e293b;
    border-color: #334155;
    color: #f59e0b;
}

[data-theme="dark"] .demo-app .demo-theme-toggle:hover {
    background: #334155;
}

[data-theme="dark"] .demo-app .demo-pin-btn {
    background: #10b981;
}

[data-theme="dark"] .demo-app .demo-nav {
    background: #1e293b;
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .demo-nav-btn {
    background: #334155;
    border-color: #475569;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .demo-nav-btn:hover {
    background: #475569;
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .demo-nav-btn.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

[data-theme="dark"] .demo-app .demo-nav-date {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .demo-calendar {
    background: #111827;
}

[data-theme="dark"] .demo-app .cal-header {
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .cal-time-header,
[data-theme="dark"] .demo-app .cal-time-cell {
    background: #1e293b;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .cal-day-header {
    background: #1e293b;
    border-left-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .cal-day-header.cal-today {
    background: #3b82f6;
    color: white;
}

[data-theme="dark"] .demo-app .cal-places {
    background: #1e293b;
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .cal-place-group {
    border-left-color: #334155;
}

[data-theme="dark"] .demo-app .cal-place-group span {
    color: #94a3b8;
    border-right-color: #334155;
}

[data-theme="dark"] .demo-app .cal-row {
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .cal-day-cells {
    border-left-color: #334155;
}

[data-theme="dark"] .demo-app .cal-slot {
    border-right-color: #334155;
}

[data-theme="dark"] .demo-app .cal-slot.free {
    background: #1e293b;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .cal-slot.free:hover {
    background: #334155;
    color: #10b981;
}

/* Booked slots - kräftigere Farben im Dark Mode wie in der echten App */
[data-theme="dark"] .demo-app .cal-slot.booked.purple {
    background: #8b5cf6;
}

[data-theme="dark"] .demo-app .cal-slot.booked.green {
    background: #10b981;
}

[data-theme="dark"] .demo-app .cal-slot.booked.yellow {
    background: #f59e0b;
    color: #ffffff;
}

[data-theme="dark"] .demo-app .cal-slot.booked.coral {
    background: #ef4444;
}

[data-theme="dark"] .demo-app .cal-slot.booked.blue {
    background: #3b82f6;
}

[data-theme="dark"] .demo-app .demo-hint {
    background: #1e293b;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .hint-pulse {
    background: #10b981;
}

/* Modal Darkmode */
[data-theme="dark"] .demo-app .demo-modal {
    background: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .demo-app .modal-content {
    background: #1e293b;
    border: 1px solid #334155;
}

[data-theme="dark"] .demo-app .modal-close {
    background: #334155;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .modal-close:hover {
    background: #475569;
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .modal-header h3 {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .modal-slot-info {
    color: #10b981;
}

/* ==================== NEW WIZARD STYLES ==================== */
.wizard-modal {
    max-width: 380px;
    padding: 1.25rem;
}

.wizard-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Compact Slot Info */
.wizard-slot-compact {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.wizard-slot-compact .price-highlight {
    color: #10b981;
    font-weight: 600;
}

/* Stepper */
.wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.stepper-step {
    display: flex;
    align-items: center;
}

.stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.stepper-step.active .stepper-circle {
    background: #10b981;
    color: white;
}

.stepper-step.completed .stepper-circle {
    background: #10b981;
    color: white;
}

.stepper-icon,
.stepper-check {
    width: 16px;
    height: 16px;
}

.stepper-check {
    display: none;
}

.stepper-step.completed .stepper-icon {
    display: none;
}

.stepper-step.completed .stepper-check {
    display: block;
}

.stepper-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}

.stepper-step.completed .stepper-line {
    background: #10b981;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: wizard-step-in 0.3s ease-out;
}

.wizard-step.active {
    display: block;
}

@keyframes wizard-step-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slot Details */
.slot-details {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.slot-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.slot-detail-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.detail-label {
    color: #6b7280;
}

.detail-value {
    color: #1f2937;
    font-weight: 500;
}

.slot-detail-row.highlight .detail-value {
    color: #10b981;
    font-weight: 700;
}

/* Method Radio Group */
.method-select-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.method-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.method-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.method-radio.compact {
    padding: 0.5rem 0.75rem;
}

.method-radio:hover {
    border-color: #d1d5db;
}

.method-radio:has(input:checked) {
    border-color: #10b981;
    background: #ecfdf5;
}

.method-radio input {
    accent-color: #10b981;
    margin: 0;
}

.method-radio-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.method-icon-small.pin {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.method-icon-small.request {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.method-icon-small.paypal {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.method-icon-small svg {
    width: 16px;
    height: 16px;
}

.method-radio-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-radio-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1f2937;
}

.method-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-pin {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.badge-request {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.badge-paypal {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.method-radio-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Step 3 Summary */
.step3-summary {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

.summary-method {
    font-size: 0.8rem;
    color: #166534;
    font-weight: 500;
}

/* PIN Section */
.pin-section {
    margin-bottom: 1rem;
}

.pin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pin-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.pin-forgot {
    font-size: 0.75rem;
    color: #6b7280;
    text-decoration: none;
}

.pin-forgot:hover {
    color: #10b981;
}

.pin-input-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.pin-input-box {
    width: 48px;
    height: 52px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    background: #f9fafb;
    color: #1f2937;
    transition: border-color 0.2s ease;
}

.pin-input-box:focus {
    outline: none;
    border-color: #a855f7;
    background: #faf5ff;
}

/* Email Section */
.email-section {
    margin-bottom: 0.75rem;
}

.email-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.email-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f9fafb;
    color: #6b7280;
}

/* Request Section */
.request-section {
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f9fafb;
    color: #6b7280;
}

/* PayPal Section */
.paypal-section {
    text-align: center;
    margin-bottom: 1rem;
}

.paypal-section.compact {
    margin-bottom: 0.75rem;
}

.paypal-amount-display {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.paypal-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

/* Legal Hint */
.legal-hint {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Wizard Buttons */
.wizard-buttons {
    display: flex;
    gap: 0.75rem;
}

.wizard-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wizard-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.wizard-btn.secondary:hover {
    background: #e5e7eb;
    color: #374151;
}

.wizard-btn.primary {
    background: #10b981;
    color: white;
}

.wizard-btn.primary:hover {
    background: #059669;
}

.wizard-btn.pin-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wizard-btn.paypal-btn-new {
    background: #0070ba;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wizard-btn.paypal-btn-new:hover {
    background: #005ea6;
}

.wizard-btn.paypal-btn-new .paypal-logo {
    font-style: italic;
    font-weight: 700;
}

/* ==================== WIZARD DARKMODE ==================== */
[data-theme="dark"] .demo-app .wizard-title {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .wizard-slot-compact {
    color: #94a3b8;
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .wizard-slot-compact .price-highlight {
    color: #34d399;
}

[data-theme="dark"] .demo-app .stepper-circle {
    background: #334155;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .stepper-step.active .stepper-circle,
[data-theme="dark"] .demo-app .stepper-step.completed .stepper-circle {
    background: #10b981;
    color: white;
}

[data-theme="dark"] .demo-app .stepper-line {
    background: #334155;
}

[data-theme="dark"] .demo-app .slot-details {
    background: #334155;
}

[data-theme="dark"] .demo-app .slot-detail-row:not(:last-child) {
    border-bottom-color: #475569;
}

[data-theme="dark"] .demo-app .detail-label {
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .detail-value {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .method-select-label {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .method-radio {
    background: #334155;
    border-color: #475569;
}

[data-theme="dark"] .demo-app .method-radio:hover {
    border-color: #64748b;
}

[data-theme="dark"] .demo-app .method-radio:has(input:checked) {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

[data-theme="dark"] .demo-app .method-radio-title {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .method-radio-desc {
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .step3-summary {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .demo-app .summary-method {
    color: #34d399;
}

[data-theme="dark"] .demo-app .pin-label,
[data-theme="dark"] .demo-app .email-label,
[data-theme="dark"] .demo-app .form-group label {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .pin-forgot {
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .pin-input-box {
    background: #334155;
    border-color: #475569;
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .pin-input-box:focus {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
}

[data-theme="dark"] .demo-app .email-input,
[data-theme="dark"] .demo-app .form-group input {
    background: #334155;
    border-color: #475569;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .paypal-amount-display {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .paypal-hint {
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .legal-hint {
    color: #64748b;
}

[data-theme="dark"] .demo-app .wizard-btn.secondary {
    background: #334155;
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .wizard-btn.secondary:hover {
    background: #475569;
    color: #f1f5f9;
}


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

[data-theme="dark"] .demo-app .wizard-slot-compact {
    color: #94a3b8;
    border-bottom-color: #334155;
}

[data-theme="dark"] .demo-app .method-select-label {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .method-radio {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .demo-app .method-radio:hover {
    border-color: #475569;
}

[data-theme="dark"] .demo-app .method-radio:has(input:checked) {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

[data-theme="dark"] .demo-app .method-radio-title {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .pin-label {
    color: #f1f5f9;
}

[data-theme="dark"] .demo-app .pin-input-box {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

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

[data-theme="dark"] .demo-app .success-msg {
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .success-time {
    background: rgba(16, 185, 129, 0.15);
    color: #94a3b8;
}

[data-theme="dark"] .demo-app .success-time strong {
    color: #34d399;
}


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


/* === booking-methods.css === */
/* ==================== BOOKING METHODS DESIGN SYSTEM ==================== */
/* Konsistentes Farbsystem für die 3 Buchungsmethoden */

:root {
    /* Buchungsmethoden Farben - Aus PlatzDa App übernommen */
    --method-pin: #a855f7;         /* Lila/Purple - PIN-Code */
    --method-request: #10b981;     /* Grün/Emerald - Buchungsanfrage */
    --method-paypal: #3b82f6;      /* Blau/Blue - PayPal */

    /* Light Variants für Backgrounds */
    --method-pin-light: rgba(168, 85, 247, 0.1);
    --method-request-light: rgba(16, 185, 129, 0.1);
    --method-paypal-light: rgba(59, 130, 246, 0.1);

    /* Border Variants */
    --method-pin-border: rgba(168, 85, 247, 0.3);
    --method-request-border: rgba(16, 185, 129, 0.3);
    --method-paypal-border: rgba(59, 130, 246, 0.3);
}

/* ==================== BOOKING METHOD CARDS - GLASSMORPHISM ==================== */
.method-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* PIN-Code Styling */
.method-pin {
    border-color: rgba(168, 85, 247, 0.3);
}

.method-pin:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.15);
}

.method-pin .feature-badge {
    background: rgba(168, 85, 247, 0.15);
    color: var(--method-pin);
    border: none;
    backdrop-filter: blur(10px);
}

/* Buchungsanfrage Styling */
.method-request {
    border-color: rgba(16, 185, 129, 0.3);
}

.method-request:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
}

.method-request .feature-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--method-request);
    border: none;
    backdrop-filter: blur(10px);
}

/* PayPal Styling */
.method-paypal {
    border-color: rgba(59, 130, 246, 0.3);
}

.method-paypal:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
}

.method-paypal .feature-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--method-paypal);
    border: none;
    backdrop-filter: blur(10px);
}


/* ==================== HERO BENEFITS BADGES ==================== */
.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid;
}

.hero-benefit svg {
    stroke: currentColor;
    flex-shrink: 0;
}


.benefit-pin {
    background: var(--method-pin-light);
    color: var(--method-pin);
    border-color: var(--method-pin-border);
}

.benefit-request {
    background: var(--method-request-light);
    color: var(--method-request);
    border-color: var(--method-request-border);
}

.benefit-paypal {
    background: var(--method-paypal-light);
    color: var(--method-paypal);
    border-color: var(--method-paypal-border);
}

/* ==================== FLOATING CARDS ==================== */
.floating-card {
    position: relative;
    padding-left: 12px;
}

.floating-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 2px;
}

.floating-card-pin::before {
    background: var(--method-pin);
}

.floating-card-request::before {
    background: var(--method-request);
}

.floating-card-paypal::before {
    background: var(--method-paypal);
}

/* ==================== METHOD ICONS ==================== */
.method-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon svg {
    width: 28px;
    height: 28px;
}

.method-icon-pin {
    background: var(--method-pin-light);
    border: 1px solid var(--method-pin-border);
    color: var(--method-pin);
}

.method-icon-request {
    background: var(--method-request-light);
    border: 1px solid var(--method-request-border);
    color: var(--method-request);
}

.method-icon-paypal {
    background: var(--method-paypal-light);
    border: 1px solid var(--method-paypal-border);
    color: var(--method-paypal);
}


/* ==================== CALENDAR BOOKINGS ==================== */
.calendar-booking-pin {
    background: var(--method-pin-light);
    border-left: 3px solid var(--method-pin);
    color: var(--method-pin);
}

.calendar-booking-request {
    background: var(--method-request-light);
    border-left: 3px solid var(--method-request);
    color: var(--method-request);
}

.calendar-booking-paypal {
    background: var(--method-paypal-light);
    border-left: 3px solid var(--method-paypal);
    color: var(--method-paypal);
}

/* ==================== PRICING BADGES ==================== */
.pricing-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-method-pin {
    background: var(--method-pin-light);
    color: var(--method-pin);
    border: 1px solid var(--method-pin-border);
}

.pricing-method-request {
    background: var(--method-request-light);
    color: var(--method-request);
    border: 1px solid var(--method-request-border);
}

.pricing-method-paypal {
    background: var(--method-paypal-light);
    color: var(--method-paypal);
    border: 1px solid var(--method-paypal-border);
}

/* ==================== METHOD COMPARISON ==================== */
.method-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.comparison-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
}


.comparison-pin {
    background: var(--method-pin-light);
    border: 2px solid var(--method-pin-border);
}

.comparison-request {
    background: var(--method-request-light);
    border: 2px solid var(--method-request-border);
}

.comparison-paypal {
    background: var(--method-paypal-light);
    border: 2px solid var(--method-paypal-border);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .method-comparison {
        grid-template-columns: 1fr;
    }

    .hero-benefit {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    .method-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}


/* === eye-catchers.css === */
/* ==================== PROFESSIONAL EYE-CATCHERS ==================== */
/* Modern SaaS Design Elements - Stripe/Vercel inspired */

/* ==================== GRADIENT ORB GLOW ==================== */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(16, 185, 129, 0.15) 0%,
        rgba(16, 185, 129, 0.05) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== SUBTLE GRID PATTERN ==================== */
.grid-pattern {
    position: relative;
}

.grid-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ==================== ACCENT LINES ==================== */
.accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.accent-line-left {
    margin: 0 0 1.5rem 0;
}

/* ==================== GLOW CARDS ==================== */
.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.3) 0%,
        transparent 50%,
        rgba(16, 185, 129, 0.1) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ==================== TRUSTED BY SECTION ==================== */
.trusted-by {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.trusted-by-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 2rem;
}

.trusted-by-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trusted-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trusted-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ==================== FEATURE HIGHLIGHT BOX ==================== */
.highlight-box {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/* ==================== BADGE STYLES ==================== */
.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

/* ==================== FLOATING INDICATOR ==================== */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ==================== NUMBER COUNTER STYLE ==================== */
.big-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gray-light) 20%,
        var(--primary) 50%,
        var(--gray-light) 80%,
        transparent 100%);
    margin: 0;
}

/* ==================== TECH STACK BAR ==================== */
.tech-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.tech-stack-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    font-weight: 600;
}

.tech-stack-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tech-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.tech-logo:hover {
    opacity: 1;
}

.tech-logo svg {
    width: 24px;
    height: 24px;
}

.tech-logo img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.15s ease;
}

.tech-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==================== WORKFLOW STEPS ==================== */
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-light);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray);
}

.workflow-step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

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

/* Method-specific workflow colors */
.method-pin .workflow-step-icon {
    background: var(--method-pin-light);
    color: var(--method-pin);
}

.method-request .workflow-step-icon {
    background: var(--method-request-light);
    color: var(--method-request);
}

.method-paypal .workflow-step-icon {
    background: var(--method-paypal-light);
    color: var(--method-paypal);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero::before {
        width: 400px;
        height: 300px;
    }

    .trusted-by-stats {
        gap: 2rem;
    }

    .trusted-stat-number {
        font-size: 2rem;
    }

    .big-number {
        font-size: 3rem;
    }

    .tech-stack {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack-logos {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .workflow-steps {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .workflow-step {
        font-size: 0.7rem;
    }
}


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


