/* Fahrfuchs Website — light, editorial, Finanzguru-inspiriert */
:root {
  --accent: #F38A2B;
  --accent-soft: #FFF4E9;
  --accent-deep: #C66A1D;
  --bg: #FFFFFF;
  --bg-1: #FAF9F7;
  --bg-2: #F4F2EE;
  --bg-3: #EDEAE4;
  --bg-dark: #0E0E10;
  --line: rgba(15,15,20,.08);
  --line-strong: rgba(15,15,20,.14);
  --line-rule: rgba(15,15,20,.22);
  --fg: #0E0E10;
  --fg-dim: #5A5A5E;
  --fg-faint: #8E8E91;
  --ok: #2D8A4E;
  --warn: #B06A10;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01","cv11","tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
body.font-helv { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; letter-spacing: -0.005em; }
body.font-serif h1, body.font-serif h2, body.font-serif h3 { font-family: 'Source Serif 4','Iowan Old Style', Georgia, serif; font-weight: 500; letter-spacing: -0.015em; }

.mono { font-family: 'Geist Mono', ui-monospace, 'SF Mono', monospace; font-feature-settings: "tnum","zero"; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.section.tinted { background: var(--bg-1); }
.section.dark { background: var(--bg-dark); color: #EFEEEC; }
.section.dark p { color: #A0A09D; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #EFEEEC; }

/* Typography */
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-num { color: var(--accent); font-weight: 500; }
.eyebrow::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section.dark .eyebrow { color: #888; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; color: var(--fg); letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 7vw, 84px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(30px, 4.8vw, 54px); line-height: 1.04; letter-spacing: -0.028em; font-weight: 500; }
h3 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; letter-spacing: -0.018em; }
h4 { font-size: 17px; line-height: 1.25; letter-spacing: -0.012em; }
p { margin: 0; color: var(--fg-dim); }
.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--fg-dim); line-height: 1.55; }

.section-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(40px, 7vw, 72px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.section-title h2 { max-width: 18ch; }
.section-title p { max-width: 56ch; font-size: clamp(15px, 1.4vw, 18px); }
@media (min-width: 900px) {
  .section-title { grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--fg);
  color: #FFF;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .15s, background .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--fg); }
.section.dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.24); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px; min-width: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; letter-spacing: -0.015em; font-size: 16px;
  min-width: 0; flex-shrink: 1;
}
.nav-logo img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.nav-logo span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-badge {
  font-family: 'Geist Mono', monospace;
  color: var(--fg-faint);
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-strong);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
}
.nav-links { display: none; gap: 20px; font-size: 14px; color: var(--fg-dim); }
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-burger {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
  color: var(--fg);
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}
.nav-btn-compact { padding: 10px 16px; font-size: 13px; }
@media (max-width: 500px) {
  .nav-btn-compact span { display: none; }
  .nav-btn-compact { padding: 10px; width: 40px; height: 40px; }
}

.mobile-menu {
  position: fixed; inset: 56px 0 0 0;
  background: var(--bg); z-index: 49;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  letter-spacing: -0.015em;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a small {
  font-family: 'Geist Mono', monospace;
  color: var(--fg-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
}
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* Hero */
.hero {
  padding: clamp(56px, 10vw, 120px) 0 clamp(40px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  position: relative;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 60px; } }

.hero h1 em { font-style: normal; color: var(--accent); font-weight: 500; }
.hero-sub { font-size: clamp(16px, 1.7vw, 20px); color: var(--fg-dim); max-width: 54ch; margin-top: clamp(20px, 3vw, 30px); line-height: 1.5; }
.hero-sub b { color: var(--fg); font-weight: 500; }
.hero-cta { display: flex; gap: 10px; margin-top: clamp(28px, 4vw, 40px); flex-wrap: wrap; align-items: center; }
.hero-cta .btn { flex: 1 1 auto; }
@media (min-width: 520px) { .hero-cta .btn { flex: 0 0 auto; } }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}
.hero-trust .stars { color: var(--accent); letter-spacing: 2px; font-size: 12px; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  z-index: 0;
}

/* Hero stats row — Finanzguru-like */
.hero-stats {
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-stat .n {
  font-family: 'Geist Mono', monospace;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.hero-stat .l {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 10px;
}

/* Phone / screenshots */
.phone-shot {
  position: relative;
  width: clamp(260px, 32vw, 340px);
  aspect-ratio: 9/16;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
}
.phone-shot img { width: 100%; height: 100%; object-fit: contain; }
.phone-shot.placeholder {
  background: linear-gradient(180deg, #EDEAE4, #DAD5CC);
  aspect-ratio: 9/19.5;
  border-radius: 40px;
  box-shadow:
    0 0 0 1.5px rgba(15,15,20,.08),
    0 60px 100px -30px rgba(15,15,20,.18);
  display: grid; place-items: center;
}
.phone-shot.placeholder::before {
  content: "SCREENSHOT\A hero-dashboard.png";
  white-space: pre;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #8E8E91;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.phone-shot.ph-score::before { content: "SCREENSHOT\A screen-score.png"; }
.phone-shot.ph-tanken::before { content: "SCREENSHOT\A screen-tanken.png"; }
.phone-shot.ph-kosten::before { content: "SCREENSHOT\A screen-kosten.png"; }
.phone-shot.ph-fahrzeug::before { content: "SCREENSHOT\A screen-fahrzeug.png"; }
.phone-shot.ph-fahrtenbuch::before { content: "SCREENSHOT\A screen-fahrtenbuch.png"; }
.phone-shot.ph-steuer::before { content: "SCREENSHOT\A screen-steuer.png"; }

/* "Bekannt aus" marquee bar */
.press-bar {
  padding: clamp(28px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.press-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.press-label::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
}
.press-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.press-marquee::before, .press-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.press-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.press-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.press-marquee {
  /* allow horizontal drag/swipe; auto-scroll resumes on release */
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-y; /* let vertical scroll pass, hijack horizontal */
  user-select: none;
  -webkit-user-select: none;
}
.press-marquee.dragging { cursor: grabbing; }
.press-marquee .press-item { -webkit-user-drag: none; user-select: none; }
.press-track {
  display: flex;
  animation: pressloop 50s linear infinite;
  width: max-content;
  will-change: transform;
}
.press-marquee.paused .press-track,
.press-marquee.dragging .press-track { animation-play-state: paused; }
.press-marquee.user .press-track { animation: none; }
@keyframes pressloop { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.press-item {
  flex: 0 0 auto;
  width: 240px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fg-dim);
  text-align: center;
  transition: background .2s, color .2s;
}
.press-item:hover { background: var(--bg-1); color: var(--fg); }
.press-logo {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: currentColor;
  opacity: .85;
}
.press-item:hover .press-logo { opacity: 1; }
.press-item .quote-short {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}

/* USP — Finanzguru-style big number section */
.usp-hero { padding: clamp(64px, 10vw, 140px) 0; background: var(--bg-1); }
.usp-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (min-width: 900px) { .usp-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.usp-big {
  font-family: 'Geist', sans-serif;
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.usp-big .pct { color: var(--accent); font-weight: 500; }
.usp-big .sep { color: var(--fg-faint); }
.usp-text {
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 400;
}
.usp-text b { color: var(--accent); font-weight: 500; }
.usp-caption {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  text-transform: uppercase;
  margin-top: 24px;
  line-height: 1.8;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Split section (Finanzguru-style: text | screenshot) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-visual { order: -1; }
@media (min-width: 900px) {
  .split.reverse .split-visual { order: 0; }
  .split.reverse .split-text { order: 2; }
}
.split-text h2 { max-width: 16ch; margin-top: 18px; }
.split-text p { margin-top: 22px; max-width: 44ch; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.6; }
.split-visual { display: flex; justify-content: center; position: relative; }
.split-visual::before {
  content: "";
  position: absolute;
  width: 85%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  z-index: 0;
}

.split-data {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.split-data > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.split-data > div:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
.split-data > div:nth-child(even) { padding-left: 16px; }
.split-data .v {
  font-family: 'Geist Mono', monospace;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.split-data .k {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* 14 categories — ticker-style */
.cats-bar {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  background: var(--bg);
}
.cats-track {
  display: flex;
  gap: 32px;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.cats-track span { font-size: 15px; color: var(--fg-dim); letter-spacing: -0.005em; }
.cats-track .dot { color: var(--accent); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 700px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .feat-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feat {
  background: var(--bg);
  padding: clamp(26px, 2.8vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.feat-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.feat-head .n { color: var(--accent); }
.feat h3 { font-size: 22px; font-weight: 500; max-width: 20ch; }
.feat p { font-size: 15px; line-height: 1.55; max-width: 44ch; }
.feat-metric { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); }
.feat-metric .val { font-family: 'Geist Mono', monospace; font-size: 24px; font-weight: 500; letter-spacing: -0.02em; color: var(--fg); }
.feat-metric .unit { font-family: 'Geist Mono', monospace; color: var(--fg-faint); font-size: 12px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 28px 22px 32px 0; border-bottom: 1px solid var(--line); position: relative; min-height: 200px; }
@media (min-width: 700px) {
  .step:not(:last-child) { border-right: 1px solid var(--line); padding-right: 28px; padding-left: 28px; }
  .step:first-child { padding-left: 0; }
}
@media (min-width: 1020px) { .step { border-bottom: 0; } }
.step-num { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: var(--accent); text-transform: uppercase; }
.step h4 { margin-top: 14px; font-size: 20px; font-weight: 500; }
.step p { margin-top: 10px; font-size: 14px; line-height: 1.55; }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 40px; height: 2px; background: var(--accent);
}

/* Score */
.score-hero { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
@media (min-width: 900px) { .score-hero { grid-template-columns: 1fr 1fr; gap: 80px; } }
.score-ring { width: 100%; max-width: 380px; aspect-ratio: 1; margin: 0 auto; }
.score-tasks { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.score-task {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px;
}
.score-task .bul { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.score-task .pts {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.05em; white-space: nowrap;
}
.score-categories {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: clamp(40px, 6vw, 60px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 600px) { .score-categories { grid-template-columns: repeat(5, 1fr); } }
.score-cat { background: var(--bg); padding: 20px 18px; }
.score-cat .label { font-size: 14px; color: var(--fg); margin-top: 14px; font-weight: 500; }
.score-cat .val { font-family: 'Geist Mono', monospace; color: var(--fg-dim); font-size: 11px; margin-top: 4px; letter-spacing: 0.05em; }
.score-cat .val b { color: var(--accent); font-weight: 500; }

/* Pricing */
.price-toggle {
  display: inline-flex;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px;
  margin: 0 auto 36px;
}
.price-toggle button {
  padding: 9px 16px; border-radius: 999px;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; color: var(--fg-dim);
}
.price-toggle button.active { background: var(--bg); color: var(--fg); box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.price-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 780px) { .price-grid { grid-template-columns: 1fr 1fr 1fr; } }
.price-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 36px);
  position: relative; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.price-tier { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-faint); }
.price-card.featured .price-tier { color: var(--accent); }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.price-row .amount { font-family: 'Geist Mono', monospace; font-size: clamp(40px, 4.6vw, 54px); font-weight: 500; letter-spacing: -0.03em; }
.price-row .unit { color: var(--fg-dim); font-size: 14px; }
.price-alt { margin-top: 4px; font-family: 'Geist Mono', monospace; color: var(--fg-faint); font-size: 12px; }
.price-desc { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; color: var(--fg-dim); }
.price-feats { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-feat { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg); line-height: 1.45; }
.price-feat svg { margin-top: 3px; color: var(--accent); }
.price-card .btn { margin-top: 24px; width: 100%; }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 800px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.t-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.t-quote { color: var(--fg); font-size: 16px; line-height: 1.55; letter-spacing: -0.008em; }
.t-author {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: 'Geist Mono', monospace; color: var(--fg-faint);
  font-size: 11px; letter-spacing: 0.08em;
}
.t-author b { color: var(--fg); font-weight: 500; }

.rating-hero {
  display: flex; gap: 20px; align-items: center;
  padding: 22px 24px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; margin-top: 16px; max-width: 400px;
}
.rating-hero .big { font-family: 'Geist Mono', monospace; font-size: 48px; font-weight: 500; letter-spacing: -0.03em; color: var(--fg); line-height: 1; }
.rating-hero .meta { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: var(--fg-faint); margin-top: 6px; }
.rating-hero .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq-q {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500; letter-spacing: -0.012em;
}
.faq-num { font-family: 'Geist Mono', monospace; color: var(--accent); font-size: 12px; letter-spacing: 0.05em; font-weight: 400; }
.faq-plus { color: var(--fg-dim); font-family: 'Geist Mono', monospace; font-size: 20px; transition: transform .2s, color .2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--accent); }
.faq-a { margin-top: 14px; margin-left: 32px; color: var(--fg-dim); max-width: 72ch; line-height: 1.65; font-size: 15px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 60px); }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; } }
.about-manifest { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4; letter-spacing: -0.018em; color: var(--fg); }
.about-meta { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; }
.about-meta > div { padding: 18px 0; border-top: 1px solid var(--line-strong); font-family: 'Geist Mono', monospace; }
.about-meta > div:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--line); }
.about-meta > div:nth-child(even) { padding-left: 20px; }
.about-meta .k { color: var(--fg-faint); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.about-meta .v { color: var(--fg); font-size: 15px; margin-top: 6px; }

.contact {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
@media (min-width: 700px) { .contact { grid-template-columns: repeat(3, 1fr); } }
.contact-item { background: var(--bg); padding: 24px 26px; }
.contact-item .k { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); }
.contact-item .v { margin-top: 8px; font-size: 16px; color: var(--fg); }
.contact-item .sub { margin-top: 4px; font-size: 12px; color: var(--fg-dim); }

/* Blog & Help */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.post:hover { border-color: var(--line-strong); }
.post-meta { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); display: flex; justify-content: space-between; }
.post-meta .tag { color: var(--accent); }
.post h4 { font-size: 19px; font-weight: 500; max-width: 28ch; }
.post p { font-size: 14px; color: var(--fg-dim); line-height: 1.55; }
.post-arrow { margin-top: auto; color: var(--accent); font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.help-search {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 14px 18px;
  margin-bottom: 32px; max-width: 600px;
}
.help-search input { flex: 1; background: none; border: 0; color: var(--fg); font: inherit; font-size: 15px; outline: none; }
.help-search .k { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--fg-faint); border: 1px solid var(--line-strong); padding: 2px 6px; border-radius: 4px; }
.help-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .help-grid { grid-template-columns: repeat(3, 1fr); } }
.help-cat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.help-cat-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.help-cat-head h4 { font-size: 18px; font-weight: 500; }
.help-cat-head .c { font-family: 'Geist Mono', monospace; color: var(--fg-faint); font-size: 11px; letter-spacing: 0.08em; }
.help-cat a { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--fg-dim); }
.help-cat a:last-child { border-bottom: 0; }
.help-cat a:hover { color: var(--fg); }
.help-cat a span.arr { color: var(--accent); }

/* Download CTA — light, Finanzguru-style */
.download-block {
  background: var(--bg-1); color: var(--fg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; overflow: hidden; position: relative;
}
.download-block::before {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  right: -100px; top: -200px;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
}
.download-block h2 { color: var(--fg); }
.download-block p { color: var(--fg-dim); }
.store-btn { background: var(--fg); color: #fff; }
.store-btn:hover { background: #000; }
@media (min-width: 900px) { .download-block { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
}
.store-btn small { display: block; font-size: 10px; font-weight: 400; opacity: .7; letter-spacing: 0.05em; }
.store-btn strong { font-weight: 500; font-size: 15px; }
.download-fox { justify-self: center; width: 220px; filter: drop-shadow(0 40px 80px rgba(243,138,43,.3)); position: relative; z-index: 1; }
@media (min-width: 900px) { .download-fox { width: 260px; justify-self: end; } }

/* Footer */
.footer { padding: clamp(48px, 7vw, 80px) 0 32px; border-top: 1px solid var(--line); background: var(--bg-1); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
.footer-col.brand { grid-column: 1 / -1; }
@media (min-width: 700px) { .footer-col.brand { grid-column: auto; } }
.footer-col h5 {
  font-size: 11px; font-family: 'Geist Mono', monospace;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint); font-weight: 500; margin: 0 0 14px;
}
.footer-col a { display: block; padding: 5px 0; color: var(--fg-dim); font-size: 13.5px; }
.footer-col a:hover { color: var(--fg); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-row img { width: 36px; height: 36px; object-fit: contain; }
.footer-brand-row span { font-size: 18px; font-weight: 500; }
.footer-col.brand p { font-size: 13.5px; max-width: 32ch; }
.footer-col.brand .city { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--fg-faint); margin-top: 12px; letter-spacing: 0.08em; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--fg-faint); letter-spacing: 0.06em;
}

/* Tweaks */
.tweaks-panel {
  position: fixed; bottom: 16px; right: 16px; z-index: 100;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 16px; width: 240px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.15);
}
.tweaks-panel h5 { font-size: 10px; font-family: 'Geist Mono', monospace; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 12px; font-weight: 500; }
.tweak-row { margin-bottom: 12px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label { font-size: 10px; color: var(--fg-dim); margin-bottom: 6px; font-family: 'Geist Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; }
.tweak-swatches { display: flex; gap: 5px; }
.tweak-swatch { width: 24px; height: 24px; border-radius: 5px; cursor: pointer; border: 2px solid transparent; }
.tweak-swatch.active { border-color: var(--fg); }
.tweak-segments { display: flex; gap: 3px; border-radius: 7px; background: var(--bg-1); padding: 3px; }
.tweak-seg { flex: 1; padding: 6px 6px; font-size: 10px; border-radius: 5px; color: var(--fg-dim); font-family: 'Geist Mono', monospace; text-align: center; letter-spacing: 0.05em; cursor: pointer; }
.tweak-seg.active { background: var(--bg); color: var(--fg); box-shadow: 0 1px 2px rgba(0,0,0,.06); }

@media (max-width: 520px) { .tweaks-panel { display: none; } }

.divider-label {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-faint);
  margin-bottom: 28px;
}
.divider-label::before, .divider-label::after { content: ""; height: 1px; background: var(--line); flex: 1; }

@media (prefers-reduced-motion: reduce) {
  .cats-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------
   Subpage chrome — used by features.html, pricing.html, score.html,
   hilfe.html, faq.html, ueber.html
   ------------------------------------------------------------------ */
.sub-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--line);
}
.sub-hero .crumbs {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--fg-faint);
  text-transform: uppercase;
  display: flex; gap: 10px; margin-bottom: 24px;
}
.sub-hero .crumbs a { color: var(--fg-faint); }
.sub-hero .crumbs a:hover { color: var(--fg); }
.sub-hero .crumbs .sep { color: var(--line-strong); }
.sub-hero .crumbs .cur { color: var(--accent); }
.sub-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98; letter-spacing: -0.035em;
  max-width: 16ch;
}
.sub-hero h1 em { font-style: normal; color: var(--accent); font-weight: 500; }
.sub-hero .lede {
  margin-top: clamp(24px, 3vw, 32px);
  max-width: 58ch;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5; color: var(--fg-dim);
}
.sub-hero .sub-meta {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .sub-hero .sub-meta { grid-template-columns: repeat(4, 1fr); gap: 30px; } }
.sub-hero .sub-meta .k {
  font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  color: var(--fg-faint); text-transform: uppercase;
}
.sub-hero .sub-meta .v {
  font-family: 'Geist Mono', monospace; font-size: clamp(18px, 1.8vw, 22px);
  color: var(--fg); margin-top: 8px; letter-spacing: -0.015em;
}

/* Related / cross-link grid */
.related {
  padding: clamp(48px, 7vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.related-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px; gap: 20px; flex-wrap: wrap;
}
.related-head h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; letter-spacing: -0.018em; }
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
  position: relative;
}
.related-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.related-card .num {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--accent); letter-spacing: 0.14em;
}
.related-card h4 {
  margin-top: 14px; font-size: 18px; font-weight: 500; letter-spacing: -0.015em;
}
.related-card p {
  margin-top: 8px; font-size: 13.5px; color: var(--fg-dim); line-height: 1.5;
}
.related-card .arr {
  position: absolute; top: 22px; right: 22px;
  font-family: 'Geist Mono', monospace; color: var(--fg-faint);
  transition: color .2s, transform .2s;
}
.related-card:hover .arr { color: var(--accent); transform: translateX(2px); }

/* Body section — long-form prose used by ueber.html etc */
.prose {
  max-width: 680px;
  font-size: 16px; line-height: 1.7; color: var(--fg-dim);
}
.prose h2 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; color: var(--fg); margin: 40px 0 12px; letter-spacing: -0.018em; }
.prose h3 { font-size: 17px; font-weight: 500; color: var(--fg); margin: 28px 0 8px; }
.prose p { margin: 0 0 14px; color: var(--fg-dim); }
.prose p em { font-style: normal; color: var(--accent); }
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }
.prose ul li::marker { color: var(--accent); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }

/* Spec list — used by pricing.html / features.html detail views */
.spec-list {
  border-top: 1px solid var(--line);
}
.spec-list .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .spec-list .row { grid-template-columns: 240px 1fr; gap: 40px; align-items: baseline; }
}
.spec-list .k {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--fg-faint); text-transform: uppercase;
}
.spec-list .v { font-size: 15.5px; color: var(--fg); line-height: 1.55; }
.spec-list .v small { display: block; color: var(--fg-dim); font-size: 13.5px; margin-top: 4px; }


/* --------------------------------------------------
   Article page (hilfe/<slug>.html)
   -------------------------------------------------- */
.article-page {
  padding-top: clamp(100px, 14vw, 180px);
  padding-bottom: clamp(60px, 9vw, 120px);
  max-width: 820px;
}
.article-page .crumbs {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.article-page .crumbs a { color: var(--fg-dim); }
.article-page .crumbs a:hover { color: var(--fg); }
.article-page .crumbs .sep { opacity: .5; }
.article-page .crumbs .cur { color: var(--accent); }

.article-eyebrow {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.article-eyebrow .eyebrow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--accent);
  font-size: 10.5px;
  letter-spacing: 0.08em;
}

.article-title {
  margin: 20px 0 0;
  font-size: clamp(38px, 6.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-wrap: pretty;
}

.article-meta {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}
@media (min-width: 700px) {
  .article-meta { grid-template-columns: repeat(4, 1fr); gap: 0 40px; }
}
.article-meta .k {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.article-meta .v {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--fg);
}

.article-body {
  margin-top: 48px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  text-wrap: pretty;
}
.article-body p {
  margin: 0 0 1.4em;
}
.article-body p:last-child { margin-bottom: 0; }

/* Drop cap on first paragraph */
.article-body > p:first-child::first-letter {
  font-size: 3.6em;
  font-weight: 500;
  line-height: .9;
  float: left;
  margin: 6px 10px 0 0;
  color: var(--accent);
  font-feature-settings: "ss01";
}

.article-nav {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.article-nav-card {
  display: block;
  padding: 20px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s, background .15s;
}
.article-nav-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.article-nav-card.next { text-align: right; }
.article-nav-card .dir {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.article-nav-card .t {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--fg);
  line-height: 1.3;
}

.article-more {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.article-more-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.article-more-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.article-more-head .all-link {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.article-more-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .article-more-grid { grid-template-columns: 1fr 1fr; }
}
.article-more-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--bg);
  font-size: 15px;
  color: var(--fg);
  transition: background .15s, color .15s;
}
.article-more-card:hover { background: var(--bg-1); color: var(--accent); }
.article-more-card .arr { color: var(--fg-faint); font-size: 13px; }
.article-more-card:hover .arr { color: var(--accent); }

.article-support {
  margin-top: 60px;
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 700px) {
  .article-support { grid-template-columns: 1fr auto; }
}
.article-support h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.article-support p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--fg-dim);
}

/* ==================================================
   Mobile polish — iOS-clean
   Appended 2026-04-21
   ================================================== */

/* ---- Base: safe-area insets + generous gutters ---- */
:root {
  --gutter-m: 22px;
  --gutter-t: 32px;
}
.wrap {
  padding-left: max(var(--gutter-m), env(safe-area-inset-left));
  padding-right: max(var(--gutter-m), env(safe-area-inset-right));
}
@media (min-width: 700px) {
  .wrap {
    padding-left: max(var(--gutter-t), env(safe-area-inset-left));
    padding-right: max(var(--gutter-t), env(safe-area-inset-right));
  }
}
@media (min-width: 1100px) {
  .wrap { padding-left: 40px; padding-right: 40px; }
}

/* Root background tint for a slightly softer iOS feel on phones */
@media (max-width: 699px) {
  html, body { background: #FBFAF8; }
}

/* ---- Mobile typography: tighter, cleaner ---- */
@media (max-width: 699px) {
  body { font-size: 15.5px; line-height: 1.55; letter-spacing: -0.002em; }

  h1, .hero h1 { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.05; letter-spacing: -0.028em; }
  h2 { font-size: clamp(28px, 7.5vw, 34px) !important; line-height: 1.08; letter-spacing: -0.025em; }
  h3 { font-size: 22px !important; line-height: 1.15; letter-spacing: -0.015em; }

  /* Section rhythm on phones: less vertical padding, more air between blocks */
  .section { padding: 56px 0; }
  .section + .section { padding-top: 0; }
}

/* ---- Nav: thinner + tighter on phones, more iOS-like ---- */
@media (max-width: 699px) {
  .nav {
    background: rgba(255,255,255,.82);
    border-bottom-color: rgba(15,15,20,.06);
  }
  .nav-inner { padding: 10px 0; gap: 12px; }
  .nav-logo { font-size: 15px; gap: 8px; }
  .nav-logo img { width: 24px; height: 24px; }
  .nav-badge { display: none; }
  .nav-burger { width: 36px; height: 36px; border-color: var(--line); }
  .nav-btn-compact { padding: 9px; width: 36px; height: 36px; border-radius: 999px; }
  .nav-btn-compact span { display: none; }
  .nav-cta { gap: 6px; }
}

/* Mobile menu: full-bleed iOS-like sheet */
.mobile-menu {
  inset: 52px 0 0 0 !important;
  padding: 24px max(var(--gutter-m), env(safe-area-inset-left)) !important;
  padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
  background: #FBFAF8 !important;
}
.mobile-menu a {
  padding: 18px 2px !important;
  font-size: 20px !important;
  font-weight: 500;
  letter-spacing: -0.018em;
  border-bottom-color: var(--line) !important;
}

/* ---- Hero on mobile ---- */
@media (max-width: 699px) {
  .hero { padding-top: 48px; padding-bottom: 28px; }
  /* Hero inherits --edge via .wrap; no override needed */
  .hero-sub { font-size: 15.5px !important; margin-top: 16px; max-width: 36ch; }
  .hero-cta { gap: 8px; margin-top: 22px; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
  .hero-trust { margin-top: 12px; font-size: 10.5px; flex-wrap: wrap; gap: 8px 12px; }
}

/* ---- Sub-hero on mobile ---- */
@media (max-width: 699px) {
  .sub-hero { padding-top: 28px !important; padding-bottom: 28px !important; }
  .sub-hero h1 { margin-top: 14px; }
  .sub-hero .lede { font-size: 15.5px !important; margin-top: 16px; max-width: none; }
  .sub-hero .sub-meta {
    margin-top: 22px !important;
    padding: 16px 0 !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px 16px !important;
  }
  .sub-hero .sub-meta .v { font-size: 14px !important; }
  .crumbs { font-size: 10.5px !important; gap: 7px !important; }
}

/* ---- Article page on mobile ---- */
@media (max-width: 699px) {
  .article-page { padding-top: 24px !important; padding-bottom: 48px !important; }
  .article-eyebrow { margin-top: 22px; font-size: 11px; }
  .article-title {
    margin-top: 12px !important;
    font-size: clamp(30px, 8.5vw, 40px) !important;
    line-height: 1.07;
  }
  .article-meta {
    margin-top: 24px;
    padding: 14px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }
  .article-meta .k { font-size: 9.5px; }
  .article-meta .v { font-size: 13.5px; }
  .article-body { margin-top: 28px; font-size: 16.5px; line-height: 1.68; }
  .article-body > p:first-child::first-letter {
    font-size: 3em; margin: 4px 8px 0 0;
  }
  .article-nav { grid-template-columns: 1fr; margin-top: 36px; }
  .article-nav-card.next { text-align: left; }
  .article-nav-card { padding: 16px 18px; }
  .article-nav-card .t { font-size: 14.5px; }

  .article-more { margin-top: 48px; padding-top: 28px; }
  .article-more-head h3 { font-size: 19px; }
  .article-more-grid { grid-template-columns: 1fr; }
  .article-more-card { padding: 14px 18px; font-size: 14.5px; }

  .article-support {
    margin-top: 40px;
    padding: 22px 22px !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .article-support .btn { width: 100%; justify-content: center; }
}

/* ---- Hilfe index on mobile: stacked cards, cleaner grid ---- */
@media (max-width: 699px) {
  .help-search {
    padding: 12px 14px !important;
    border-radius: 12px !important;
    gap: 10px;
    box-shadow: 0 1px 0 rgba(15,15,20,.02);
  }
  .help-search input { font-size: 15.5px; min-height: 24px; }
  .help-grid { gap: 14px; }
  .help-cat {
    padding: 18px 18px !important;
    border-radius: 14px !important;
    background: #FFFFFF !important;
  }
  .help-cat-head h4 { font-size: 16px; }
  .help-cat a {
    padding: 12px 0 !important;
    font-size: 14.5px !important;
    min-height: 44px;
    align-items: center;
  }
}

/* ---- Section titles on mobile: stack cleanly ---- */
@media (max-width: 699px) {
  .section-title {
    display: block !important;
    margin-bottom: 32px !important;
  }
  .section-title p {
    margin-top: 14px;
    font-size: 15px !important;
    max-width: none;
  }
}

/* ---- Footer on mobile ---- */
@media (max-width: 699px) {
  .footer { padding-top: 40px; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .footer-grid { gap: 28px !important; }
  .footer-col.brand p { font-size: 14px; max-width: none; }
  .footer-col h5 { font-size: 11px; margin-bottom: 10px; }
  .footer-col a { padding: 8px 0; min-height: 36px; display: inline-flex; align-items: center; font-size: 14.5px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px !important;
    font-size: 10.5px !important;
  }
}

/* ---- Pricing cards on mobile ---- */
@media (max-width: 699px) {
  .price-grid { gap: 12px; }
  .price-card { padding: 22px !important; border-radius: 16px !important; }
  .price-card h3 { font-size: 20px !important; }
}

/* ---- Features grid on mobile ---- */
@media (max-width: 699px) {
  .feat { padding: 20px !important; }
  .feat h3 { font-size: 18px !important; }
  .feat p { font-size: 14.5px !important; }
}

/* ---- Related (bottom of subpages) ---- */
@media (max-width: 699px) {
  .related { padding-top: 40px !important; padding-bottom: 40px !important; }
  .related-head h3 { font-size: 18px; }
  .related-card { padding: 18px !important; border-radius: 14px !important; }
}

/* ---- Download block on mobile ---- */
@media (max-width: 699px) {
  .download-block { padding: 28px 22px !important; border-radius: 20px !important; }
  .download-block h2 { margin-bottom: 14px; }
  .download-block .btn { width: 100%; justify-content: center; }
}

/* ---- Touch targets: every tappable element at least 44px ---- */
@media (max-width: 699px) {
  .btn { min-height: 44px; }
  a.btn, button.btn { padding-top: 12px; padding-bottom: 12px; }
}

/* ---- Remove tap highlight, use subtle press state instead ---- */
@media (max-width: 699px) {
  a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  a:active, button:active { opacity: .7; transition: opacity .05s; }
}

/* ==========================================================
   UNIFIED EDGE GUTTERS — single source of truth
   Every top-level container the eye sees as "page content"
   must match .wrap's horizontal padding exactly, on every
   breakpoint, on every page.
   ========================================================== */
:root { --edge: 22px; }
@media (min-width: 700px)  { :root { --edge: 32px; } }
@media (min-width: 1100px) { :root { --edge: 40px; } }

/* Redefine .wrap in terms of --edge so nothing drifts */
.wrap {
  padding-left: max(var(--edge), env(safe-area-inset-left)) !important;
  padding-right: max(var(--edge), env(safe-area-inset-right)) !important;
}

/* Full-width sections that render their OWN inner padding
   (elements that are NOT already .wrap AND not nested inside a .wrap)
   get the same edge gutter. */
.article-hero:not(.wrap),
.footer-inner:not(.wrap) {
  padding-left: max(var(--edge), env(safe-area-inset-left));
  padding-right: max(var(--edge), env(safe-area-inset-right));
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Sub-page hero breadcrumb container — align with body */
.sub-hero .crumbs,
.sub-hero h1,
.sub-hero .lede,
.sub-hero .meta-row { max-width: none; }

/* ---- MOBILE: tighten HERO so phone mockup + text aren't klobig ---- */
@media (max-width: 699px) {
  /* Hide hero screenshot on phones — text-only hero reads cleaner */
  .hero-visual { display: none !important; }

  /* Lede text smaller + more lines */
  .hero-sub { font-size: 15px !important; line-height: 1.5; max-width: 34ch; margin-top: 14px; }

  /* Eyebrow quieter */
  .hero .eyebrow { font-size: 10.5px; letter-spacing: 0.14em; }

  /* Stats row: less visual weight */
  .hero-stats { margin-top: 32px; padding-top: 20px; gap: 12px; }
  .hero-stat .n { font-size: 22px !important; }
  .hero-stat .l { font-size: 9.5px; margin-top: 6px; }

  /* Tighter vertical rhythm overall — only vertical padding, horizontal stays on .wrap */
  .hero { padding-top: 28px !important; padding-bottom: 20px !important; }
}

/* ---- CARDS / TILES that meet the page edge: unify internal padding ---- */
@media (max-width: 699px) {
  .price-card,
  .help-cat,
  .help-search,
  .feat,
  .related-card,
  .article-nav-card,
  .article-more-card,
  .download-block {
    /* Cards that span full-width should not add extra horizontal inset
       beyond the page gutter (their parent already has --edge). */
  }
  /* Ensure download CTA block never exceeds content box */
  .download-block { padding: 28px 22px !important; }
}

