/* ===== EMU Live Agentur – Styles ===== */
:root {
  --bg: #0b0b12;
  --bg-alt: #12121d;
  --card: #181826;
  --border: #2a2a3d;
  --text: #f2f2f7;
  --text-dim: #9d9db3;
  --cyan: #25f4ee;
  --pink: #fe2c55;
  --gradient: linear-gradient(120deg, var(--cyan), var(--pink));
  --radius: 16px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

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

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

.container-narrow { max-width: 760px; }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 32px; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

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

.lead { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 24px; }
.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #0b0b12;
  box-shadow: 0 8px 30px rgba(254, 44, 85, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37, 244, 238, .35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-small { padding: 9px 20px; font-size: .92rem; background: var(--gradient); color: #0b0b12; }
.btn-full { width: 100%; }

/* ===== Navigation ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 18, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.logo-mark {
  background: var(--gradient);
  color: #0b0b12;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: .04em;
}

.logo-text { font-size: 1.05rem; }

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 10px;
}

.logo-img-footer { height: 72px; }

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

.nav-links a:not(.btn) {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .95rem;
  transition: color .15s;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}
.lang-switch:hover { border-color: var(--cyan); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .22;
  pointer-events: none;
}
.hero-glow-1 { background: var(--cyan); top: -180px; left: -120px; }
.hero-glow-2 { background: var(--pink); bottom: -220px; right: -120px; }

.hero-inner { position: relative; }

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: .88rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 640px;
  margin: 22px auto 34px;
  color: var(--text-dim);
  font-size: 1.12rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-usp {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding: 0;
}

.hero-usp li {
  color: var(--text-dim);
  font-size: .95rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--text-dim); font-size: .9rem; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 10px;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--cyan); }

.card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.card p { color: var(--text-dim); font-size: .95rem; }

/* ===== Split (Vorteile) ===== */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.checklist { list-style: none; }
.checklist li { padding: 7px 0; color: var(--text); font-size: 1.02rem; }

/* Phone mockup */
.split-visual { display: flex; justify-content: center; }

.phone-mock {
  width: 260px;
  height: 520px;
  border-radius: 40px;
  border: 3px solid var(--border);
  background: linear-gradient(160deg, #1c1c2e, #101018);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 60px rgba(37, 244, 238, .08);
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, rgba(37,244,238,.15), transparent 60%),
              radial-gradient(circle at 75% 80%, rgba(254,44,85,.18), transparent 60%),
              #14141f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--pink);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.phone-emoji { font-size: 4rem; }
.phone-name { font-weight: 700; }
.phone-viewers { color: var(--text-dim); font-size: .85rem; }

.phone-gifts { display: flex; gap: 10px; font-size: 1.4rem; margin-top: 10px; }
.phone-gifts span { animation: floatGift 2.6s ease-in-out infinite; }
.phone-gifts span:nth-child(2) { animation-delay: .4s; }
.phone-gifts span:nth-child(3) { animation-delay: .8s; }
.phone-gifts span:nth-child(4) { animation-delay: 1.2s; }

@keyframes floatGift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #0b0b12;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step p { color: var(--text-dim); font-size: .93rem; }

/* ===== FAQ ===== */
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  list-style: none;
  position: relative;
  transition: color .15s;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--cyan);
  font-size: 1.3rem;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 22px 18px; color: var(--text-dim); }

/* ===== Onboarding-Wizard ===== */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 36px;
}

.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.wizard-step-dot span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--text-dim);
  transition: all .25s ease;
}

.wizard-step-dot small {
  color: var(--text-dim);
  font-size: .78rem;
  white-space: nowrap;
}

.wizard-step-dot.active span {
  background: var(--gradient);
  border-color: transparent;
  color: #0b0b12;
}
.wizard-step-dot.active small { color: var(--text); font-weight: 600; }

.wizard-step-dot.done span {
  background: var(--card);
  border-color: var(--cyan);
  color: var(--cyan);
}

.wizard-line {
  width: 56px;
  height: 2px;
  background: var(--border);
  margin: 0 10px 22px;
}

.wizard-panel {
  display: none;
  border: none;
  animation: panelIn .25s ease;
}
.wizard-panel.active { display: block; }

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

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.checkbox-field label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--pink); flex-shrink: 0; }
.checkbox-field a { color: var(--cyan); }

.field-error { border-color: var(--pink) !important; }

/* Honeypot unsichtbar positionieren (nicht display:none — manche Bots erkennen das) */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  background: rgba(254, 44, 85, .12);
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 16px;
}
.form-error a { color: var(--cyan); }

/* ===== Support ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform .18s ease, border-color .18s ease;
}
.support-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.support-card p { color: var(--text-dim); font-size: .92rem; }

/* ===== EMU Live Support Highlight ===== */
.btn-whatsapp {
  background: #25d366;
  color: #0b0b12;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37, 211, 102, .45); }

.support-alt { text-align: left; margin-top: 16px; }
.support-alt a { color: var(--cyan); }

.chat-mock {
  width: 100%;
  max-width: 340px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 60px rgba(37, 211, 102, .08);
}

.chat-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(37, 211, 102, .1);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #0b0b12;
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-mock-header strong { display: block; font-size: .95rem; }
.chat-mock-header small { color: #25d366; font-size: .78rem; }

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.45;
}

.msg-in {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-out {
  background: rgba(37, 211, 102, .16);
  border: 1px solid rgba(37, 211, 102, .35);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-time {
  display: inline-block;
  margin-left: 8px;
  font-size: .7rem;
  color: var(--text-dim);
}

/* ===== Regionen ===== */
.regions-grid { max-width: 900px; margin-left: auto; margin-right: auto; }

.region-cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .95rem;
}

.region-soon .region-cta {
  background: none;
  color: var(--text-dim);
  font-weight: 500;
}

#regionInvite { margin: 20px 0 8px; }
#regionInvite .btn { margin-top: 10px; }

/* ===== Schwebender Chat-Button ===== */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: #0b0b12;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 34px rgba(254, 44, 85, .4);
  transition: transform .15s ease;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab-icon { font-size: 1.2rem; }

.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 95;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.chat-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chat-popup-header button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
}

.chat-popup p { color: var(--text-dim); font-size: .92rem; margin-bottom: 16px; }
.chat-popup .btn { margin-bottom: 10px; text-align: center; }

/* ===== Formular ===== */
.form { margin-top: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 16px; display: flex; flex-direction: column; }

.form-field label {
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dim);
}

input, select, textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-note {
  text-align: center;
  color: var(--text-dim);
  font-size: .82rem;
  margin-top: 14px;
}

.form-success {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  padding: 48px 24px;
}
.success-icon { font-size: 3rem; margin-bottom: 12px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand p { color: var(--text-dim); font-size: .9rem; margin-top: 12px; }

.footer-col h4 { margin-bottom: 14px; font-size: .95rem; }
.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: .9rem;
  padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px;
  color: var(--text-dim);
  font-size: .85rem;
}

/* ===== Rechtsseiten (Impressum/Datenschutz) ===== */
.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.legal h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 1.05rem;
}
.legal p { color: var(--text-dim); margin-bottom: 10px; }
.legal a { color: var(--cyan); }
.legal-note { font-size: .95rem; }
.legal-todo {
  background: rgba(254, 44, 85, .08);
  border: 1px dashed var(--pink);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
}
.legal-back { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .hero-stats { gap: 32px; }
  .section { padding: 60px 0; }
  .wizard-step-dot small { display: none; }
  .wizard-line { width: 28px; margin-bottom: 0; }
  .chat-fab-label { display: none; }
  .chat-fab { padding: 16px; }
}
