/* ==========================================================================
   E-Empfang Landingpage — Design nach Vorbild aptly.no
   Fonts: Inter (self-hosted) + Plus Jakarta Sans (Google Fonts)
   ========================================================================== */

@font-face {
  font-family: "InterVar";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Markenfarbe: bestehendes Produkt-Blau statt Aptly-Türkis */
  --brand: #3f8fd2;
  --brand-dark: #2c6da5;
  --brand-darker: #1f5482;
  --brand-light: #6aaade;
  --brand-tint: #eaf3fb;
  --brand-glow: rgba(63, 143, 210, 0.22);

  --ink: #0e1c29;
  --ink-muted: #5f7183;
  --ink-faint: #93a5b6;

  --bg: #ffffff;
  --bg-soft: #f6fbff;
  --bg-card: #ffffff;
  --border: #e3eaf1;

  --surface-dark: #0e1c29;
  --surface-dark-2: #14283a;

  --ok: #2f9e63;
  --ok-tint: #e7f7ee;

  --radius-btn: 10px;
  --radius-card: 24px;
  --radius-sm: 14px;

  --shadow-sm: 0 2px 8px rgba(14, 28, 41, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 28, 41, 0.10);
  --shadow-lg: 0 24px 64px rgba(14, 28, 41, 0.16);

  --font-body: "InterVar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "InterVar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
p { margin: 0; overflow-wrap: break-word; }

/* Grid items default to min-width:auto, which lets long text force a track
   wider than its container. Every grid container's direct children get
   min-width:0 here so this class of overflow bug can't recur anywhere. */
.hero-grid > *, .trust-grid > *, .target-grid > *, .feat-grid > *,
.ki-panel > *, .showcase-frame > *, .embed-grid > *, .price-grid > *,
.compare-grid > *, .why-grid > *, .steps-grid > *, .footer-grid > *,
.dash-cols > * {
  min-width: 0;
}
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-light {
  background: #fff;
  color: var(--brand-dark);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--brand); background: var(--brand-tint); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(14, 28, 41, 0.05);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand) 55%, var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-outline { color: var(--ink-muted); border-color: var(--border); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-toggle { flex-direction: column; gap: 5px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--brand-light) -10%, var(--brand) 45%, var(--brand-darker) 120%);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero h1 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { flex-shrink: 0; }

