/* ============================================================
   Carplus — Marketing Website
   Built on carplus/tokens.css (Muli, green-on-mcf system).
   White dominant · green as signal · minimal radii · no gradients.
   ============================================================ */

/* ---------- Reset-ish / base overrides ---------- */
html { scroll-behavior: smooth; }
body { background: var(--surface); color: var(--ink); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--cp-green-pressed); text-decoration: none; transition: color var(--dur-base) var(--ease-out); }
a:hover { color: var(--cp-green); text-decoration: none; }

:root {
  --site-max: 1200px;
  --site-pad: 32px;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--site-pad); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--gray { background: var(--surface-2); }
.section--dark { background: var(--dark-2); color: var(--dark-fg); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--cp-green-pressed);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--cp-green-light); }

.h-display { font-size: clamp(38px, 5vw, 60px); font-weight: var(--fw-light); line-height: 1.05; letter-spacing: -0.02em; }
.h-1 { font-size: clamp(30px, 3.6vw, 44px); font-weight: var(--fw-light); line-height: 1.1; letter-spacing: -0.015em; }
.h-2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: var(--fw-regular); line-height: 1.15; letter-spacing: -0.01em; }
.h-3 { font-size: 20px; font-weight: var(--fw-bold); line-height: 1.25; }
.lead { font-size: 19px; font-weight: var(--fw-regular); line-height: 1.6; color: var(--ink-2); }
.section--dark .lead { color: var(--dark-fg-2); }
.muted { color: var(--ink-3); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .lead { margin-top: 18px; }

.green { color: var(--cp-green-pressed); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: var(--fw-bold); font-size: 15px; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cp-green); color: #fff; }
.btn--primary:hover { background: var(--cp-green-hover); color: #fff; }
.btn--primary:active { background: var(--cp-green-pressed); }
.btn--secondary { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: #fff; }
.btn--ondark { background: #fff; color: var(--ink); }
.btn--ondark:hover { background: var(--cp-green); color: #fff; }
.btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--ghost-dark:hover { border-color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 76px; display: flex; align-items: center;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 40px; width: 100%; }
.site-header__logo img { height: 34px; width: auto; }
.site-nav { display: flex; gap: 30px; margin-left: 8px; }
.site-nav a {
  font-size: 15px; font-weight: var(--fw-semibold); color: var(--ink-2);
  padding: 6px 0; position: relative;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }
.site-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -27px; height: 3px; background: var(--cp-green);
}
.site-header__cta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.site-header__phone { font-size: 14px; font-weight: var(--fw-bold); color: var(--ink); }
.site-header__phone:hover { color: var(--cp-green-pressed); }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--dark-2);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(21,24,28,0.94) 0%, rgba(21,24,28,0.78) 42%, rgba(21,24,28,0.35) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 96px 0; max-width: 640px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero .lead { color: rgba(255,255,255,0.82); margin-bottom: 34px; max-width: 540px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-size: 12px; font-weight: var(--fw-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--cp-green-light); border: 1px solid rgba(194,218,140,0.4); border-radius: var(--radius-pill); padding: 7px 14px;
}
.hero__meta { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero__meta .n { font-size: 30px; font-weight: var(--fw-bold); color: #fff; line-height: 1; }
.hero__meta .l { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ---------- Logo / trust strip ---------- */
.trust-strip { padding: 34px 0; border-bottom: 1px solid var(--line); }
.trust-strip__inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-strip__label { font-size: 13px; color: var(--ink-3); font-weight: var(--fw-semibold); }
.trust-strip__logos { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; }
.trust-logo { font-size: 15px; font-weight: var(--fw-bold); color: var(--ink-4); letter-spacing: 0.02em; }

/* ---------- Feature cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--cp-green-pale); }
.feature-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--cp-green-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--cp-green-pressed);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; font-weight: var(--fw-bold); margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ---------- Split (text + visual) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: -1; }
.split__body h2 { margin-bottom: 20px; }
.split__body .lead { margin-bottom: 24px; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.checklist svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--cp-green); margin-top: 1px; }
.checklist b { color: var(--ink); font-weight: var(--fw-bold); }

/* ---------- Device / browser frame ---------- */
.frame {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg);
}
.frame__bar { height: 38px; background: var(--surface-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.frame__dot { width: 11px; height: 11px; border-radius: 50%; background: #d5dade; }
.frame__url { margin-left: 12px; font-size: 12px; color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px 14px; }
.frame__body { display: block; }

/* App-embed iframe */
.app-embed {
  width: 100%; height: 620px; border: 0; display: block; background: var(--surface-2);
}
.app-embed-wrap { position: relative; }

/* ---------- WhatsApp mock ---------- */
.wa-mock { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.wa-mock__head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.wa-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--cp-green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: var(--fw-bold); font-size: 15px; position: relative; }
.wa-avatar__ch { position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; border-radius: 50%; background: #25D366; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; }
.wa-avatar__ch svg { width: 10px; height: 10px; color: #fff; }
.wa-mock__name { font-weight: var(--fw-bold); font-size: 15px; }
.wa-mock__sub { font-size: 12px; color: var(--ink-3); }
.wa-mock__body { padding: 18px; background: var(--surface-3); display: flex; flex-direction: column; gap: 10px; }
.wa-bubble { max-width: 78%; padding: 10px 13px; border-radius: 12px; font-size: 14px; line-height: 1.45; position: relative; }
.wa-bubble__t { display: block; font-size: 10.5px; color: var(--ink-4); margin-top: 5px; text-align: right; }
.wa-in { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 3px; }
.wa-out { align-self: flex-end; background: var(--cp-green-soft); border-bottom-right-radius: 3px; }
.wa-mock__foot { padding: 12px 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.wa-auto { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: var(--fw-bold); color: var(--cp-green-pressed); background: var(--cp-green-soft); padding: 5px 10px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.04em; }
.wa-auto svg { width: 13px; height: 13px; }

/* ---------- Lead pipeline mock ---------- */
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pipe__col { background: var(--surface-3); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px; }
.pipe__head { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: var(--fw-bold); color: var(--ink-2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.pipe__count { color: var(--ink-4); }
.pipe__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px; margin-bottom: 9px; }
.pipe__card:last-child { margin-bottom: 0; }
.pipe__card .nm { font-size: 13px; font-weight: var(--fw-bold); }
.pipe__card .ve { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }
.pipe__card .tags { display: flex; gap: 6px; margin-top: 8px; }
.pipe-tag { font-size: 10px; font-weight: var(--fw-bold); padding: 2px 7px; border-radius: var(--radius-pill); }
.pipe-tag--wa { background: #DCF8E7; color: #128C46; }
.pipe-tag--hot { background: #FBE3E3; color: var(--danger); }
.pipe-tag--price { background: var(--surface-2); color: var(--ink-2); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat .n { font-size: 46px; font-weight: var(--fw-light); line-height: 1; color: #fff; }
.stat .n b { font-weight: var(--fw-bold); color: var(--cp-green-light); }
.stat .l { font-size: 14px; color: var(--dark-fg-2); margin-top: 12px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step__n { font-size: 14px; font-weight: var(--fw-bold); color: var(--cp-green-pressed); letter-spacing: 0.1em; margin-bottom: 14px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--cp-green); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; }
.plan--feature { border-color: var(--cp-green); border-width: 2px; box-shadow: var(--shadow-md); position: relative; }
.plan__flag { position: absolute; top: -13px; left: 30px; background: var(--cp-green); color: #fff; font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: var(--radius-sm); }
.plan__name { font-size: 15px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); }
.plan__price { margin: 18px 0 6px; font-size: 44px; font-weight: var(--fw-light); line-height: 1; }
.plan__price span { font-size: 16px; font-weight: var(--fw-regular); color: var(--ink-3); }
.plan__desc { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; min-height: 40px; }
.plan__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.plan__list svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--cp-green); margin-top: 1px; }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: inherit; font-size: 18px; font-weight: var(--fw-semibold); color: var(--ink); }
.faq__q svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--cp-green-pressed); transition: transform var(--dur-base) var(--ease-out); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq__a p { padding: 0 0 24px; font-size: 15px; color: var(--ink-2); line-height: 1.65; max-width: 660px; }
.faq__item.is-open .faq__a { max-height: 320px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team__card { text-align: center; }
.team__photo { width: 100%; aspect-ratio: 1/1; background: var(--surface-2); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 52px; font-weight: var(--fw-light); color: var(--cp-green); border: 1px solid var(--line); margin-bottom: 18px; }
.team__name { font-size: 18px; font-weight: var(--fw-bold); }
.team__role { font-size: 14px; color: var(--ink-3); margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band .lead { max-width: 560px; margin: 0 auto 32px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: var(--fw-bold); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 13px 14px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cp-green); box-shadow: var(--shadow-focus); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info__row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--cp-green-soft); color: var(--cp-green-pressed); display: flex; align-items: center; justify-content: center; }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__row .t { font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: var(--fw-bold); }
.contact-info__row .v { font-size: 16px; color: var(--ink); margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-1); color: var(--dark-fg-2); padding: 72px 0 36px; }
.site-footer a { color: var(--dark-fg-2); }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-line); }
.footer-brand img { height: 30px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: var(--fw-bold); color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-4); }
.footer-bottom a { color: var(--ink-4); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .grid-3, .grid-4, .steps, .team, .pricing { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pipe { grid-template-columns: repeat(2, 1fr); }
  .site-nav, .site-header__phone { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --site-pad: 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pipe { grid-template-columns: 1fr; }
  .hero__meta { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   Erweiterungen — Feature-Seiten mit echten App-Screenshots
   ============================================================ */

/* Screenshot im Browser-Rahmen */
.shot { display:block; width:100%; height:auto; }
.frame--shot .frame__body { padding:0; background:#fff; }
.frame--shot img { display:block; width:100%; height:auto; }

/* USP-Band (5 Kernnutzen) */
.usp-band { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.usp { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px 20px; }
.usp__ic { width:40px; height:40px; border-radius:var(--radius-md); background:var(--cp-green-soft); color:var(--cp-green-pressed); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.usp__ic svg { width:22px; height:22px; }
.usp h3 { font-size:15px; font-weight:var(--fw-bold); margin-bottom:6px; line-height:1.3; }
.usp p { font-size:13px; color:var(--ink-3); line-height:1.55; }

/* Modul-Zeile: Text + Screenshot, alternierend */
.mod { display:grid; grid-template-columns:0.92fr 1.08fr; gap:56px; align-items:center; padding:72px 0; border-top:1px solid var(--line-2); }
.mod:first-of-type { border-top:0; }
.mod--rev .mod__media { order:-1; }
.mod__eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:var(--fw-bold); letter-spacing:var(--tracking-caps); text-transform:uppercase; color:var(--cp-green-pressed); margin-bottom:14px; }
.mod__eyebrow .num { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:var(--radius-pill); background:var(--cp-green-soft); font-size:11px; }
.mod h2 { font-size:clamp(24px,2.6vw,30px); font-weight:var(--fw-light); line-height:1.15; letter-spacing:-0.01em; margin-bottom:16px; }
.mod p.lead { font-size:16px; margin-bottom:20px; }
.mod .checklist li { font-size:14.5px; }
@media (max-width:960px){ .mod { grid-template-columns:1fr; gap:32px; padding:48px 0; } .mod--rev .mod__media { order:0; } }

/* Feature-Chips (kleine Merkmalsliste) */
.chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.chip-tag { font-size:12.5px; font-weight:var(--fw-semibold); color:var(--ink-2); background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius-pill); padding:6px 12px; }

/* Interaktive Demo (iframe) — Hinweisleiste */
.demo-note { display:flex; align-items:center; justify-content:center; gap:10px; font-size:13px; color:var(--ink-3); margin-top:14px; }
.demo-note .dot { width:8px; height:8px; border-radius:50%; background:var(--cp-green); box-shadow:0 0 0 4px var(--cp-green-soft); }

/* Seiten-Hero (Unterseiten, kompakter, hell) */
.pagehero { padding:72px 0 40px; border-bottom:1px solid var(--line); background:var(--surface-3); }
.pagehero .eyebrow { margin-bottom:14px; }
.pagehero h1 { font-size:clamp(32px,4vw,48px); font-weight:var(--fw-light); line-height:1.08; letter-spacing:-0.02em; max-width:760px; }
.pagehero p { font-size:19px; color:var(--ink-2); line-height:1.6; max-width:640px; margin-top:18px; }

/* Sprung-Navigation der Module */
.modnav { position:sticky; top:76px; z-index:50; background:rgba(255,255,255,0.94); backdrop-filter:blur(8px); border-bottom:1px solid var(--line); }
.modnav__inner { display:flex; gap:8px; flex-wrap:wrap; padding:12px 0; }
.modnav a { font-size:13px; font-weight:var(--fw-semibold); color:var(--ink-2); padding:7px 13px; border-radius:var(--radius-pill); border:1px solid var(--line); }
.modnav a:hover { background:var(--cp-green-soft); border-color:var(--cp-green-pale); color:var(--ink); }

/* Kleine Panel-Screenshots im Raster */
.shot-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.shot-card { border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:#fff; box-shadow:var(--shadow-sm); }
.shot-card img { display:block; width:100%; height:auto; border-bottom:1px solid var(--line-2); }
.shot-card .cap { padding:12px 16px; font-size:13px; color:var(--ink-2); }
.shot-card .cap b { color:var(--ink); font-weight:var(--fw-bold); }
@media (max-width:700px){ .shot-grid { grid-template-columns:1fr; } .usp-band { grid-template-columns:1fr 1fr; } }

/* Kontaktformular-Hinweis */
.form-note { font-size:12.5px; color:var(--ink-4); margin-top:8px; }
.legal { max-width:760px; }
.legal h2 { font-size:22px; font-weight:var(--fw-bold); margin:32px 0 12px; }
.legal p { font-size:14.5px; color:var(--ink-2); line-height:1.7; margin-bottom:10px; }

/* Login-Link zur App (app.carplushub.de) */
.site-header__login { font-size:14px; font-weight:var(--fw-bold); color:var(--ink-2); }
.site-header__login:hover { color:var(--cp-green-pressed); }
@media (max-width:960px){ .site-header__login { display:none; } }
