/* ===== MARKETING WEBSITE STYLES - MODERN 2026 ===== */
/* Bento Grid, SVG Icons, Gradient Borders, No Emojis */

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    --gradient-card: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, rgba(139,92,246,0.05) 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.nav-brand-icon { margin-right: 0.5rem; font-size: 1.75rem; }

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

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

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

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

/* ===== HERO ===== */
.hero {
    background: var(--gradient-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 9rem 0 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.6) 0%, transparent 70%);
    top: -200px; right: -150px;
}

.hero-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, transparent 70%);
    bottom: -150px; left: -150px;
    animation-delay: -8s;
}

.hero-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(236,72,153,0.4) 0%, transparent 70%);
    top: 40%; left: 15%;
    animation-delay: -15s;
}

.hero-orb-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.4) 0%, transparent 70%);
    top: 25%; right: 20%;
    animation-delay: -20s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-25px, 25px) scale(0.95); }
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-card);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ===== FEATURES - BENTO GRID ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(99,102,241,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.bento-large {
    grid-column: span 2;
}

.bento-medium {
    grid-row: span 1;
}

.bento-dark {
    background: var(--gradient-dark);
    border-color: transparent;
}

.bento-dark .bento-title,
.bento-dark .bento-description { color: white; }
.bento-dark .bento-description { color: rgba(255,255,255,0.7); }
.bento-dark .bento-icon svg { stroke: white; }

.bento-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.bento-icon svg {
    stroke: var(--primary);
}

.bento-icon-highlight {
    background: var(--gradient-primary);
}

.bento-icon-highlight svg {
    stroke: white;
}

.bento-dark .bento-icon {
    background: rgba(255,255,255,0.1);
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bento-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.bento-visual {
    margin-top: 1.5rem;
}

.timer-demo {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-project {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
}

.stat-icon svg {
    stroke: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.pricing-header {
    background: var(--gradient-dark);
    padding: 2.5rem;
    text-align: center;
}

.pricing-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-prices {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-option {
    text-align: center;
}

.pricing-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.pricing-period {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.pricing-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

.pricing-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.pricing-body {
    padding: 2.5rem;
}

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

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.pricing-features-list svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.pricing-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.pricing-example {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.pricing-example p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.cta-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.6) 0%, transparent 70%);
    top: -150px; right: -100px;
}

.cta-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, transparent 70%);
    bottom: -150px; left: -100px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: var(--bg-tertiary);
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--text-primary);
}

/* Mobile Controls Container (Dark Mode Toggle + Menu Button) */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-dark-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.mobile-dark-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.mobile-dark-toggle .icon-sun {
    display: none;
}

.mobile-dark-toggle .icon-moon {
    display: block;
}

.dark .mobile-dark-toggle .icon-sun {
    display: block;
}

.dark .mobile-dark-toggle .icon-moon {
    display: none;
}

.dark .mobile-dark-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
}