/* Hero visual: photo/video */
.hero-visual {
  position: relative;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-photo img,
.hero-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floaty-badge {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.floaty-badge svg { color: var(--brand); flex-shrink: 0; }
.floaty-badge.fb-1 { top: -18px; right: -6px; transform: rotate(-3deg); }
.floaty-badge.fb-2 { bottom: -18px; right: -10px; transform: rotate(2deg); }

/* ---------- Trust badges ---------- */
.trust-bar {
  background: var(--bg-soft);
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  justify-content: center;
  text-align: center;
}
.trust-item svg { color: var(--brand); flex-shrink: 0; }

/* ---------- Section heading ---------- */
.section-head {
  max-width: 640px;
  margin: 0 0 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { color: var(--brand-dark); }
.section-head h2 { font-size: 40px; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--ink-muted); }

.section-pad { padding: 96px 0; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Feature grid ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-card h3 { font-size: 18px; margin-bottom: 8px; }
.feat-card p { font-size: 14.5px; color: var(--ink-muted); }

/* ---------- KI highlight ---------- */
.ki-section { padding: 96px 0; }
.ki-panel {
  background: var(--surface-dark);
  border-radius: var(--radius-card);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ki-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  pointer-events: none;
}
.ki-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 143, 210, 0.18);
  color: var(--brand-light);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ki-panel h2 { color: #fff; font-size: 34px; margin-bottom: 16px; }
.ki-panel p.lead { color: rgba(255, 255, 255, 0.78); font-size: 16.5px; margin-bottom: 24px; max-width: 48ch; }
.ki-points { display: grid; gap: 12px; margin-bottom: 28px; }
.ki-points li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}
.ki-points svg { color: var(--brand-light); flex-shrink: 0; margin-top: 2px; }
.ki-price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 8px;
}
.ki-price-chip .amt { font-family: var(--font-head); font-size: 26px; font-weight: 800; }
.ki-price-chip .per { font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.ki-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
}
.call-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.call-row:last-child { border-bottom: none; }
.call-row .call-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(63, 143, 210, 0.22);
  color: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-row .call-txt { flex: 1; min-width: 0; }
.call-row .call-txt strong { display: block; font-size: 13.5px; color: #fff; overflow-wrap: break-word; }
.call-row .call-txt span { font-size: 12px; color: rgba(255,255,255,0.6); }
.call-row .call-status {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--ok-tint);
  color: var(--ok);
}

/* ---------- Statement ---------- */
.statement {
  padding: 90px 0;
  text-align: center;
}
.statement blockquote {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.statement blockquote::before { content: "\201C"; color: var(--brand); }
.statement blockquote::after { content: "\201D"; color: var(--brand); }
.statement cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ---------- Showcase ---------- */
.showcase { padding: 0 0 96px; }
.showcase-frame {
  background: var(--surface-dark);
  border-radius: var(--radius-card);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
}
.showcase-frame > * { min-width: 0; }
.showcase-frame h2 { color: #fff; font-size: 32px; margin-bottom: 14px; overflow-wrap: break-word; }
.showcase-frame p { color: rgba(255,255,255,0.72); font-size: 16px; margin-bottom: 20px; max-width: 42ch; }
.dash-mock {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px;
}
.dash-mock .dm-top { display: flex; gap: 8px; margin-bottom: 14px; }
.dash-mock .dm-top span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.dash-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.dash-col { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px; min-width: 0; }
.dash-col .dc-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); margin-bottom: 8px; overflow-wrap: break-word; }
.dash-chip { overflow-wrap: break-word; }
.dash-chip { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 8px; margin-bottom: 7px; font-size: 11.5px; }
.dash-chip.b { border-left: 2px solid var(--brand-light); }

/* ---------- Integrations-equivalent ---------- */
.embed-section { padding: 96px 0; }
.embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.browser-mock {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-mock .bm-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.browser-mock .bm-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.browser-mock .bm-url {
  margin-left: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11.5px;
  color: var(--ink-muted);
}
.browser-mock .bm-body { padding: 28px; position: relative; min-height: 460px; overflow: hidden; }
.browser-mock .bm-line { height: 10px; border-radius: 6px; background: var(--bg-soft); margin-bottom: 12px; }
.browser-mock .bm-line.short { width: 30%; }
.browser-mock .bm-widget-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.browser-mock .bm-widget-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.browser-mock .bm-btn-icon-close { display: none; }
.browser-mock.is-open .bm-btn-icon-open { display: none; }
.browser-mock.is-open .bm-btn-icon-close { display: inline-flex; }
.bm-panel {
  position: absolute;
  right: 20px;
  bottom: 78px;
  width: min(280px, calc(100% - 40px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.browser-mock.is-open .bm-panel { opacity: 1; transform: none; pointer-events: auto; }
.ill-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.ill-tiles { display: grid; gap: 8px; }
.ill-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
}
.browser-mock.is-open .ill-tile { animation: illTileIn 0.35s ease forwards; }
.ill-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes illTileIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.embed-points { display: grid; gap: 16px; }
.embed-points .ep-item { display: flex; gap: 14px; }
.embed-points .ep-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-tint); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.embed-points strong { display: block; font-size: 15.5px; margin-bottom: 3px; }
.embed-points span { font-size: 14px; color: var(--ink-muted); }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 30px;
}
.price-card {
  background: var(--surface-dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
  min-width: 0;
}
.price-card.is-alt { background: var(--surface-dark-2); }
.price-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}
.price-card .pc-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.price-card .pc-amount {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.price-card .pc-amount span { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.6); }
.price-card .pc-note { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.price-card ul { display: grid; gap: 11px; margin-bottom: 28px; }
.price-card li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.price-card li svg { color: var(--brand-light); flex-shrink: 0; margin-top: 2px; }
.price-foot { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 16px; }

.addon-card {
  background: #fff;
  border: 1.5px dashed var(--brand-light);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.addon-card .addon-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.addon-card .addon-body { flex: 1; min-width: 220px; }
.addon-card .addon-body strong { display: block; font-size: 16px; margin-bottom: 3px; }
.addon-card .addon-body span { font-size: 14px; color: var(--ink-muted); }
.addon-card .addon-price { text-align: right; }
.addon-card .addon-price .amt { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink); }
.addon-card .addon-price .per { font-size: 12.5px; color: var(--ink-muted); display: block; }

.compare-block { margin-top: 40px; }
.compare-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-card.is-us {
  background: var(--brand-tint);
  border: 1.5px solid var(--brand);
}
.compare-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 11px;
  border-radius: 100px;
}
.compare-name { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink-muted); }
.compare-price { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--ink); }
.compare-price span { font-size: 12.5px; font-weight: 500; color: var(--ink-muted); }
.compare-note { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
.compare-note strong { color: var(--ink); }
.compare-footnote { text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: 18px; }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 26px;
}
.why-card .why-icon { color: var(--brand-dark); margin-bottom: 14px; }
.why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-muted); }

