@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --purple: #7B61FF;
  --blue: #006DFF;
  --orange: #F4743B;
  --bg: #08080F;
  --surface: #0F0F1A;
  --surface2: #141428;
  --border: rgba(123,97,255,0.15);
  --text: #F0F0FF;
  --muted: #7878A0;
  --grad: linear-gradient(135deg, var(--purple), var(--blue));
  --grad2: linear-gradient(135deg, var(--blue), var(--orange));
}

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

html { scroll-behavior: smooth; }

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

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,97,255,0.12); border: 1px solid rgba(123,97,255,0.3);
  color: var(--purple); font-size: 0.78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; /* Leicht reduziert, um Platz zu sparen */
  border-radius: 12px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none; transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap; /* Verhindert den hässlichen Zeilenumbruch! */
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 32px rgba(123,97,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(123,97,255,0.5); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(123,97,255,0.1); border-color: var(--purple); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(8,8,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all .3s;
}
nav.scrolled { padding: 12px 0; background: rgba(8,8,15,0.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: var(--grad); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.logo-text span { color: var(--purple); }
.nav-links { display: flex; gap: 28px; list-style: none; } /* Etwas Platz gespart für die neuen Buttons */
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; }

/* ── LANGUAGE SWITCHER ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px; /* Logischer Abstand vor der Trennlinie */
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px; /* Logischer Abstand nach der Trennlinie */
}
.lang-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.lang-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.lang-btn.active {
  color: var(--purple);
  background: rgba(123,97,255,0.12);
  border-color: rgba(123,97,255,0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,97,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,97,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,255,0.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,109,255,0.12) 0%, transparent 70%);
  bottom: 10%; right: 10%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-tag { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
}
.hero h1 .grad-text {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; max-width: 480px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.stat { }
.stat-num { font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.hero-float-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

/* Vergrößerter Hero Bizzi */
.bizzi-hero-main {
  width: 380px; 
  max-width: 90vw;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(123,97,255,0.35));
  animation: float 4s ease-in-out infinite;
}

.hero-status-strip {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(123,97,255,0.2);
  border-radius: 16px; padding: 16px 20px; width: 100%;
  backdrop-filter: blur(10px);
}
.hero-status-title {
  display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ── CTA BANNER LAYOUT ── */
.cta-banner {
  display: flex; align-items: center; gap: 48px;
  justify-content: space-between; text-align: left;
}
.cta-text { flex: 1; }
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-text p { color: var(--muted); font-size: 1rem; margin-bottom: 28px; }
.cta-bizzi { flex-shrink: 0; }

/* Vergrößerter CTA Bizzi */
.bizzi-cta-img {
  width: 380px; 
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(123,97,255,0.3));
  animation: float 4s ease-in-out infinite;
  display: block;
}

@media (max-width: 700px) {
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-text { order: 1; }
  .cta-bizzi { order: 0; }
}

.agent-list { display: flex; flex-direction: column; gap: 10px; }
.agent-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px 14px;
}
.agent-dot { width: 8px; height: 8px; border-radius: 50%; background: #30d158; box-shadow: 0 0 6px #30d158; }
.agent-dot.orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.agent-dot.blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.agent-name { font-size: 0.82rem; font-weight: 500; flex: 1; }
.agent-status { font-size: 0.72rem; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-top: 16px; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--surface); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: all .3s ease; cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px; opacity: 0;
  background: linear-gradient(135deg, rgba(123,97,255,0.08), transparent);
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(123,97,255,0.4); box-shadow: 0 20px 60px rgba(123,97,255,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.service-tag { display: inline-flex; margin-top: 16px; font-size: 0.72rem; font-weight: 600; color: var(--purple); background: rgba(123,97,255,0.1); padding: 4px 10px; border-radius: 6px; }

.ic-purple { background: rgba(123,97,255,0.15); }
.ic-blue { background: rgba(0,109,255,0.15); }
.ic-orange { background: rgba(244,116,59,0.15); }

/* ── HOW IT WORKS ── */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 36px; left: calc(16.6% + 20px);
  right: calc(16.6% + 20px); height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--orange));
}
.step { flex: 1; text-align: center; padding: 0 20px; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; position: relative; z-index: 1;
  border: 2px solid transparent;
}
.step:nth-child(1) .step-num { background: rgba(123,97,255,0.12); border-color: var(--purple); color: var(--purple); }
.step:nth-child(2) .step-num { background: rgba(0,109,255,0.12); border-color: var(--blue); color: var(--blue); }
.step:nth-child(3) .step-num { background: rgba(244,116,59,0.12); border-color: var(--orange); color: var(--orange); }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ── WHY ── */
.why { background: var(--surface); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(123,97,255,0.12); border: 1px solid rgba(123,97,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.why-visual {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px; text-align: center;
}
.why-visual-title { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.06em; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px; text-align: center;
}
.metric-val { font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.metric-val.p { background: var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.metric-val.o { background: var(--grad2); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.metric-lbl { font-size: 0.78rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(123,97,255,0.12), rgba(0,109,255,0.08));
  border: 1px solid rgba(123,97,255,0.2); border-radius: 28px;
  padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,255,0.15) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner .btn-primary { font-size: 1rem; padding: 16px 36px; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.87rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: all .2s;
}
.social-link:hover { background: rgba(123,97,255,0.15); border-color: var(--purple); color: var(--purple); }

/* ── MOBILE ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps::before { display: none; }
  .steps { flex-direction: column; gap: 32px; }
  
  /* Lang-Switch auf dem Handy anpassen */
  .lang-switch { border-left: none; padding-left: 0; margin-left: 0; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-banner { padding: 48px 24px; }
  .hero-btns { flex-direction: column; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── LOGO BIZZI IMAGE ── */
.logo-bizzi {
  width: 44px; height: auto; display: block; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(123,97,255,0.4));
}
footer .logo-bizzi { width: 36px; }

/* ── BIZZI SECTION ACCENTS (Überlappung behoben) ── */
.bizzi-section-accent { 
  position: relative; 
  height: 0; 
  overflow: visible; 
  z-index: 20; /* Zwingt Bizzi in den Vordergrund */
  pointer-events: none; /* Verhindert, dass er Klicks auf die Karte blockiert */
}
.bizzi-accent {
  position: absolute; 
  width: 380px; 
  max-width: 90vw;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 8px 24px rgba(123,97,255,0.25));
  animation: float 5s ease-in-out infinite;
  z-index: 20;
  pointer-events: none;
}
.bizzi-accent.left  { left: -60px; top: -330px; } 
.bizzi-accent.right { right: -60px; top: -330px; }

/* ── CTA BIZZI ── */
.cta-bizzi { display: flex; justify-content: center; margin-bottom: 24px; }
/* .bizzi-cta-img Styles sind jetzt oben beim CTA BANNER LAYOUT Block gebündelt */

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 680px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  color: var(--text); font-family: inherit; font-size: 0.92rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(120,120,160,0.6); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,97,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .bizzi-accent { display: none; }
}