:root {
  --blue: #0b7fd4;
  --blue-dark: #0968ae;
  --blue-soft: #e8f3fc;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 30px 60px -20px rgba(9, 104, 174, .25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, 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; line-height: 1.12; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .15s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); background: var(--card); color: var(--ink-2); }
.btn-ghost:hover { border-color: #cbd5e1; background: #f1f5f9; }

/* ── Nav ── */
nav.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 252, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; flex-wrap: wrap; padding-block: 8px; }
.logo { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 19px; white-space: nowrap; }
.logo em { color: var(--blue); font-style: normal; }
.nav-links { display: flex; gap: 6px 24px; font-size: 14.5px; font-weight: 500; color: var(--muted); flex-wrap: wrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta { white-space: nowrap; }
@media (max-width: 700px) {
  .nav-inner { justify-content: space-between; }
  .logo { order: 1; }
  .lang-menu { order: 2; }
  .nav-cta { display: none; }
  .nav-links {
    order: 3; flex-basis: 100%; justify-content: center;
    gap: 4px 18px; font-size: 14px; padding-bottom: 2px;
  }
}

/* ── Seitenkopf (Unterseiten) ── */
.page-head { padding: 72px 0 20px; }
.page-head h1 { font-size: clamp(34px, 4.6vw, 50px); font-weight: 800; margin-bottom: 16px; max-width: 18em; }
.page-head p.lede { font-size: 18px; color: var(--ink-2); max-width: 36em; }

/* ── Sektionen ── */
section.block { padding: 72px 0; }
.block h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin-bottom: 14px; max-width: 24em; }
.block p.sub { font-size: 17px; color: var(--muted); max-width: 40em; margin-bottom: 40px; }

/* Abwechselnde Screenshot-Sektionen */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.split:last-of-type { border-bottom: none; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.split p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 12px; }
.split ul { margin: 14px 0 0 0; list-style: none; display: grid; gap: 9px; }
.split li { font-size: 14.5px; color: var(--ink-2); padding-left: 26px; position: relative; }
.split li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.split .media { display: flex; justify-content: center; }
.split.flip .media { order: -1; }
@media (max-width: 860px) { .split.flip .media { order: 0; } }

/* Telefon-Rahmen */
.phone {
  width: 272px; border-radius: 34px; padding: 10px;
  background: #0f172a; box-shadow: var(--shadow-lg);
}
.phone img { border-radius: 26px; }
.phone.tilt-l { transform: rotate(-3.5deg); }
.phone.tilt-r { transform: rotate(3deg); }

/* Browser-Rahmen */
.browser {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); background: var(--card); max-width: 980px; margin: 0 auto;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: #f1f5f9; border-bottom: 1px solid var(--line);
}
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.browser-bar .url {
  margin-left: 12px; font-size: 12.5px; color: var(--muted);
  background: var(--card); border: 1px solid var(--line);
  padding: 4px 14px; border-radius: 999px;
}

/* Karten */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 17.5px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card .ico {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 20px;
}
.card.link { transition: all .15s ease; }
.card.link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #cbd5e1; }
.card .more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* Dunkle Sektion */
.dark { background: var(--ink); color: #e2e8f0; }
.dark .eyebrow { color: #7cc4f2; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark p.sub, .dark p.lede { color: #94a3b8; }

/* Nummerierte Schritte */
.num-steps { display: grid; gap: 0; }
.num-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dark .num-step { border-color: #1e293b; }
.num-step:last-child { border-bottom: none; }
.num-step .n {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.dark .num-step .n { background: #1e3a5f; color: #7cc4f2; }
.num-step h3 { font-size: 17px; margin-bottom: 3px; }
.num-step p { font-size: 14.5px; color: var(--muted); }
.dark .num-step p { color: #94a3b8; }

/* Vergleich / Tabelle */
.compare { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; background: var(--card); }
.compare th, .compare td { padding: 14px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.compare th { background: #f1f5f9; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.compare tr:last-child td { border-bottom: none; }
.compare td.yes { color: #15803d; font-weight: 600; }
.compare td.no { color: #b91c1c; font-weight: 600; }

/* Preise */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; position: relative;
}
.price.hot { border: 2px solid var(--blue); box-shadow: var(--shadow-md); }
.price .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: .03em;
}
.price h3 { font-size: 18px; margin-bottom: 4px; }
.price .for { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.price .amount { font-family: "Bricolage Grotesque", sans-serif; font-size: 42px; font-weight: 800; }
.price .amount small { font-size: 15px; font-weight: 500; color: var(--muted); font-family: "Inter", sans-serif; }
.price ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 10px; }
.price li { font-size: 14.5px; color: var(--ink-2); padding-left: 26px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.price .btn { margin-top: auto; justify-content: center; }
.hint-box {
  background: var(--blue-soft); border: 1px solid #cfe6f8; border-radius: var(--radius);
  padding: 26px 30px;
}
.hint-box h3 { font-size: 16px; margin-bottom: 8px; }
.hint-box p { font-size: 14.5px; color: var(--ink-2); }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 22px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 15.5px; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--blue); font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 18px; font-size: 14.5px; color: var(--muted); }

/* CTA + Footer */
.cta-final { background: var(--blue); color: #fff; text-align: center; }
.cta-final h2 { color: #fff; margin-inline: auto; }
.cta-final p.sub { color: #cfe8fb; margin-inline: auto; }
.cta-final .btn-ghost { background: #fff; color: var(--blue-dark); border-color: transparent; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
footer.site { padding: 34px 0; font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--line); }
.foot-inner { display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }

/* Trust strip */
.strip { border-block: 1px solid var(--line); background: var(--card); }
.strip-inner {
  display: flex; flex-wrap: wrap; gap: 10px 40px; justify-content: center;
  padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.strip-inner span::before { content: "✓"; color: var(--blue); margin-right: 8px; font-weight: 700; }

/* ── Sprachmenü im Header ── */
.lang-menu { position: relative; }
.lang-menu summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--card);
  white-space: nowrap; transition: all .15s ease;
}
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary::after { content: "▾"; font-size: 10px; color: var(--muted); }
.lang-menu summary:hover { border-color: #cbd5e1; background: #f1f5f9; }
.lang-menu .menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; display: grid; gap: 2px;
  min-width: 170px; z-index: 60;
}
.lang-menu .menu a { padding: 7px 12px; border-radius: 8px; font-size: 14px; color: var(--ink-2); }
.lang-menu .menu a:hover { background: var(--bg); color: var(--ink); }
.lang-menu .menu a.cur { color: var(--blue); font-weight: 600; }