.mobile-menu {
    background: white;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.mobile-nav-link:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.hidden { display: none !important; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Staggered bento animations */
.bento-card:nth-child(1) { transition-delay: 0.05s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.15s; }
.bento-card:nth-child(4) { transition-delay: 0.2s; }
.bento-card:nth-child(5) { transition-delay: 0.25s; }
.bento-card:nth-child(6) { transition-delay: 0.3s; }
.bento-card:nth-child(7) { transition-delay: 0.35s; }
.bento-card:nth-child(8) { transition-delay: 0.4s; }
.bento-card:nth-child(9) { transition-delay: 0.45s; }
.bento-card:nth-child(10) { transition-delay: 0.5s; }
.bento-card:nth-child(11) { transition-delay: 0.55s; }
.bento-card:nth-child(12) { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-orb-3, .hero-orb-4 {
        display: none;
    }

    .nav-menu-desktop {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 1;
    }

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

    .pricing-prices {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-divider {
        width: 100%;
        height: 1px;
    }

    .features,
    .pricing,
    .cta-section {
        padding: 4rem 0;
    }

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: white;
    padding: 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

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

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

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

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

.cookie-btn-accept:hover {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

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

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

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none !important;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block !important;
}

/* ===== DARK MODE ===== */
.dark {
    --primary: #22d3ee;
    --primary-dark: #0891b2;
    --primary-light: #67e8f9;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --border: #334155;
    --border-light: #475569;
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    --gradient-card: linear-gradient(135deg, rgba(34,211,238,0.1) 0%, rgba(6,182,212,0.1) 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -1px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -2px rgba(0,0,0,0.3);
}

.dark body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Dark Mode Buttons */
.dark .btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

.dark .btn-primary:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.dark .btn-secondary {
    border-color: #22d3ee;
    color: #22d3ee;
}

.dark .btn-secondary:hover {
    background: rgba(34, 211, 238, 0.1);
}

/* Dark Mode Links */
.dark a:not(.btn):not(.nav-link):not(.nav-brand):not(.footer-link):not(.mobile-nav-link) {
    color: #22d3ee;
}

.dark a:not(.btn):not(.nav-link):not(.nav-brand):not(.footer-link):not(.mobile-nav-link):hover {
    color: #67e8f9;
}

/* Dark Mode Header */
.dark .header {
    background: #1e293b;
    border-bottom-color: var(--border);
}

.dark .header.scrolled {
    background: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.4);
}

.dark .nav-brand {
    color: #22d3ee;
}

.dark .nav-link {
    color: var(--text-secondary);
}

.dark .nav-link:hover {
    color: #22d3ee;
}

.dark .nav-link::after {
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}

/* Dark Mode Mobile Menu */
.dark .mobile-menu {
    background: #1e293b;
    border-color: var(--border);
}

.dark .mobile-nav-link {
    color: var(--text-secondary);
    border-bottom-color: var(--border);
}

.dark .mobile-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

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

.dark .section-label {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    color: #22d3ee;
}

.dark .section-title {
    color: var(--text-primary);
}

.dark .section-subtitle {
    color: var(--text-secondary);
}

/* Dark Mode Bento Icons */
.dark .bento-icon {
    background: rgba(34, 211, 238, 0.1);
}

.dark .bento-icon svg {
    stroke: #22d3ee;
}

.dark .bento-icon-highlight {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

/* Dark Mode Bento Cards */
.dark .bento-card {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

.dark .bento-card:hover {
    border-color: var(--primary-light);
}

.dark .bento-title {
    color: var(--text-primary);
}

.dark .bento-description {
    color: var(--text-secondary);
}

.dark .bento-feature-item {
    color: var(--text-secondary);
}

/* Dark Mode Stats Section */
.dark .stats-section {
    background: var(--bg-primary);
}

.dark .stat-card {
    background: var(--bg-secondary);
    border-color: var(--border);
}

.dark .stat-value {
    color: var(--text-primary);
}

.dark .stat-label {
    color: var(--text-secondary);
}

.dark .stat-icon {
    background: rgba(34, 211, 238, 0.1);
}

.dark .stat-icon svg {
    stroke: #22d3ee;
}

.dark .stat-card:hover {
    border-color: #22d3ee;
}

/* Dark Mode Pricing */
.dark .pricing {
    background: var(--bg-secondary);
}

.dark .pricing-card-modern {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

.dark .pricing-body {
    background: var(--bg-tertiary);
}

.dark .pricing-feature {
    color: var(--text-secondary);
}

.dark .pricing-example {
    background: var(--bg-primary);
    border-color: var(--border);
    color: var(--text-secondary);
}

/* Dark Mode FAQ */
.dark .faq {
    background: var(--bg-secondary);
}

.dark .faq-item {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

.dark .faq-item:hover {
    border-color: #22d3ee;
}

.dark .faq-question {
    color: var(--text-primary);
}

.dark .faq-icon {
    color: #22d3ee;
}

.dark .faq-answer {
    color: var(--text-secondary);
}

/* Dark Mode Footer */
.dark .footer {
    background: #0f172a;
    border-top-color: var(--border);
}

.dark .footer-title {
    color: var(--text-primary);
}

.dark .footer-link {
    color: var(--text-secondary);
}

.dark .footer-link:hover {
    color: var(--text-primary);
}

.dark .footer-bottom {
    border-top-color: var(--border);
    color: var(--text-muted);
}

/* Dark Mode Legal Pages (Impressum, Datenschutz, AGB, Kontakt) */
.dark h1, .dark h2, .dark h3, .dark h4 {
    color: var(--text-primary);
}

.dark p {
    color: var(--text-secondary);
}

.dark a:not(.btn):not(.nav-link):not(.nav-brand):not(.footer-link):not(.mobile-nav-link) {
    color: var(--primary-light);
}

/* Dark Mode Contact Form */
.dark input[type="text"],
.dark input[type="email"],
.dark select,
.dark textarea {
    background: var(--bg-tertiary);
    border-color: var(--border);
    color: var(--text-primary);
}

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

.dark label {
    color: var(--text-primary);
}

/* Dark Mode Cookie Banner */
.dark .cookie-banner {
    background: #1e293b;
}

.dark .cookie-btn {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.dark-mode-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.dark-mode-toggle .icon-sun {
    display: none;
}

.dark-mode-toggle .icon-moon {
    display: block;
}

.dark .dark-mode-toggle .icon-sun {
    display: block;
}

.dark .dark-mode-toggle .icon-moon {
    display: none;
}

/* Dark Mode Mobile Button */
.dark-mode-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--bg-primary);
}

.contact-container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

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

.form-group-lg {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox {
    margin-top: 0.25rem;
    accent-color: var(--primary);
}

.form-checkbox-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-link {
    color: var(--primary);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.contact-info-title {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-text {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-link {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-link:hover {
    text-decoration: underline;
}

.contact-info-note {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-info-highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-info-title-highlight {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info-text-highlight {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.alert-list {
    margin: 0;
    padding-left: 1.5rem;
}

/* Dark Mode Contact */
.dark .contact-section {
    background: var(--bg-primary);
}

.dark .contact-form {
    background: var(--bg-secondary);
    border-color: var(--border);
}

.dark .form-input {
    background: var(--bg-tertiary);
    border-color: var(--border);
    color: var(--text-primary);
}

.dark .form-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.dark .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%9ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.dark .contact-info-card {
    background: var(--bg-secondary);
    border-color: var(--border);
}

.dark .contact-info-highlight {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.4);
}

.dark .contact-info-text-highlight {
    color: var(--primary-light);
}

.dark .alert-success {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #6ee7b7;
}

.dark .alert-error {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #fca5a5;
}

/* ===== LEGAL PAGES (Impressum, Datenschutz, AGB) ===== */
.legal-page {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

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

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.legal-toc {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.legal-toc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-toc ol {
    padding-left: 1.25rem;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.legal-toc li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    break-inside: avoid;
}

.legal-toc a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-toc a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .legal-toc ol {
        columns: 1;
    }
}

.dark .legal-toc {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .legal-toc h3 {
    color: rgba(255, 255, 255, 0.95);
}

.dark .legal-toc li {
    color: rgba(255, 255, 255, 0.7);
}

.dark .legal-toc a {
    color: var(--secondary);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-info-box {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
}

.legal-info-box p {
    margin-bottom: 0;
}

.legal-date {
    display: inline-block;
    background: var(--bg-tertiary);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Dark Mode Legal Pages */
.dark .legal-page {
    background: var(--bg-primary);
}

.dark .legal-content {
    background: var(--bg-secondary);
    border-color: var(--border);
}

.dark .legal-content h2 {
    border-bottom-color: #22d3ee;
}

.dark .legal-content a {
    color: #22d3ee;
}

.dark .legal-content a:hover {
    color: #67e8f9;
}

.dark .legal-info-box {
    background: var(--bg-tertiary);
    border-left-color: #22d3ee;
}

.dark .legal-date {
    background: var(--bg-tertiary);
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}
