:root {
    --bg: #0a0a0f;
    --bg-alt: #12121a;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e8e8ee;
    --text-dim: #9a9aad;
    --gold: #f5c542;
    --gold-2: #ff9f43;
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Hintergrund-Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}
.bg-glow-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -150px; }
.bg-glow-2 { width: 500px; height: 500px; background: #4361ee; bottom: -150px; left: -150px; }

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid var(--card-border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1205;
    box-shadow: 0 4px 24px rgba(245, 197, 66, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245, 197, 66, 0.45); }
.btn-ghost {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--card-border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-small { padding: 8px 20px; font-size: 0.85rem; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1205; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }

/* Hero */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    z-index: 1;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(245, 197, 66, 0.1);
    border: 1px solid rgba(245, 197, 66, 0.25);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* Hero Mock-Dashboard */
.hero-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.hero-card-dots {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--card-border);
}
.hero-card-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.hero-card-dots span:first-child { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }
.hero-card-body { display: flex; min-height: 260px; }
.mock-sidebar {
    width: 160px;
    padding: 24px 18px;
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mock-line { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.w-40 { width: 40%; } .w-60 { width: 60%; } .w-70 { width: 70%; } .w-80 { width: 80%; }
.mock-main { flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.mock-stat-row { display: flex; gap: 16px; }
.mock-stat {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px;
    text-align: left;
}
.mock-stat b { display: block; font-size: 1.3rem; color: var(--gold); }
.mock-stat small { color: var(--text-dim); font-size: 0.78rem; }
.mock-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 0 8px;
}
.mock-chart div {
    flex: 1;
    background: linear-gradient(180deg, var(--gold), rgba(245, 197, 66, 0.2));
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    animation: barGrow 1s ease-out;
}
@keyframes barGrow { from { height: 0 !important; } }

/* Sections */
.section { position: relative; padding: 96px 0; z-index: 1; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
}
.section-sub { text-align: center; color: var(--text-dim); margin-bottom: 56px; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(245, 197, 66, 0.35); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.94rem; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
}
.stat span { color: var(--text-dim); font-size: 0.9rem; }

/* Pricing */
.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured {
    border-color: rgba(245, 197, 66, 0.5);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.06), var(--card));
}
.price-tag {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1205;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
}
.price { font-size: 1.9rem; font-weight: 800; color: var(--gold); margin: 8px 0 20px; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 24px; }
.price-card li { padding: 6px 0; color: var(--text-dim); font-size: 0.92rem; }
.price-card .btn { text-align: center; }

/* CTA */
.section-cta { padding-bottom: 120px; }
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), rgba(67, 97, 238, 0.08));
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 72px 32px;
}
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--text-dim); margin-bottom: 32px; }

/* Footer */
.footer { border-top: 1px solid var(--card-border); padding: 28px 0; position: relative; z-index: 1; }
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.88rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* Scroll-Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 820px) {
    .grid-3 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: rgba(10, 10, 15, 0.97);
        padding: 20px 24px;
        border-bottom: 1px solid var(--card-border);
    }
    .mock-sidebar { display: none; }
    .hero { padding-top: 130px; }
}
