/* ============================================================
   BilanzPilot – Marketing Website
   Designsystem: clean, hell, präzise. Blau als Markenfarbe.
   ============================================================ */

:root {
  --ink: #0b1220;
  --ink-soft: #1e293b;
  --slate: #475569;
  --slate-light: #64748b;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-deep: #0b1220;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-deeper: #1e3a8a;
  --brand-soft: #eff6ff;
  --brand-line: #bfdbfe;
  --green: #059669;
  --green-soft: #ecfdf5;
  --amber: #d97706;
  --amber-soft: #fffbeb;
  --violet: #7c3aed;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 30px 70px -25px rgba(15, 23, 42, .35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 28px; width: auto; }
.site-footer .brand img { height: 26px; filter: brightness(0) invert(1); opacity: .92; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }
.nav-login { color: var(--slate); font-weight: 600; font-size: 15px; white-space: nowrap; transition: color .15s; }
.nav-login:hover { color: var(--brand); }

/* Volle Navigation braucht ~1000px – darunter Hamburger-Menü */
@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn-secondary, .nav-cta .nav-login { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px;
    box-shadow: var(--shadow-md);
  }
}
@media (min-width: 1081px) {
  .nav-links .nav-login-item { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .18s ease;
  font-family: var(--font); line-height: 1.2; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -6px rgba(37, 99, 235, .55); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(37, 99, 235, .6); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: #cbd5e1; background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--slate); }
.btn-ghost:hover { color: var(--ink); }
.btn-light { background: #fff; color: var(--brand-deeper); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .4); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(37, 99, 235, .12), transparent 60%),
    radial-gradient(900px 480px at 90% 0%, rgba(124, 58, 237, .07), transparent 55%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  padding: 88px 0 0;
}
.hero-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); border: 1px solid var(--brand-line); color: var(--brand-dark);
  font-size: 13.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px; letter-spacing: .01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(5, 150, 105, .14); }
h1.display {
  font-size: clamp(38px, 5.4vw, 60px); line-height: 1.08; letter-spacing: -.032em;
  font-weight: 800; margin: 26px 0 22px; color: var(--ink);
}
h1.display .accent { color: var(--brand); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--slate); max-width: 720px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: 13.5px; color: var(--slate-light); margin-bottom: 56px; }

