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

:root {
    --bg: #FAFAF8;
    --dark: #111111;
    --text: #2D2D2D;
    --muted: #717171;
    --accent: #E8732A;
    --accent-hover: #D4641E;
    --accent-light: rgba(232,115,42,0.08);
    --warm: #F3EDE6;
    --border: #E5E1DB;
    --card: #FFFFFF;
    --green: #2D8C4E;
    --red: #C0392B;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
    --max-w: 1140px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.8px; }
h3 { font-size: 1.15rem; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: var(--radius);
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s var(--ease); border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,115,42,0.35); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,250,248,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 6px; font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); letter-spacing: -1px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-links .btn-primary { background: var(--dark); border-color: var(--dark); color: #fff; }
.nav-links .btn-primary:hover { background: #333; border-color: #333; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 100%); }
.hero-container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; animation: heroFadeIn 1s var(--ease) both; }
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    display: inline-block; padding: 6px 16px; border-radius: 40px;
    background: rgba(232,115,42,0.15); color: var(--accent);
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.hero-trust-item strong { color: #fff; }
.hero-trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* ===== STATS ===== */
.stats { padding: 0; margin-top: -40px; position: relative; z-index: 2; }
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--card); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.stat { padding: 40px 32px; text-align: center; }
.stat:not(:last-child) { border-right: 1px solid var(--border); }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--accent); margin-bottom: 6px; letter-spacing: -1px; }
.stat-label { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== SECTION STYLING ===== */
.section { padding: 110px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; padding: 5px 14px; border-radius: 40px;
    background: var(--accent-light); color: var(--accent);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-tag-dark { background: rgba(232,115,42,0.15); }
.section-sub { color: var(--muted); max-width: 520px; margin: 12px auto 0; font-size: 1.05rem; }
.section-dark { background: var(--dark); color: #ddd; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub { color: #888; }
.section-warm { background: var(--warm); }

/* ===== PROBLEMS ===== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
    background: var(--card); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.problem-img { width: 100%; height: 200px; overflow: hidden; }
.problem-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.problem-card:hover .problem-img img { transform: scale(1.05); }
.problem-card h3 { padding: 24px 24px 8px; }
.problem-card p { padding: 0 24px 28px; color: var(--muted); font-size: 0.92rem; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
    display: flex; gap: 20px; padding: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); transition: background 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-icon { flex-shrink: 0; width: 120px; height: 100px; border-radius: var(--radius); overflow: hidden; }
.feature-icon img { width: 100%; height: 100%; object-fit: cover; }
.feature-text { padding: 8px 0; }
.feature-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-card p { color: #999; font-size: 0.9rem; line-height: 1.6; }

/* ===== VORHER NACHHER ===== */
.comparison { display: flex; align-items: flex-start; gap: 24px; justify-content: center; }
.comparison-side { flex: 1; max-width: 460px; }
.comparison-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--accent); font-weight: 700;
    padding-top: 120px; flex-shrink: 0;
}
.comparison-label {
    text-align: center; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; padding: 8px 20px;
    border-radius: 40px; display: inline-block; margin-bottom: 16px;
}
.comparison-label-bad { background: rgba(192,57,43,0.1); color: var(--red); }
.comparison-label-good { background: rgba(45,140,78,0.1); color: var(--green); }

/* Fake browser */
.fake-browser { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.fake-browser-bar {
    background: #F0F0F0; padding: 10px 14px; display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid #ddd;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }
.fake-url {
    margin-left: 12px; font-size: 0.7rem; color: #999;
    background: #fff; padding: 3px 10px; border-radius: 4px; flex: 1;
    font-family: monospace; border: 1px solid #e0e0e0;
}
.fake-url-good { color: var(--green); }

/* BAD site */
.fake-site-bad { background: #f5f5f5; padding: 0; min-height: 320px; }
.fake-header-bad { background: #336699; padding: 10px 16px; }
.fake-logo-bad { color: #fff; font-family: 'Times New Roman', serif; font-size: 1.1rem; font-weight: bold; }
.fake-hero-bad { padding: 20px 16px; background: #fff; border-bottom: 2px solid #336699; }
.fake-hero-bad-text { font-family: 'Comic Sans MS', 'Times New Roman', serif; font-size: 1.1rem; color: #336699; font-weight: bold; margin-bottom: 8px; }
.fake-hero-bad-sub { font-size: 0.75rem; color: #666; line-height: 1.5; font-family: 'Times New Roman', serif; }
.fake-content-bad { padding: 16px; }
.fake-block-bad { width: 100%; height: 60px; background: #ddd; border: 1px solid #ccc; margin-bottom: 12px; }
.fake-text-bad { margin-bottom: 16px; }
.fake-line { height: 8px; background: #e0e0e0; border-radius: 4px; margin-bottom: 6px; }
.fake-counter { font-size: 0.65rem; color: #999; text-align: center; margin-bottom: 8px; font-family: 'Courier New', monospace; }
.fake-jimdo { font-size: 0.6rem; color: #bbb; text-align: center; padding: 8px; border-top: 1px solid #eee; }

/* GOOD site */
.fake-site-good { background: #fff; min-height: 320px; position: relative; }
.fake-header-good { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
.fake-logo-good { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.fake-nav-good { display: flex; gap: 12px; align-items: center; }
.fake-nav-good span { font-size: 0.65rem; color: #888; }
.fake-cta-good { background: var(--accent); color: #fff !important; padding: 4px 10px; border-radius: 6px; font-weight: 600; }
.fake-hero-good { padding: 28px 16px 20px; background: linear-gradient(135deg, #1a1a2e, #16213e); }
.fake-hero-good-text { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 14px; line-height: 1.3; }
.fake-hero-good-btns { display: flex; gap: 8px; }
.fake-btn-good { background: var(--accent); color: #fff; font-size: 0.65rem; padding: 6px 12px; border-radius: 6px; font-weight: 600; }
.fake-btn-outline-good { border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.65rem; padding: 5px 12px; border-radius: 6px; }
.fake-cards-good { display: flex; gap: 8px; padding: 16px; }
.fake-card-good { flex: 1; background: #f8f8f8; border-radius: 8px; padding: 14px 8px; text-align: center; border: 1px solid #eee; }
.fake-card-icon { font-size: 1.2rem; margin-bottom: 4px; }
.fake-card-title { font-size: 0.65rem; font-weight: 600; color: var(--dark); }
.fake-chat-bubble {
    position: absolute; bottom: 12px; right: 12px;
    background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 600;
    padding: 8px 14px; border-radius: 16px 16px 4px 16px;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 12px rgba(232,115,42,0.3);
}
.fake-chat-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: chatPulse 1.5s infinite; }
@keyframes chatPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.comparison-problems, .comparison-wins {
    list-style: none; margin-top: 20px; padding: 0;
}
.comparison-problems li, .comparison-wins li {
    padding: 6px 0 6px 24px; font-size: 0.88rem; position: relative; color: var(--text);
}
.comparison-problems li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.comparison-wins li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== PAKETE ===== */
.pakete-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin: 0 auto; }
.paket-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 44px 32px 36px; position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.paket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.paket-highlight { border-color: var(--accent); border-width: 2px; }
.paket-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
    padding: 5px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1.5px;
}
.paket-label { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.paket-setup { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--dark); letter-spacing: -1px; }
.paket-setup span { font-size: 0.9rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.paket-monthly { font-size: 1rem; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.paket-monthly span { font-weight: 400; color: var(--muted); }
.paket-divider { height: 1px; background: var(--border); margin: 20px 0; }
.paket-card ul { list-style: none; margin-bottom: 28px; }
.paket-card li { padding: 9px 0 9px 28px; font-size: 0.9rem; color: var(--text); position: relative; }
.paket-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 0.95rem; }
.pakete-note { text-align: center; margin-top: 32px; color: var(--muted); font-size: 0.92rem; font-style: italic; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: center; }
.about-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 { text-align: left; margin-bottom: 20px; }
.about-text p { margin-bottom: 14px; font-size: 1rem; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-box {
    text-align: center; color: #fff;
    padding: 80px 48px; border-radius: var(--radius-xl);
    position: relative; overflow: hidden;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&q=80') center/cover no-repeat;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.88), rgba(232,115,42,0.75));
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin-bottom: 16px; }
.cta-box p { color: #999; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== KONTAKT ===== */
.contact-grid { display: flex; gap: 20px; max-width: 700px; margin: 0 auto; }
.contact-card {
    flex: 1; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
    transition: all 0.3s var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-icon { font-size: 1.6rem; margin-bottom: 12px; }
.contact-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ===== LEGAL ===== */
.legal-section { background: var(--warm); }
.legal-section h2 { margin-bottom: 24px; }
.legal-section h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1.05rem; }
.legal-section p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-left p { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.footer-right { display: flex; gap: 24px; }
.footer-right a { font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.footer-right a:hover { color: var(--dark); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
    .comparison { flex-direction: column; align-items: center; }
    .comparison-arrow { padding-top: 0; transform: rotate(90deg); font-size: 1.5rem; }
    .comparison-side { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(250,250,248,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px 24px; gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .stats-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
    .stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
    .stats { margin-top: -20px; }
    .problems-grid { grid-template-columns: 1fr; }
    .pakete-grid { grid-template-columns: 1fr; max-width: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-text h2 { text-align: center; }
    .about-placeholder { aspect-ratio: 1/1; max-width: 280px; margin: 0 auto; }
    .contact-grid { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .section { padding: 72px 0; }
    .hero-actions { flex-direction: column; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hero-trust-divider { display: none; }
    .cta-box { padding: 48px 24px; }
    .feature-card { flex-direction: column; }
    .feature-icon { width: 100%; height: 140px; }
    .fake-nav-good { display: none; }
}
