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

:root {
    /* LIGHT THEME COLORS */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc; /* Sehr helles, edles Grau/Off-White */
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    
    /* TEXT COLORS */
    --text-primary: #0f172a; /* Fast Schwarz für guten Kontrast */
    --text-secondary: #475569; /* Dunkelgrau für Fließtext */
    --text-muted: #64748b; /* Mittelgrau für Untertitel */
    
    /* ACCENT COLORS (Rötliches Orange) */
    --accent: #e34f26; /* Starkes, rötliches Signal-Orange */
    --accent-light: #f97316;
    --accent-glow: rgba(227, 79, 38, 0.1);
    --accent-secondary: #c93d1b;
    
    /* GRADIENTS */
    --gradient-1: linear-gradient(135deg, #f05a28, #c83711);
    --gradient-2: linear-gradient(135deg, #f97316, #dc2626); /* Orange zu Rot */
    
    /* BORDERS & SHADOWS */
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -5px rgba(227, 79, 38, 0.15); /* Oranger Glow */
    
    /* RADII */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===== BACKGROUND CLASSES (Für den Block-Effekt) ===== */
.bg-primary { background: var(--bg-primary); }
.bg-secondary { 
    background: var(--bg-secondary); 
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--gradient-1) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

#p5-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; background: var(--accent-glow);
    border: 1px solid rgba(227, 79, 38, 0.2); border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.hero-title .gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem; color: var(--text-secondary);
    line-height: 1.6; max-width: 500px; margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800;
    background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s; border: none; cursor: pointer;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--gradient-1); color: white; box-shadow: 0 4px 15px rgba(227, 79, 38, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(227, 79, 38, 0.4); }
.btn-secondary { background: white; color: var(--text-primary); border: 1px solid var(--border-hover); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== SECTIONS / BLOCK SCROLL ===== */
section {
    padding: 6rem 2rem; 
}

.section-inner {
    max-width: 1200px; margin: 0 auto;
}

.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.8rem;
}

.section-label::before {
    content: ''; width: 20px; height: 2px; background: var(--gradient-1);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.6;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== COUNTER BAR ===== */
.counter-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
}
.counter-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.counter-number {
    font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800;
    background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.counter-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-top: 0.2rem; }

/* ===== GRID CARDS (General) ===== */
.problem-grid, .why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}

.problem-card, .why-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm);
}
.problem-card:hover, .why-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(227, 79, 38, 0.3);
}

.problem-icon, .why-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3, .why-card h3 {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary);
}
.problem-card p, .why-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* ===== LEISTUNGEN (COMPACT PRICING) ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem 1.8rem; 
    display: flex; flex-direction: column; transition: all 0.3s;
    position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--accent); transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(227, 79, 38, 0.03) 0%, var(--bg-card) 100%);
    box-shadow: var(--shadow-md);
}

.service-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--gradient-1); color: white;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem; border-radius: 50px;
}

.service-icon-wrap {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem; background: var(--accent-glow);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem;
}

.service-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.2rem; line-height: 1.4; }

.service-features { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.service-features li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.5rem 0; font-size: 0.85rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.service-features li:last-child { border-bottom: none; }
.service-features .check { color: var(--accent); font-weight: 700; margin-top: 1px;}

.service-price { margin-top: auto; margin-bottom: 1.2rem; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 0.2rem;}
.price-suffix { font-size: 0.8rem; color: var(--text-muted); }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.price-note strong { color: var(--text-primary); }

.service-card .btn { width: 100%; justify-content: center; padding: 0.8rem; }

/* ===== ADDONS SECTION ===== */
.addons-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.addons-header { text-align: center; margin-bottom: 2rem; }
.addons-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.addons-header p { font-size: 0.95rem; color: var(--text-secondary); }

.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.addon-card {
    background: var(--bg-primary); border: 1px dashed var(--border-hover);
    border-radius: var(--radius-sm); padding: 1.5rem; transition: border-color 0.3s, background 0.3s;
}
.addon-card:hover { border-color: var(--accent); background: var(--bg-card); }
.addon-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--accent); margin-bottom: 0.4rem; }
.addon-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== COMPARISON ===== */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.comparison-card { border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.comparison-card.bad { background: #fef2f2; border-color: #fca5a5; }
.comparison-card.good { background: #f0fdf4; border-color: #86efac; }
.comparison-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.comparison-card.bad h3 { color: #dc2626; }
.comparison-card.good h3 { color: #16a34a; }
.comparison-list li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-secondary); display: flex; gap: 0.5rem; font-weight: 500; }

/* ===== PROCESS ===== */
.process-timeline {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative;
}
.process-timeline::before {
    content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
    height: 2px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%; background: var(--bg-primary);
    border: 3px solid var(--accent); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent);
    box-shadow: 0 0 0 5px var(--bg-primary); /* Deckt die Linie ab */
}
.process-step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-primary); }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;}

/* ===== TESTIMONIAL & CTA ===== */
.testimonial-card, .cta-box {
    max-width: 800px; margin: 0 auto; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
    box-shadow: var(--shadow-md);
}
.testimonial-text { font-size: 1.1rem; font-style: italic; color: var(--text-secondary); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: white; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

.cta-box { background: linear-gradient(180deg, rgba(227, 79, 38, 0.03) 0%, rgba(255, 255, 255, 1) 100%); border-color: rgba(227, 79, 38, 0.2); }
.cta-box p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; }
.cta-contact-info { display: flex; justify-content: center; gap: 2rem; margin-top: 2.5rem; }
.cta-contact-item { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); }

/* ===== FOOTER ===== */
footer { padding: 4rem 2rem 2rem; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: var(--text-primary); font-weight: 800; margin-bottom: 1rem; text-transform: uppercase; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; padding: 0.3rem 0; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== MODAL ===== */
.modal {
    display: none; position: fixed; z-index: 2000; inset: 0;
    background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px);
}
.modal-content {
    background: var(--bg-card); margin: 10vh auto; padding: 3rem;
    border: none; border-radius: var(--radius-lg);
    width: 90%; max-width: 550px; position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.3s ease-out;
}
.close-modal {
    position: absolute; top: 1.2rem; right: 1.5rem; color: var(--text-muted);
    font-size: 2rem; font-weight: 300; cursor: pointer; line-height: 1; transition: color 0.2s;
}
.close-modal:hover { color: var(--text-primary); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
.menu-toggle { display: none; }
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2.5rem;}
    .process-timeline::before { display: none; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }
    .nav-links { display: none; }
    
    /* Hamburger Menu Icon for Light Mode */
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .menu-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: 0.3s; }
    
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 70px; left: 0; right: 0; background: var(--bg-primary);
        padding: 2rem; border-bottom: 1px solid var(--border); gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center;}
    .footer-brand p { margin: 1rem auto;}
    .cta-contact-info { flex-direction: column; gap: 1rem; }
}