/* Browser-Mockup */
.browser {
  border-radius: 18px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.browser-bar {
  display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9); border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #fb7185; }
.browser-dots i:nth-child(2) { background: #fbbf24; }
.browser-dots i:nth-child(3) { background: #34d399; }
.browser-url {
  flex: 1; max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; font-size: 12.5px; color: var(--slate-light); padding: 5px 14px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.browser-url svg { width: 11px; height: 11px; flex: none; }
.hero-shot { max-width: 860px; margin: 0 auto 72px; }

/* ---------- Logo strip / Trust ---------- */
.trustbar { padding: 34px 0 10px; }
.trustbar p { text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-light); font-weight: 600; margin-bottom: 22px; }
.trust-items { display: flex; justify-content: center; gap: 18px 44px; flex-wrap: wrap; color: #94a3b8; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.trust-items span { display: inline-flex; align-items: center; gap: 8px; }
.trust-items svg { width: 18px; height: 18px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.kicker { color: var(--brand); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
h2.title { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.025em; line-height: 1.15; font-weight: 800; margin-bottom: 16px; }
.section-head .sub { color: var(--slate); font-size: 17.5px; }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #dbeafe; }
.icon-tile {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 18px;
}
.icon-tile svg { width: 22px; height: 22px; }
.icon-tile.green { background: var(--green-soft); color: var(--green); }
.icon-tile.amber { background: var(--amber-soft); color: var(--amber); }
.icon-tile.violet { background: #f5f3ff; color: var(--violet); }
.card h3 { font-size: 18.5px; letter-spacing: -.015em; margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--slate); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px 30px; }
.step-num {
  position: absolute; top: -18px; left: 26px; width: 38px; height: 38px; border-radius: 12px;
  background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; box-shadow: 0 8px 16px -6px rgba(37, 99, 235, .45);
}
.step h3 { font-size: 18px; margin: 10px 0; font-weight: 700; letter-spacing: -.01em; }
.step p { color: var(--slate); font-size: 15px; }

/* ---------- Feature split (Screenshot + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 96px; }
.split .shot { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.split .copy .kicker { margin-bottom: 10px; }
.split .copy h3 { font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -.022em; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.split .copy p { color: var(--slate); margin-bottom: 20px; font-size: 16.5px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 15.5px; font-weight: 500; }
.checklist .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center;
}
.checklist .check svg { width: 12px; height: 12px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.stat .num { font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.stat .num em { font-style: normal; color: var(--brand); }
.stat .lbl { color: var(--slate-light); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.quote p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--brand-deeper); background: var(--brand-soft); border: 1px solid var(--brand-line); font-size: 14px; }
.quote .who b { display: block; font-size: 14.5px; }
.quote .who span { color: var(--slate-light); font-size: 13px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 280px at 85% -30%, rgba(59, 130, 246, .28), transparent 60%),
    linear-gradient(150deg, #0f1b33 0%, var(--brand-deeper) 100%);
  border-radius: 24px; color: #fff; padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.025em; font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 620px; margin: 0 auto 30px; font-size: 17px; }
.cta-band .hero-actions { margin: 0; }

/* ---------- Module cards (Funktionen) ---------- */
.module-card { display: flex; flex-direction: column; }
.module-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.module-head .icon-tile { margin: 0; width: 42px; height: 42px; flex: none; }
.module-head h3 { margin: 0; font-size: 17.5px; }
.module-head .idx { color: var(--slate-light); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 4px 10px; letter-spacing: .02em;
}
.badge.live { background: var(--green-soft); color: var(--green); }
.badge.soon { background: var(--amber-soft); color: var(--amber); }
.module-card ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.module-card ul li { display: flex; gap: 10px; font-size: 14px; color: var(--slate); align-items: flex-start; }
.module-card ul li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-top: 8px; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px; margin: 0 auto 48px; font-size: 14.5px; font-weight: 600; color: var(--slate);
}
.billing-toggle .save { color: var(--green); font-size: 12.5px; font-weight: 700; background: var(--green-soft); border-radius: 999px; padding: 3px 9px; }
.switch { position: relative; width: 46px; height: 26px; background: var(--line); border-radius: 999px; cursor: pointer; border: 0; transition: background .2s; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .2s; }
.switch[aria-checked="true"] { background: var(--brand); }
.switch[aria-checked="true"]::after { transform: translateX(20px); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); }
.flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(92deg, var(--brand), #4f46e5); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .04em; white-space: nowrap;
}
.flag.teal { background: linear-gradient(92deg, #0d9488, #059669); }
.price-card .plan { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.price-card .for { color: var(--slate-light); font-size: 13.5px; margin: 4px 0 20px; min-height: 40px; }
.price-line { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.price-line .cur { font-size: 20px; font-weight: 700; color: var(--slate); }
.price-line .amount { font-size: 42px; font-weight: 800; letter-spacing: -.04em; }
.price-line .per { color: var(--slate-light); font-size: 13.5px; white-space: nowrap; }
.price-card .bill-note { color: var(--slate-light); font-size: 12.5px; margin-bottom: 22px; min-height: 18px; }
.price-card .btn { margin-bottom: 24px; }
.price-card .feat-title { font-size: 13px; font-weight: 700; color: var(--slate-light); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.price-card .checklist { gap: 9px; }
.price-card .checklist li { font-size: 14px; font-weight: 450; }
.price-card .checklist .muted { color: var(--slate-light); }
.price-card .checklist .check { width: 19px; height: 19px; }

.compare-note { text-align: center; color: var(--slate-light); font-size: 14px; margin-top: 28px; }

/* Vergleichstabelle */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 14.5px; }
table.compare th, table.compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line-soft); }
table.compare th { font-size: 14px; }
table.compare td:first-child, table.compare th:first-child { text-align: left; font-weight: 500; color: var(--ink-soft); }
table.compare thead th { background: var(--bg-soft); font-weight: 700; position: sticky; top: 0; }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .no { color: #cbd5e1; }
table.compare tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-weight: 600; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; transition: transform .2s; color: var(--slate-light); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--slate); font-size: 15px; }

/* ---------- Konfigurator ---------- */
.config-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.config-modules { display: grid; gap: 14px; }
.config-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 22px 24px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; user-select: none;
}
.config-item:hover { border-color: #c7d8fb; }
.config-item.selected { border-color: var(--brand); background: linear-gradient(180deg, #fdfefe, #f6f9ff); box-shadow: 0 6px 18px -10px rgba(37, 99, 235, .35); }
.config-item.locked { cursor: default; }
.config-item.disabled { opacity: .62; cursor: default; }
.config-check {
  width: 26px; height: 26px; border-radius: 8px; border: 2px solid #cbd5e1; display: flex; align-items: center; justify-content: center;
  color: #fff; transition: .15s; flex: none;
}
.config-item.selected .config-check { background: var(--brand); border-color: var(--brand); }
.config-check svg { width: 14px; height: 14px; opacity: 0; transition: .15s; }
.config-item.selected .config-check svg { opacity: 1; }
.config-info h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.config-info p { color: var(--slate); font-size: 13.5px; margin-top: 3px; }
.config-price { text-align: right; }
.config-price .p { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.config-price .u { display: block; color: var(--slate-light); font-size: 12px; }
.config-price .free { color: var(--green); font-size: 14px; font-weight: 700; }

.summary-card { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); overflow: hidden; }
.summary-head { background: linear-gradient(120deg, var(--brand-deeper), var(--brand-dark)); color: #fff; padding: 24px 28px; }
.summary-head h3 { font-size: 17px; font-weight: 700; }
.summary-head p { color: rgba(255, 255, 255, .75); font-size: 13px; margin-top: 2px; }
.summary-body { padding: 24px 28px; }
.summary-rows { display: grid; gap: 10px; margin-bottom: 18px; min-height: 44px; }
.summary-rows .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); gap: 12px; }
.summary-rows .row span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.summary-rows .row.muted, .summary-rows .row.muted span { color: var(--slate-light); font-weight: 450; }
.summary-rows .row.discount, .summary-rows .row.discount span { color: var(--green); font-weight: 600; }
.summary-empty { color: var(--slate-light); font-size: 14px; }
.summary-divider { border: 0; border-top: 1px dashed var(--line); margin: 16px 0; }
.summary-users { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.summary-users label { font-size: 14px; font-weight: 600; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stepper button { width: 34px; height: 34px; border: 0; background: var(--bg-soft); font-size: 17px; cursor: pointer; color: var(--ink); font-weight: 700; }
.stepper button:hover { background: #eef2f7; }
.stepper output { width: 44px; text-align: center; font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }
.summary-users-note { color: var(--slate-light); font-size: 12px; margin-bottom: 14px; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin: 6px 0 2px; }
.summary-total .lbl { font-weight: 700; font-size: 15px; }
.summary-total .val { font-size: 34px; font-weight: 800; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.summary-total .val small { font-size: 14px; color: var(--slate-light); font-weight: 500; letter-spacing: 0; }
.summary-note { color: var(--slate-light); font-size: 12.5px; margin-bottom: 18px; }
.summary-note .strike { text-decoration: line-through; }
.summary-body .btn { margin-bottom: 10px; }
.summary-secure { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--slate-light); font-size: 12.5px; }
.summary-secure svg { width: 13px; height: 13px; color: var(--green); }

.preset-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.preset {
  border: 1px solid var(--line); background: #fff; color: var(--slate); border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: .15s;
}
.preset:hover { border-color: var(--brand); color: var(--brand); }
.preset.active { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-dark); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 15px;
  font-family: var(--font); color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}
.field textarea { min-height: 120px; resize: vertical; }
.contact-side h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.contact-side .block { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.contact-side .block:first-child { padding-top: 0; }
.contact-side p { color: var(--slate); font-size: 15px; }

/* ---------- Konto & Zahlung (Checkout) ---------- */
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px;
  font-weight: 600; font-size: 15px; background: #fff; color: var(--ink);
  cursor: pointer; font-family: var(--font); transition: .15s;
}
.btn-social svg { width: 18px; height: 18px; flex: none; }
.btn-social:hover { border-color: #cbd5e1; background: var(--bg-soft); }
.btn-social.apple { background: #000; color: #fff; border-color: #000; }
.btn-social.apple:hover { background: #1d1d1f; }
.btn-social.selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14); }
.btn-social.apple.selected { box-shadow: 0 0 0 3px rgba(0, 0, 0, .2); }
.divider-or { display: flex; align-items: center; gap: 14px; color: var(--slate-light); font-size: 13px; margin: 2px 0; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; border-top: 1px solid var(--line); }
.social-note { background: var(--brand-soft); border: 1px solid var(--brand-line); color: var(--brand-deeper); border-radius: 10px; padding: 12px 16px; font-size: 14px; }

.pay-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pay-tile {
  position: relative; display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 15px 16px;
  cursor: pointer; font-weight: 600; font-size: 15px; background: #fff; transition: .15s;
  user-select: none;
}
.pay-tile:hover { border-color: #c7d8fb; }
.pay-tile.selected { border-color: var(--brand); background: linear-gradient(180deg, #fdfefe, #f6f9ff); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12); }
.pay-tile svg { width: 22px; height: 22px; flex: none; }
.pay-tile .pm-paypal { font-style: italic; font-weight: 800; letter-spacing: -.02em; }
.pay-tile .pm-paypal b:first-child { color: #003087; }
.pay-tile .pm-paypal b:last-child { color: #0070ba; }
.pay-tile .pm-check {
  position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff; display: none; align-items: center; justify-content: center;
}
.pay-tile .pm-check svg { width: 12px; height: 12px; }
.pay-tile.selected .pm-check { display: flex; }
.pay-strip { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; color: var(--slate-light); font-size: 13px; font-weight: 600; }

@media (max-width: 720px) {
  .social-row, .pay-methods { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #cbd5e1; margin-top: 96px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #94a3b8; font-size: 14px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #94a3b8; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: #64748b; font-size: 13.5px;
}
.footer-badges { display: flex; gap: 18px; align-items: center; font-size: 12.5px; color: #94a3b8; }
.footer-badges span { display: inline-flex; align-items: center; gap: 6px; }
.footer-badges svg { width: 14px; height: 14px; color: #34d399; }

/* ---------- Reveal Animation (nur mit aktivem JS) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 20% -20%, rgba(37, 99, 235, .1), transparent 60%),
    linear-gradient(180deg, #fbfdff, #fff);
  padding: 76px 0 56px; text-align: center;
}
.page-hero .lead { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3, .quotes, .steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .shot { order: -1; }
  .config-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .quotes, .steps, .pricing-grid, .stats { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .contact-grid, .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 48px 24px; }
  .config-item { grid-template-columns: auto 1fr; }
  .config-price { grid-column: 2; text-align: left; margin-top: 4px; }
}
