:root {
  --bg: #0f172a;
  --surface: #111827;
  --card: #ffffff;
  --muted: #64748b;
  --text: #0f172a;
  --light: #f8fafc;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.hero {
  min-height: 90vh;
  padding: 28px;
  background: radial-gradient(circle at top right, #1d4ed8, transparent 35%), var(--bg);
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-cta {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero-content {
  max-width: 980px;
  margin: 120px auto 0;
}

.eyebrow {
  color: #60a5fa;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.subline {
  max-width: 760px;
  font-size: 1.25rem;
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: white;
  color: var(--bg);
}

.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}

.trust-note {
  color: #bfdbfe;
  font-size: 0.95rem;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 28px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.card-list {
  display: grid;
  gap: 16px;
}

.card,
.feature,
.price-card,
.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature p,
.price-card p,
.contact-box p {
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card.highlighted {
  border-color: var(--accent);
  transform: translateY(-8px);
}

.price {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text) !important;
  font-weight: 900;
  margin: 0;
}

.price-card span {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
}

.dark {
  max-width: none;
  background: var(--surface);
  color: white;
  padding-left: calc((100vw - 1120px) / 2 + 28px);
  padding-right: calc((100vw - 1120px) / 2 + 28px);
}

.dark p,
.dark li {
  color: #d1d5db;
}

blockquote {
  margin: 0;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  font-size: 1.1rem;
}

.footer {
  padding: 36px 28px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .features,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 80px;
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 64px 22px;
  }

  .split {
    gap: 24px;
  }

  .dark {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Mobile dark-section hard fix: prevent horizontal shift/cut-off */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .section,
  .dark,
  .dark.split {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .dark,
  .dark.split {
    padding: 64px 22px !important;
    overflow-x: hidden;
  }

  .dark h2,
  .dark p,
  .dark li,
  .dark .eyebrow {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .dark ul {
    padding-left: 24px;
  }
}


/* Added trust/demo/contact blocks */
.muted {
  color: var(--muted);
}

.about-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.avatar {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.about-card h3 {
  margin-bottom: 6px;
}

.about-card p {
  margin: 0 0 10px;
}

.demo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  margin-top: 28px;
}

.demo-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .92rem;
}

.demo-head strong {
  color: var(--text);
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}

.chat-box {
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble-row {
  max-width: 82%;
  display: flex;
  flex-direction: column;
}

.bubble-row small {
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 4px 5px;
}

.bubble-row p {
  margin: 0;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: .96rem;
}

.bubble-row.bot {
  align-self: flex-start;
}

.bubble-row.bot p {
  background: white;
  border: 1px solid var(--border);
  border-top-left-radius: 6px;
}

.bubble-row.member {
  align-self: flex-end;
  align-items: flex-end;
}

.bubble-row.member small {
  margin: 0 5px 4px 0;
}

.bubble-row.member p {
  background: var(--accent);
  color: white;
  border-top-right-radius: 6px;
}

.handoff-pill {
  align-self: center;
  background: white;
  border: 1px dashed var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .9rem;
  text-align: center;
}

.fineprint {
  color: var(--muted) !important;
  font-size: .9rem;
  margin-top: 14px;
}

.booking-box p:first-child {
  font-size: 1.15rem;
  max-width: 720px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 10px;
}

.whatsapp {
  background: #22c55e;
  color: white;
}

.light-secondary {
  color: var(--text);
  border-color: var(--border);
  background: white;
}

@media (max-width: 900px) {
  .about-card {
    flex-direction: column;
  }

  .demo-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bubble-row {
    max-width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }
}


/* Marktvergleich / Preisanker */
.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.market-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.compare-card span {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.compare-card h3 {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.compare-card p {
  color: var(--muted);
  margin: 0;
}

.compare-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.compare-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 900px) {
  .market-compare {
    grid-template-columns: 1fr;
  }
}
