/* Inter selbst gehostet — kein Google-CDN (DSGVO) */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(/fonts/inter-var-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; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(/fonts/inter-var-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; }

/* ══════════════════════════════════════════════════════════
   MICE Cloud — Shared Website Styles
   Design-System fuer alle Seiten (mice-cloud.de)
   ══════════════════════════════════════════════════════════ */

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

:root {
  --primary: #4F8EF7;
  --primary-dark: #3A6FD8;
  --accent: #10B981;
  --accent-dark: #059669;
  --bg: #0a0d13;
  --bg-card: #0d1117;
  --bg-elevated: #161b22;
  --border: #21262d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #484f58;
  --gold: #C8A97E;
  --danger: #f85149;
}

html { scroll-behavior: smooth; }

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

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-elevated); }
.text-center { text-align: center; }

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
p { margin-bottom: 16px; }
.subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.badge { display: inline-block; background: rgba(79,142,247,0.12); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.highlight { color: var(--primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(79,142,247,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-muted); background: rgba(255,255,255,0.04); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,185,129,0.3); }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,13,19,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
}
.logo { font-size: 20px; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--text); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--primary); }

/* ── Hero (Subpages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,0.08) 0%, transparent 60%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .subtitle { margin-bottom: 0; }

/* ── Feature Cards ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 56px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(79,142,247,0.3); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.feature-icon.blue { background: rgba(79,142,247,0.12); color: var(--primary); }
.feature-icon.green { background: rgba(16,185,129,0.12); color: var(--accent); }
.feature-icon.gold { background: rgba(200,169,126,0.12); color: var(--gold); }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; position: relative;
}
.price-card.featured { border-color: var(--primary); box-shadow: 0 0 40px rgba(79,142,247,0.1); }
.price-card.featured::before {
  content: "Beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 12px; letter-spacing: 0.5px;
}
.price-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-amount { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-period { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  padding: 8px 0; font-size: 14px; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(33,38,45,0.5);
}
.price-features li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.cross { color: var(--text-dim); font-weight: 700; font-size: 16px; flex-shrink: 0; }

/* ── Comparison Table ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th { color: var(--text-muted); font-weight: 600; background: var(--bg-elevated); position: sticky; top: 68px; }
.compare-table td:first-child { color: var(--text-muted); }
.compare-table tr:hover td { background: rgba(79,142,247,0.03); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden; background: var(--bg-card);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 20px 24px; font-size: 16px; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-arrow { font-size: 20px; color: var(--text-dim); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px; color: var(--text-muted); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, rgba(79,142,247,0.1) 0%, rgba(16,185,129,0.06) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section .subtitle { margin-bottom: 32px; }

/* ── Trust Bar ── */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.trust-icon { width: 20px; height: 20px; color: var(--accent); }

/* ── Team / About ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(79,142,247,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 32px; color: var(--primary);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--text-muted); font-size: 14px; }

/* ── Value Props ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.value-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px;
}
.value-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(79,142,247,0.12); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ── Legal Pages ── */
.legal-content { padding: 140px 0 80px; }
.legal-content h1 { margin-bottom: 32px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; color: var(--text); }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ── Use Cases ── */
.usecase-hero { padding: 140px 0 60px; background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,0.08) 0%, transparent 60%); }
.usecase-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.benefit-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.benefit-check { color: var(--accent); font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.benefit-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ── Footer ── */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-muted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-dim); }

/* ── Mobile Menu ── */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-elevated); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .trust-items { gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
  .price-calc-input { flex-direction: column; align-items: stretch; gap: 12px; }
  .wizard-demo-nav { flex-wrap: wrap; gap: 12px; }
  .dash-mockup-donut-wrap { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   Produkt-Einblicke: interaktive Demo-Komponenten
   (Beispieldaten, kein Backend-Zugriff — siehe site.js)
   ══════════════════════════════════════════════════════════ */

/* ── Gemeinsamer Demo-Rahmen ── */
.demo-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.demo-widget-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin-bottom: 20px; }
.demo-widget-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(16,185,129,0.15); }

