:root {
  --violet: #6C4CF5;
  --violet-dark: #4B2FD9;
  --pink: #F5478C;
  --ink: #14121F;
  --ink-soft: #5B5770;
  --bg: #FFFFFF;
  --bg-alt: #F6F4FC;
  --border: #E7E3F5;
  --radius: 18px;
  --shadow: 0 10px 32px rgba(20, 18, 31, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
}
.logo-wordmark .dot { color: var(--pink); }

.logo-group { display: flex; align-items: center; gap: 16px; }
.parent-brand { display: flex; align-items: center; padding-left: 16px; border-left: 1px solid var(--border); }
.parent-logo { height: 42px; width: auto; opacity: 0.9; }

.footer-parent-logo { height: 48px; width: auto; opacity: 0.9; }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
nav a:hover { color: var(--violet); }

.nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.nav-cta:hover { opacity: 0.92; }

/* Hero */
.hero {
  padding: 32px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(108,76,245,0.14), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(245,71,140,0.10), transparent 55%);
}
@media (max-width: 640px) { .hero { padding: 20px 0 60px; } }

.hero-nav { display: flex; flex-wrap: wrap; gap: 20px; margin: 0 0 24px; }
.hero-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 15px; }
.hero-nav a:hover { color: var(--violet); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-dark);
  background: rgba(108,76,245,0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: 0 10px 26px rgba(108,76,245,0.28);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--violet); }

/* Voice visual */
.voice-card {
  background: var(--ink);
  border-radius: 28px;
  padding: 36px 30px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(20,18,31,0.25);
}
.voice-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.voice-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
}
.voice-card-top span { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  margin-bottom: 24px;
}
.waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--violet), var(--pink));
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform .bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform .bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.waveform .bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.waveform .bar:nth-child(4) { height: 45%; animation-delay: 0.3s; }
.waveform .bar:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.waveform .bar:nth-child(6) { height: 35%; animation-delay: 0.5s; }
.waveform .bar:nth-child(7) { height: 65%; animation-delay: 0.6s; }
.waveform .bar:nth-child(8) { height: 50%; animation-delay: 0.7s; }
.waveform .bar:nth-child(9) { height: 80%; animation-delay: 0.8s; }
.waveform .bar:nth-child(10) { height: 40%; animation-delay: 0.9s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.voice-transcript {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.voice-transcript b { color: #fff; }

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

.section h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin: 0 0 12px;
}
.section-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 44px;
}

.preise-currency-row { display: flex; justify-content: center; margin: -20px 0 32px; }
.currency-toggle-big {
  background: none; border: 1.5px solid var(--border); padding: 13px 29px;
  border-radius: 999px; cursor: pointer; font-size: 21px; font-weight: 600;
  color: var(--ink); transition: background 0.2s, border-color 0.2s;
}
.currency-toggle-big:hover { background: var(--bg-alt); border-color: var(--violet); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 17px; margin: 0 0 8px; }
.step-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* Use cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.usecase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.usecase-icon { font-size: 26px; margin-bottom: 12px; }
.usecase-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.usecase-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Pricing */
.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--violet);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(108,76,245,0.14);
  text-align: center;
}
.pricing-card .price {
  margin: 12px 0 4px;
}
.pricing-card .amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
}
.pricing-card .period { font-size: 15px; color: var(--ink-soft); margin-left: 4px; }
.pricing-card .setup { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 24px; }
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.pricing-list li::before { content: "✓"; color: var(--violet); font-weight: 700; }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+ "; color: var(--violet); }
.faq-item[open] summary::before { content: "– "; }
.faq-item p { margin: 12px 0 0; color: var(--ink-soft); font-size: 14.5px; }

/* Contact */
.kontakt-inner h2 { text-align: center; }
.kontakt-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 44px;
}
.contact-form {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--violet); }
.field textarea { resize: vertical; min-height: 80px; }
.contact-result { margin-top: 16px; padding: 14px; border-radius: 10px; font-size: 14px; display: none; }
.contact-result.ok { display: block; background: rgba(108,76,245,0.08); color: var(--violet-dark); }
.contact-result.err { display: block; background: rgba(245,71,140,0.10); color: #C22462; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-inner p { font-size: 13px; color: var(--ink-soft); margin: 0; }
.footer-inner p.brand-line { font-size: 12.5px; color: var(--ink-soft); opacity: 0.8; }
