/* ── Schriftart (lokal, kein Google-CDN — DSGVO) ──── */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('fonts/dm-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('fonts/dm-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #fff;
}
/* Geldbeträge / KPIs als DM Mono (wie in der App) */
.mono { font-family: 'DM Mono', ui-monospace, monospace; font-weight: 500; letter-spacing: -0.01em; }
img { max-width: 100%; height: auto; display: block; }
a { color: #3b82f6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 72px 0; }
.section-alt {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.section-dark {
  background: #0f172a;
  color: #f1f5f9;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: url(/img/favicon.svg) center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  font-size: 0;
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  border: 1.5px solid #3b82f6;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover { background: #3b82f6; color: #fff; text-decoration: none; }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
  text-decoration: none;
  color: #fff;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #3b82f6; color: #3b82f6; text-decoration: none; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  max-width: 800px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.hero-subline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #475569;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust-item svg { color: #1D9E75; }

/* ── Email Form ───────────────────────────────────── */
.email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.email-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  font-size: 15px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}
.email-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.email-input::placeholder { color: #94a3b8; }
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: #1D9E75;
  font-weight: 500;
  font-size: 15px;
  justify-content: center;
}
.form-success.visible { display: flex; }
.form-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
  display: none;
}
.form-error.visible { display: block; }

/* ── Problem Section ──────────────────────────────── */
.problem-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.problem-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.problem-inner p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
}
.problem-badge {
  display: inline-block;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(239,68,68,0.25);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* ── Features ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
/* "Und vieles mehr"-Streifen (Funktionen) */
.fn-more {
  margin-top: 18px; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.fn-more h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0 0 6px; }
.fn-more p { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; max-width: 640px; }

/* Blog-Artikel: Inhaltsverzeichnis + Callout (Template-Standard) */
.blog-toc { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 22px; margin: 0 0 34px; }
.blog-toc-label { font-size: 13px; font-weight: 700; color: #475569; margin-bottom: 11px; }
.blog-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 8px; }
.blog-toc li { counter-increment: toc; }
.blog-toc a { font-size: 15px; color: #2563eb; font-weight: 500; text-decoration: none; display: flex; gap: 9px; align-items: baseline; }
.blog-toc a::before { content: counter(toc) "."; color: #94a3b8; font-weight: 600; flex-shrink: 0; }
.blog-toc a:hover { text-decoration: underline; }
.blog-callout { display: flex; gap: 13px; align-items: flex-start; background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.25); border-radius: 12px; padding: 16px 18px; margin: 8px 0 28px; }
.blog-callout svg { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }
.blog-callout p { font-size: 15px; line-height: 1.6; color: #78350f; margin: 0; }
.blog-callout strong { color: #78350f; font-weight: 700; }
.blog-article h2 { scroll-margin-top: 80px; }

/* Blog-Artikel: "Weiterlesen"-Teaser am Ende */
.blog-related { margin: 8px 0 40px; }
.blog-related-label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #94a3b8; margin-bottom: 16px; }
.blog-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s; }
.related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); border-color: #cbd5e1; text-decoration: none; }
.related-media { aspect-ratio: 2.2; background: #0b1220; }
.related-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-body { padding: 15px 18px; }
.related-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #2563eb; background: rgba(37,99,235,0.08); border-radius: 6px; padding: 3px 8px; margin-bottom: 9px; }
.related-title { font-size: 16px; font-weight: 700; color: #0f172a; line-height: 1.3; }
@media (max-width: 640px) { .blog-related-grid { grid-template-columns: 1fr; } }

/* Blog-Artikel: Autor-Zeile + Hero-Bild (Template-Standard) */
.blog-author { display: flex; align-items: center; gap: 11px; margin: 0 0 28px; }
.blog-author-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; letter-spacing: -0.02em;
}
.blog-author-name { font-size: 14.5px; font-weight: 600; color: #0f172a; line-height: 1.2; }
.blog-author-meta { font-size: 13px; color: #94a3b8; line-height: 1.3; }
.blog-hero-img {
  width: 100%; height: auto; aspect-ratio: 1.9; object-fit: cover;
  border-radius: 16px; box-shadow: 0 18px 44px rgba(15,23,42,0.12);
  margin: 0 0 32px; display: block;
}

/* Seiten-Hero (Unterseiten: Funktionen, Rechner, …) */
.fn-hero { padding: 64px 0 8px; text-align: center; }
.fn-hero h1 { font-size: clamp(28px,4.5vw,42px); font-weight: 700; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 14px; }
.fn-hero p { font-size: clamp(16px,2.5vw,19px); color: #475569; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Sprung-Chips (Funktionen-Hero) */
.fn-anchor {
  font-size: 13.5px; font-weight: 600; color: #334155;
  background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 9px 16px; text-decoration: none; transition: border-color .15s, color .15s;
}
.fn-anchor:hover { border-color: #2563eb; color: #2563eb; text-decoration: none; }

/* Bausteine-Blöcke (Funktionen, alternierend Bild/Text) */
.fn-block { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.fn-block + .fn-block { margin-top: 64px; }
.fn-block .fn-block-media { order: 2; }
.fn-block.reverse .fn-block-media { order: 0; }
.fn-block-media img {
  width: 100%; height: auto; display: block;
  object-fit: contain; background: transparent;
}
.fn-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 12px; color: #2563eb; margin-bottom: 14px;
}
.fn-eyebrow .fn-eyebrow-ico {
  width: 26px; height: 26px; border-radius: 8px; background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
}
.fn-eyebrow .icon { width: 15px; height: 15px; }
.fn-block h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 700; letter-spacing: -0.02em; color: #0f172a; margin: 0 0 14px; }
.fn-block > div > p { font-size: 16px; line-height: 1.6; color: #475569; margin: 0 0 22px; }
.fn-list { display: flex; flex-direction: column; gap: 13px; }
.fn-list-item { display: flex; gap: 11px; align-items: flex-start; }
.fn-list-item svg { color: #1D9E75; flex-shrink: 0; margin-top: 2px; }
.fn-list-item b { font-size: 15px; font-weight: 600; color: #0f172a; display: block; }
.fn-list-item span { font-size: 13.5px; color: #475569; line-height: 1.5; }
@media (max-width: 820px) {
  .fn-block { grid-template-columns: 1fr; gap: 28px; }
  .fn-block .fn-block-media, .fn-block.reverse .fn-block-media { order: 2; }
}

/* Kategorie-Header (Funktionen) */
.fn-cat-head { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; }
.fn-cat-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(37,99,235,0.1); color: #2563eb;
  display: flex; align-items: center; justify-content: center;
}
.fn-cat-icon .icon { width: 18px; height: 18px; }
.fn-cat-head h3 { font-size: 19px; font-weight: 700; color: #0f172a; margin: 0; }
.fn-cat-line { flex: 1; height: 1px; background: #e2e8f0; }

/* Feste 3×2-Anordnung (Startseite) */
.features-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .features-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid--3 { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(29,158,117,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ── Section Headlines ────────────────────────────── */
.section-headline {
  text-align: center;
  margin-bottom: 48px;
}
.section-headline h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-headline p {
  color: #64748b;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── How it works ─────────────────────────────────── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.how-step {
  text-align: left;
}
.how-step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.how-step-num {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.how-step-figure {
  margin: 0;
  max-width: 600px;
}
.how-step-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
}
.how-step-img:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.how-step-caption {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 8px;
  text-align: center;
}

/* ── Lightbox ─────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.90);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
#lb-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
#lb-caption {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  max-width: 600px;
}
#lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
#lb-close:hover { background: rgba(255,255,255,0.2); }
#lb-prev, #lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
#lb-prev { left: 12px; }
#lb-next { right: 12px; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 640px) {
  #lb-prev { left: 4px; }
  #lb-next { right: 4px; }
}

/* ── Screenshot-Karussell (auto-generiert) ────────────── */
.shot-carousel {
  position: relative;
  margin-top: 48px;
  outline: none;
}
.shot-viewport { overflow: hidden; }
.shot-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  scrollbar-width: none;
}
.shot-track::-webkit-scrollbar { display: none; }
.shot-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 760px) {
  .shot-slide { flex-basis: 60%; }
}
.shot-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: contain;
  background: transparent;
}
.shot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.shot-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.shot-prev { left: 8px; }
.shot-next { right: 8px; }
@media (max-width: 600px) {
  .shot-nav { display: none; }
}
.shot-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.shot-dot {
  width: 9px; height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.shot-dot:hover { background: #94a3b8; }
.shot-dot.is-active { background: #1D9E75; transform: scale(1.25); }

/* Klick-Zoom Lightbox (von screenshots.js erzeugt) */
.shot-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.90);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.shot-lb.open { display: flex; }
.shot-lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.shot-lb-close, .shot-lb-prev, .shot-lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.shot-lb-close { top: 16px; right: 20px; width: 40px; height: 40px; font-size: 28px; }
.shot-lb-prev, .shot-lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 36px; }
.shot-lb-prev { left: 12px; }
.shot-lb-next { right: 12px; }
.shot-lb-close:hover, .shot-lb-prev:hover, .shot-lb-next:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 640px) {
  .shot-lb-prev { left: 4px; }
  .shot-lb-next { right: 4px; }
}

.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}
.how-step p {
  font-size: 15px;
  color: #64748b;
}

/* ── Founder ──────────────────────────────────────── */
.founder-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.founder-text { flex: 1; min-width: 280px; }
.founder-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.founder-text p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,158,117,0.08);
  border: 1px solid rgba(29,158,117,0.2);
  color: #1D9E75;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
}
.founder-aside {
  flex: 0 0 280px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.founder-aside p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { margin-top: 40px; max-width: 760px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item.open { border-color: #cbd5e1; box-shadow: 0 6px 20px rgba(15,23,42,0.05); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { color: #3b82f6; }
.faq-q-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: #64748b;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: #dbeafe; color: #3b82f6; }
.faq-a {
  display: none;
  padding-bottom: 18px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* ── CTA Section (dunkle Box wie Entwurf) ─────────── */
.cta-section { padding: 64px 0 72px; }
.cta-dark-box {
  position: relative; overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b1220, #12203a);
  padding: 52px 40px; text-align: center;
}
.cta-dark-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(59,130,246,0.22), transparent 70%);
  pointer-events: none;
}
.cta-dark-box > * { position: relative; }
.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-section p {
  color: #94a3b8;
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 480px;
}
@media (max-width: 640px) { .cta-dark-box { padding: 40px 24px; } }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: #64748b;
  transition: color 0.15s;
}
.footer-links a:hover { color: #94a3b8; text-decoration: none; }
.footer-disclaimer {
  font-size: 12px;
  color: #475569;
  max-width: 600px;
  line-height: 1.5;
}

/* ── Image placeholder fallback ───────────────────── */
img[src$=".png"]:not([src^="http"]) {
  background: #f1f5f9;
  min-height: 160px;
}

/* ── App Screenshots ──────────────────────────────── */
.app-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.screenshot-placeholder {
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Rechner ──────────────────────────────────────── */
.calc-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) {
  .calc-row-2 { grid-template-columns: 1fr; }
}
.calc-field { display: flex; flex-direction: column; gap: 4px; }
.calc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.calc-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  font-family: inherit;
}
.calc-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.calc-info-btn {
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  cursor: pointer;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.calc-info-btn:hover { border-color: #3b82f6; color: #3b82f6; }
.calc-tip {
  font-size: 12px;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1.5;
}
.calc-error {
  font-size: 13px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 12px;
}
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 16px;
}
@media (max-width: 480px) {
  .calc-result-grid { grid-template-columns: 1fr; }
}
.calc-result-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}
.calc-result-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #64748b;
  margin-bottom: 8px;
}
.calc-result-amount {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
}
.calc-result-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}
.calc-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #475569;
}
.calc-empfehlung {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 12px;
}
.empf-plattform { background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #166534; }
.empf-sfvv      { background: #eff6ff; border: 1.5px solid #bfdbfe; color: #1d4ed8; }
.empf-kipp      { background: #fffbeb; border: 1.5px solid #fde68a; color: #92400e; }
.calc-breakeven-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.5;
}
.calc-disclaimer-toggle { margin-bottom: 16px; }
.calc-disclaimers-inner { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.calc-disclaimers-inner[hidden] { display: none; }
.calc-disclaimer-text {
  font-size: 11px;
  color: #64748b;
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1.5;
  margin: 0;
}
.calc-disclaimer-box {
  font-size: 12px;
  color: #64748b;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.5;
  margin: 12px 0 16px;
}
.calc-savings-big {
  font-family: 'DM Mono', monospace;
  font-size: 44px;
  font-weight: 500;
  color: #1D9E75;
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc-result-amount { font-family: 'DM Mono', monospace; font-weight: 500; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #475569;
  padding: 2px 0;
}
.calc-result-row-total {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  border-top: 1px solid #e2e8f0;
  margin-top: 6px;
  padding-top: 6px;
}
.calc-result-steuer-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid #e2e8f0;
  margin-top: 8px;
  padding-top: 8px;
  color: #1e293b;
}
.space-y { display: flex; flex-direction: column; gap: 3px; }
.calc-neutral-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}
.calc-cta-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b1220, #12203a);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 22px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-cta-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 85% -20%, rgba(59,130,246,0.22), transparent 70%);
  pointer-events: none;
}
.calc-cta-block > * { position: relative; }
.calc-cta-bridge {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.calc-cta-nutzen {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.calc-cta-sub {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}
.calc-cta-login {
  font-size: 12px;
  color: #93c5fd;
  text-align: center;
  text-decoration: none;
  display: block;
}
.calc-cta-login:hover { color: #bfdbfe; }

/* Rechner: 2-spaltiges Layout (Eingabe links, Ergebnis rechts) */
.calc-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 22px; align-items: start; }
@media (max-width: 780px) { .calc-layout { grid-template-columns: 1fr; } }
/* Im 2-Spalten-Layout Eingabefelder untereinander statt eng nebeneinander */
.calc-layout .calc-row-2 { grid-template-columns: 1fr; }
.calc-placeholder {
  border: 1.5px dashed #cbd5e1; border-radius: 16px;
  padding: 36px 28px; color: #64748b; font-size: 14px; line-height: 1.6;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-height: 220px;
  background: #f8fafc; text-align: center;
}
.calc-placeholder[hidden] { display: none; }
.calc-placeholder .cph-ico {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.1); color: #2563eb;
}
.calc-placeholder .cph-ico svg { width: 26px; height: 26px; }
.calc-placeholder h3 { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0; }
.calc-placeholder p { margin: 0; max-width: 280px; }
.calc-placeholder ul { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; text-align: left; }
.calc-placeholder li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #475569; }
.calc-placeholder li svg { width: 15px; height: 15px; color: #1D9E75; flex-shrink: 0; }

/* ── Hauptnavigation (Menü, responsive) ───────────── */
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a:not(.nav-cta) {
  font-size: 14px; font-weight: 500; color: #475569; text-decoration: none;
  position: relative;
}
.nav-menu a:not(.nav-cta):hover { color: #3b82f6; text-decoration: none; }
.nav-menu a.is-active:not(.nav-cta) { color: #0f172a; font-weight: 600; }
.nav-menu a.is-active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 2px;
  background: #2563eb; border-radius: 2px;
}
@media (max-width: 760px) {
  .nav-menu a.is-active:not(.nav-cta)::after { display: none; }
  .nav-menu a.is-active:not(.nav-cta) { color: #2563eb; }
}
.nav-toggle { display: none; }
.nav-burger { display: none; }

@media (max-width: 760px) {
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; cursor: pointer; border-radius: 8px;
    margin: -8px; padding: 8px; box-sizing: content-box;
  }
  .nav-burger span {
    display: block; height: 2px; width: 22px; background: #0f172a; border-radius: 2px;
  }
  .nav-menu {
    display: none;
    position: absolute; top: 56px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid #e2e8f0;
    padding: 8px 20px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-menu a:not(.nav-cta) {
    padding: 13px 0; border-bottom: 1px solid #f1f5f9; font-size: 16px; color: #0f172a;
  }
  .nav-menu .nav-cta {
    display: inline-flex; justify-content: center; margin-top: 14px; width: 100%;
  }
}

/* ── Breadcrumb (Unterseiten) ─────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}
.breadcrumb a { color: #64748b; text-decoration: none; }
.breadcrumb a:hover { color: #2563eb; text-decoration: none; }
.breadcrumb-bar { background: #fff; }
.breadcrumb-bar .container { padding-top: 16px; padding-bottom: 0; }

/* ── Teaser-Karten (Startseite → Unterseiten) ─────── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 820px) { .teaser-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.teaser-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.teaser-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: #cbd5e1;
  text-decoration: none;
}
.teaser-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(29,158,117,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.teaser-card h3 { font-size: 18px; font-weight: 600; color: #0f172a; margin-bottom: 8px; line-height: 1.3; }
.teaser-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 12px; }
.teaser-more { font-size: 14px; color: #3b82f6; font-weight: 600; }

/* ── Icons (Phosphor-Stil, inline-SVG, lokal) ─────── */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }
.feature-icon .icon, .teaser-icon .icon { width: 24px; height: 24px; color: #2563eb; }

/* ── Hero zweispaltig (Text + Produkt-Visual) ─────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  text-align: left;
}
.hero-grid .hero-col-text { text-align: left; }
.hero-grid h1 { margin-left: 0; margin-right: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: #1d4ed8; background: rgba(37,99,235,0.09);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 999px; padding: 6px 13px; margin-bottom: 20px;
}
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 4px 0 22px; }
.hero-link-secondary {
  font-size: 15px; font-weight: 600; color: #2563eb;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none; white-space: nowrap;
}
.hero-link-secondary:hover { color: #1d4ed8; text-decoration: none; }
.hero-media { position: relative; }
.hero-media-main {
  display: block; width: 100%; height: auto;
  object-fit: contain; background: transparent;
  filter: drop-shadow(0 20px 40px rgba(15,23,42,0.20));
}
.hero-media-mobile {
  position: absolute; right: -6px; bottom: -52px;
  width: 116px; height: auto;
  object-fit: contain; background: transparent;
  filter: drop-shadow(0 14px 28px rgba(15,23,42,0.30));
}
.hero-media-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: 13px; text-align: center; padding: 20px;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-grid .hero-col-text { text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .hero-media-mobile { width: 96px; right: 4px; bottom: -18px; }
}

/* ── Trust-Strip (Plattform-Kompatibilität) ───────── */
.trust-strip { border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; background: #f8fafc; }
.trust-strip .container { padding-top: 26px; padding-bottom: 26px; }
.trust-strip-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #94a3b8; text-align: center; margin-bottom: 16px;
}
.trust-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-chip {
  font-size: 14px; font-weight: 600; color: #334155;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 9px 16px;
}

/* ── Stat-Kacheln (PStTG) ─────────────────────────── */
.stat-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 680px; margin: 28px auto 0;
}
.stat-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 14px; padding: 20px 16px; text-align: center;
}
.stat-tile-num { font-family: 'DM Mono', monospace; font-weight: 500; font-size: 30px; color: #f1f5f9; line-height: 1.1; }
.stat-tile-label { font-size: 13px; color: #94a3b8; margin-top: 6px; line-height: 1.4; }
@media (max-width: 560px) { .stat-tiles { grid-template-columns: 1fr; max-width: 320px; } }

/* ── 3-Schritte-Story (Import → Überblick → Export) ── */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; text-align: left; }
@media (max-width: 820px) { .steps3 { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.step3-card { border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; background: #fff; }
.step3-visual {
  aspect-ratio: 1.3; background: #0f172a; padding: 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.step3-body { padding: 16px 18px; }
.step3-head { display: flex; align-items: center; gap: 8px; }
.step3-num {
  width: 24px; height: 24px; border-radius: 50%; background: #2563eb; color: #fff;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step3-body h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0; }
.step3-body p { font-size: 13.5px; color: #64748b; line-height: 1.5; margin: 9px 0 0; }
/* Mini-Mockup-Bausteine im dunklen Visual */
.mini-chip {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px;
  font-size: 11px; border-radius: 6px; padding: 4px 9px;
}
.mini-chip-pc { color: #d8b4fe; background: rgba(168,85,247,0.2); }
.mini-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 9px; padding: 11px; }
.mini-line { height: 7px; background: rgba(255,255,255,0.14); border-radius: 3px; }
.mini-line.sm { width: 70%; background: rgba(255,255,255,0.09); margin-top: 6px; }
.mini-row { display: flex; justify-content: space-between; align-items: center; }
.mini-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-kpi { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 9px; padding: 10px; }
.mini-kpi-label { font-size: 10px; color: #64748b; }
.mini-kpi-val { font-family: 'DM Mono', monospace; font-size: 16px; margin-top: 3px; }
.mini-kpi-val.pos { color: #6ee7b7; } .mini-kpi-val.neg { color: #fca5a5; }
.mini-result { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.28); border-radius: 9px; padding: 11px; }
.mini-result-label { font-size: 10px; color: #93c5fd; }
.mini-result-val { font-family: 'DM Mono', monospace; font-size: 20px; color: #fff; margin-top: 3px; }
.mini-detected { display: flex; align-items: center; justify-content: space-between; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.28); border-radius: 9px; padding: 11px 13px; }
.mini-detected span { font-size: 12px; color: #cbd5e1; }
.mini-detected .mono { color: #6ee7b7; font-size: 12px; }
.mini-export-chips { display: flex; gap: 7px; }
.mini-export-chips span { font-size: 11px; border-radius: 6px; padding: 5px 10px; }
.export-pdf, .export-csv { color: #93c5fd; background: rgba(59,130,246,0.16); }
.export-datev { color: #facc15; background: rgba(234,179,8,0.16); }
.devices-bar {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 18px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px 26px;
  flex-wrap: wrap; justify-content: center;
}
.devices-bar .di { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #475569; }
.devices-bar .di .icon { color: #2563eb; width: 18px; height: 18px; }

/* ── Utilities ────────────────────────────────────── */
.text-teal { color: #1D9E75; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .how-steps { gap: 40px; }
  .how-step-header { align-items: flex-start; }
  .founder-inner { flex-direction: column; gap: 24px; }
  .founder-aside { flex: none; width: 100%; }
  .nav-cta { display: none; }
  .email-form { flex-direction: column; align-items: stretch; }
  .email-input { min-width: unset; }
  .btn-primary { width: 100%; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