/* ── Wizard-Mini-Demo ── */
.wizard-demo-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.wizard-demo-steps .wizard-demo-step-line { flex: 1; height: 2px; background: var(--border); }
.wizard-demo-step-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; background: var(--bg-elevated); color: var(--text-dim); border: 1px solid var(--border); transition: all 0.25s; flex-shrink: 0; }
.wizard-demo-step-dot.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.wizard-demo-step-dot.done { background: var(--accent); color: #fff; border-color: var(--accent); }
.wizard-demo-panel { display: none; }
.wizard-demo-panel.active { display: block; animation: demoFadeIn 0.3s ease; }
@keyframes demoFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.wizard-demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.wizard-demo-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 18px 14px; text-align: center; cursor: pointer; transition: all 0.2s; }
.wizard-demo-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.wizard-demo-card.selected { border-color: var(--primary); background: rgba(79,142,247,0.08); }
.wizard-demo-card svg { color: var(--primary); margin-bottom: 8px; }
.wizard-demo-card .name { font-size: 13px; font-weight: 600; }
.wizard-demo-room { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; margin-bottom: 10px; cursor: pointer; transition: all 0.2s; }
.wizard-demo-room:hover { border-color: var(--primary); }
.wizard-demo-room.selected { border-color: var(--accent); background: rgba(16,185,129,0.06); }
.wizard-demo-room .r-name { font-weight: 600; font-size: 14px; }
.wizard-demo-room .r-meta { font-size: 12px; color: var(--text-muted); }
.wizard-demo-room .r-price { font-weight: 700; color: var(--primary); font-size: 15px; white-space: nowrap; }
.wizard-demo-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.wizard-demo-summary-row:last-of-type { border-bottom: none; }
.wizard-demo-summary-row strong { color: var(--text); }
.wizard-demo-total { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--border); font-size: 20px; font-weight: 800; }
.wizard-demo-total .amount { color: var(--accent); }
.wizard-demo-nav { display: flex; justify-content: space-between; margin-top: 24px; }

/* ── Preis-Rechner ── */
.price-calc-input { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.price-calc-input input[type="range"] { flex: 1; min-width: 200px; accent-color: var(--primary); }
.price-calc-value { font-size: 32px; font-weight: 800; color: var(--primary); min-width: 60px; }
.price-calc-tier-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,126,0.12); color: var(--gold); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 20px; margin-bottom: 24px; }
.price-calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.price-calc-plan { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; transition: border-color 0.25s, box-shadow 0.25s; }
.price-calc-plan.recommended { border-color: var(--primary); box-shadow: 0 0 24px rgba(79,142,247,0.12); }
.price-calc-plan .p-name { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.price-calc-plan .p-amount { font-size: 28px; font-weight: 800; }
.price-calc-plan .p-amount span { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.price-calc-note { font-size: 12px; color: var(--text-dim); margin-top: 20px; text-align: center; }

/* ── Dashboard-Mockup ── */
.dash-mockup-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-mockup-kpi { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.dash-mockup-kpi .k-label { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.dash-mockup-kpi .k-value { font-size: 22px; font-weight: 800; }
.dash-mockup-kpi .k-trend { font-size: 12px; font-weight: 600; margin-top: 4px; }
.dash-mockup-kpi .k-trend.up { color: var(--accent); }
.dash-mockup-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 0 4px; }
.dash-mockup-bar { flex: 1; background: linear-gradient(180deg, var(--primary) 0%, rgba(79,142,247,0.3) 100%); border-radius: 4px 4px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.dash-mockup-chart.revealed .dash-mockup-bar { transform: scaleY(1); }
.dash-mockup-donut-wrap { display: flex; align-items: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.dash-mockup-donut { width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0; }
.dash-mockup-legend { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-muted); }
.dash-mockup-legend .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; }

/* ── Scroll-Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash-mockup-bar { transition: none; transform: scaleY(1); }
}

/* ── Header: Schatten beim Scrollen ── */
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.28); }

/* ── Trust-Grid (ersetzt personenbezogene Testimonials) ── */
.trust-grid-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-grid-item .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