/* ---------- Target audience grid ---------- */
.target-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.target-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.target-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.target-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.target-card h3 { font-size: 15px; margin-bottom: 6px; overflow-wrap: break-word; }
.target-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.55; overflow-wrap: break-word; }
.target-note { text-align: center; font-size: 14px; color: var(--ink-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 60%, var(--brand-light));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 26px; }
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  border: none;
  font-family: var(--font-body);
  font-size: 14.5px;
}
.cta-form input:focus { outline: 3px solid rgba(255,255,255,0.4); }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step-card { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-tint);
  -webkit-text-stroke: 1.5px var(--brand-light);
  margin-bottom: 10px;
  display: block;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--ink-muted);
  max-width: 68ch;
}
.faq-item.is-open .faq-a { max-height: 400px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 90px 0;
  text-align: center;
}
.final-cta-box {
  background: var(--surface-dark);
  border-radius: var(--radius-card);
  padding: 64px 40px;
  color: #fff;
}
.final-cta-box h2 { color: #fff; font-size: 34px; margin-bottom: 12px; }
.final-cta-box p { color: rgba(255,255,255,0.72); font-size: 16.5px; margin-bottom: 30px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.guarantee-chip svg { color: var(--ok); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero h1 { font-size: 44px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .target-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; gap: 34px; }
  .ki-panel { grid-template-columns: 1fr; padding: 36px; }
  .showcase-frame { grid-template-columns: 1fr; padding: 30px; }
  .embed-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .btn { white-space: normal; text-align: center; }
  .wrap { padding: 0 20px; }
  .hero { padding: 64px 0 76px; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 17px; }
  .section-head h2 { font-size: 28px; }
  .statement blockquote { font-size: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .addon-card { flex-direction: column; align-items: flex-start; }
  .addon-card .addon-price { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .final-cta-box { padding: 44px 22px; }
  .final-cta-box h2 { font-size: 26px; }
}

/* ---------- Legal pages (Impressum, Datenschutz, AGB) ---------- */
.legal-hero { background: var(--bg-soft); padding: 64px 0 40px; border-bottom: 1px solid var(--border); }
.legal-hero h1 { font-size: 34px; margin-bottom: 8px; }
.legal-hero p { color: var(--ink-muted); font-size: 15px; }
.legal-content { padding: 56px 0 96px; }
.legal-content .wrap { max-width: 760px; }
.legal-content h2 { font-size: 21px; margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 14px; color: var(--ink); font-size: 15px; line-height: 1.7; }
.legal-content p.muted { color: var(--ink-muted); font-size: 13.5px; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal-content li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; }
.legal-content a { color: var(--brand-dark); text-decoration: underline; }
.legal-note {
  background: var(--brand-tint);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 36px;
  font-size: 13.5px;
  color: var(--brand-darker);
}

/* ---------- Very narrow phones: keep the header from cramping ---------- */
@media (max-width: 420px) {
  .logo { font-size: 16px; gap: 8px; }
  .logo .logo-mark { width: 28px; height: 28px; font-size: 13px; }
  .header-actions .btn-primary { display: none; }
  .header-actions .btn-outline { display: none; }
  .call-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .call-row .call-status { margin-left: 0; }
  .dash-cols { grid-template-columns: 1fr; gap: 8px; }
}

