/* ===== Digitally Done EOOD — gute-buchhaltung.de =====
   Design: modern, im Stil von Google (Material) —
   viel Weißraum, Google-Farbpalette, Pill-Buttons, weiche Schatten */

:root {
  --blue: #1a73e8;
  --blue-dark: #1765cc;
  --blue-tint: #e8f0fe;
  --green: #188038;
  --green-tint: #e6f4ea;
  --yellow: #f9ab00;
  --yellow-tint: #fef7e0;
  --red: #d93025;
  --red-tint: #fce8e6;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --bg-soft: #f8f9fa;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 1px 2px rgba(60, 64, 67, 0.1), 0 2px 8px rgba(60, 64, 67, 0.08);
  --shadow-lg: 0 4px 12px rgba(60, 64, 67, 0.12), 0 12px 32px rgba(60, 64, 67, 0.1);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; }

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f1f3f4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.logo-icon {
  height: 34px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 60%, #185abc 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.logo small {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.15s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--blue); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--blue);
  background: var(--white);
}

.btn-outline:hover {
  background: var(--blue-tint);
  border-color: var(--blue-tint);
}

.btn-lg { padding: 15px 36px; font-size: 1.02rem; }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  background: var(--white);
  color: var(--ink);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  left: -160px;
  top: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.12) 0%, transparent 68%);
}

.hero::after {
  right: -140px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero .eyebrow {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero h1 span {
  background: linear-gradient(90deg, #4285f4, #1a73e8 45%, #188038);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-facts {
  display: flex;
  gap: 56px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-fact strong {
  display: block;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
}

.hero-fact span { font-size: 0.88rem; color: var(--muted); }

/* ===== Trust bar ===== */
.trustbar {
  background: var(--bg-soft);
  padding: 26px 0;
}

.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-item svg { flex-shrink: 0; color: var(--blue); }

/* ===== Sections ===== */
section { padding: 96px 0; }

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Probleme & Lösungen ===== */
.problems { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.problem-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.problem-x {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-head h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.problem-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.solution-box {
  background: var(--green-tint);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.9rem;
  color: #17422a;
  line-height: 1.55;
}

.solution-box strong { color: var(--green); }

.problems-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Leistungen ===== */
.services { background: var(--white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===== Zwei Leistungsbereiche ===== */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-block {
  border-radius: 28px;
  padding: 44px 40px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 22px;
  scroll-margin-top: 90px;
  transition: box-shadow 0.25s;
}

.service-block:hover { box-shadow: var(--shadow-lg); }

.service-lohn { background: var(--blue-tint); }
.service-fibu { background: var(--green-tint); }

.service-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-block-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-lohn .service-block-icon { color: var(--blue); }
.service-fibu .service-block-icon { color: var(--green); }

.service-block-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.service-lohn .service-block-label { color: var(--blue); }
.service-fibu .service-block-label { color: var(--green); }

.service-block h3 {
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-block-intro { color: #3c4043; font-size: 0.97rem; }

.service-sub {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.service-sub-highlight {
  border: 2px solid var(--green);
}

.service-lohn .service-sub-highlight {
  border-color: var(--blue);
}

.service-sub-highlight h4::before {
  content: "⚡ ";
}

.service-sub-note {
  font-size: 0.9rem;
  color: #3c4043;
  margin-bottom: 14px;
}

.service-sub h4 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-sub ul { list-style: none; }

.service-sub li {
  padding-left: 28px;
  position: relative;
  font-size: 0.93rem;
  margin-bottom: 9px;
  color: #3c4043;
}

.service-sub li:last-child { margin-bottom: 0; }

.service-sub li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-lohn .service-sub li::before { color: var(--blue); }
.service-fibu .service-sub li::before { color: var(--green); }

.service-block .btn { align-self: flex-start; margin-top: 4px; }

.service-fibu .btn-primary { background: var(--green); }
.service-fibu .btn-primary:hover {
  background: #146c2e;
  box-shadow: 0 4px 14px rgba(24, 128, 56, 0.4);
}

/* ===== Steuerberater-Banner ===== */
.partner-banner {
  margin-top: 32px;
  background: var(--blue-tint);
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.partner-text { flex-grow: 1; }

.partner-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.partner-text p { color: #3c4043; font-size: 0.95rem; }

.partner-banner .btn { flex-shrink: 0; }

@media (max-width: 900px) {
  .partner-banner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ===== Preisrechner ===== */
.pricing { background: var(--bg-soft); }

.calc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.calc-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 34px;
  box-shadow: var(--shadow);
}

.calc-group { margin-bottom: 28px; }

.calc-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.calc-label strong { color: var(--blue); }

.seg {
  display: flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}

.seg button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.seg button.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  height: 34px;
  cursor: pointer;
}

.calc-hint { font-size: 0.85rem; color: var(--muted); }

.calc-tiers {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px 20px;
}

.calc-tiers + .calc-tiers { margin-top: 14px; }

.calc-tiers .calc-label { margin-bottom: 8px; font-size: 0.86rem; }

.tier-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px dashed var(--line);
}

.tier-row:last-child { border-bottom: none; }
.tier-row span:last-child { font-weight: 600; color: var(--ink); }

.price-card {
  background: linear-gradient(135deg, #1a73e8 0%, #185abc 100%);
  border-radius: 24px;
  padding: 36px 34px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aecbfa;
  margin-bottom: 6px;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-sub { color: #d2e3fc; font-size: 0.88rem; margin-bottom: 20px; }

.price-breakdown {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 16px;
  margin-bottom: 20px;
}

.price-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 0.92rem;
  padding: 5px 0;
  color: #e8f0fe;
}

.price-breakdown li span:last-child { font-weight: 600; color: #fff; white-space: nowrap; }

.price-includes {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.price-includes strong { display: block; margin-bottom: 8px; }

.price-includes ul { list-style: none; }

.price-includes li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 5px;
  color: #d2e3fc;
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8ab4f8;
  font-weight: 700;
}

.price-setup {
  font-size: 0.85rem;
  color: #d2e3fc;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 14px;
}

.price-setup strong { display: block; margin-bottom: 6px; color: #fff; }

.price-setup ul { list-style: none; }

.price-setup li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 3px 0;
}

.price-setup li span:last-child {
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
}

.price-setup li.setup-group {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aecbfa;
}

.price-setup li.setup-group:first-child { margin-top: 0; }

.setup-total {
  margin-top: 6px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.price-onboard-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #d2e3fc;
  font-size: 0.88rem;
  text-decoration: underline;
}

.price-onboard-link:hover { color: #fff; }

.btn-white {
  background: #fff;
  color: var(--blue) !important;
  display: block;
  text-align: center;
}

.btn-white:hover {
  background: #f1f6fe;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* ===== Nettolohnoptimierung ===== */
.fundstelle {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 10px 0 12px;
}

.fundstelle a { color: var(--blue); text-decoration: none; }
.fundstelle a:hover { text-decoration: underline; }

.card .solution-box { margin-top: auto; }

.netto-split { grid-template-columns: 1fr 1.6fr; }

.mini-list { list-style: none; }

.mini-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid #f1f3f4;
}

.mini-list li:last-child { border-bottom: none; }

.mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.mini-list strong { color: var(--ink); }
.mini-list a { color: var(--blue); text-decoration: none; }
.mini-list a:hover { text-decoration: underline; }

/* ===== Zielgruppen ===== */
.audience { background: var(--white); padding-top: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.audience-card .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.audience-card:nth-child(1) .tag { background: var(--blue-tint); color: var(--blue); }
.audience-card:nth-child(2) .tag { background: var(--yellow-tint); color: #b06000; }
.audience-card:nth-child(3) .tag { background: var(--green-tint); color: var(--green); }

.audience-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.audience-card p { color: var(--muted); font-size: 0.93rem; }

/* ===== Vorteile ===== */
.benefits { background: var(--bg-soft); }

.benefits h2 { color: var(--ink); }
.benefits .section-head p { color: var(--muted); }
.benefits .kicker { color: var(--blue); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.benefit svg { flex-shrink: 0; margin-top: 3px; }

.benefit-grid .benefit:nth-child(1) svg { color: var(--blue); }
.benefit-grid .benefit:nth-child(2) svg { color: var(--red); }
.benefit-grid .benefit:nth-child(3) svg { color: var(--yellow); }
.benefit-grid .benefit:nth-child(4) svg { color: var(--green); }

.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); font-weight: 700; }
.benefit p { color: var(--muted); font-size: 0.92rem; }

/* ===== Ablauf ===== */
.process { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.step {
  position: relative;
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.steps .step:nth-child(1) .step-num { background: var(--blue); }
.steps .step:nth-child(2) .step-num { background: var(--red); }
.steps .step:nth-child(3) .step-num { background: var(--yellow); }
.steps .step:nth-child(4) .step-num { background: var(--green); }

.step h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ===== Onboarding ===== */
.onboard-head {
  text-align: center;
  max-width: 680px;
  margin: 72px auto 40px;
}

.onboard-head h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.onboard-head p { color: var(--muted); }

.onboard-grid { grid-template-columns: repeat(2, 1fr); }

.onboard-note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== Über uns ===== */
.about { background: var(--bg-soft); }

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-badges span {
  background: var(--white);
  border-radius: 999px;
  padding: 9px 19px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.about-visual {
  background: var(--white);
  border-radius: 28px;
  padding: 44px 40px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.about-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 18px;
  display: block;
}

.about-photo-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 10px 0 22px;
  text-align: center;
}

.about-visual h3 { font-size: 1.25rem; margin-bottom: 20px; font-weight: 700; }

.about-visual ul { list-style: none; }

.about-visual li {
  padding: 14px 0 14px 34px;
  position: relative;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.95rem;
  color: #3c4043;
}

.about-visual li:last-child { border-bottom: none; }

.about-visual li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }

.faq-item summary {
  padding: 21px 28px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary:hover { color: var(--blue); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 28px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== Kontakt ===== */
.contact {
  background: linear-gradient(135deg, #1a73e8 0%, #185abc 100%);
  color: #fff;
  border-radius: 40px;
  max-width: 1240px;
  margin: 0 auto 96px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact .kicker { color: #aecbfa; }
.contact h2 { color: #fff; }
.contact-text p { color: #d2e3fc; margin-bottom: 22px; }

.contact-methods { list-style: none; margin-top: 8px; }

.contact-methods li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
}

.contact-methods svg { color: #aecbfa; flex-shrink: 0; }

.contact-methods a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-methods a:hover { text-decoration: underline; }

.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 6px; font-weight: 700; }
.contact-card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.success { background: var(--green-tint); color: var(--green); }
.form-status.success a { color: inherit; font-weight: 700; }
.form-status.error { background: var(--red-tint); color: var(--red); }

.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--blue); }

/* ===== Onboarding-Assistent ===== */
.wizard-page { padding: 64px 0 90px; background: var(--bg-soft); min-height: 70vh; }

.wizard-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }

.wizard-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.wp-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  box-shadow: var(--shadow);
}

.wp-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.wp-step.active { color: var(--blue); }
.wp-step.active span { background: var(--blue); color: #fff; }
.wp-step.done span { background: var(--green); color: #fff; }

.wizard-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 38px;
  box-shadow: var(--shadow-lg);
}

.wizard-card h2 { font-size: 1.25rem; margin-bottom: 18px; }

.wizard-hint { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.choice-card {
  display: block;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.choice-card:has(input:checked) { border-color: var(--blue); background: var(--blue-tint); }

.choice-card input { margin-right: 8px; accent-color: var(--blue); }
.choice-card strong { display: inline; color: var(--ink); }
.choice-card span { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.pill-radios { display: flex; flex-wrap: wrap; gap: 10px; }

.pill-radios label {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
}

.pill-radios label:has(input:checked) { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); font-weight: 600; }
.pill-radios input { accent-color: var(--blue); margin-right: 6px; }

.checkbox-line { display: block; padding: 7px 0; font-size: 0.93rem; cursor: pointer; }
.checkbox-line input { accent-color: var(--blue); margin-right: 8px; }

.datev-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}

.datev-item:last-of-type { border-bottom: none; }

.datev-item strong { font-size: 0.92rem; color: var(--ink); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.wizard-count { font-size: 0.85rem; color: var(--muted); }

.wizard-summary {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.download-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.download-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.15s;
}

.download-links a:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

@media (max-width: 700px) {
  .form-row, .choice-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 28px 22px; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-soft);
  color: var(--muted);
  padding: 56px 0 32px;
  font-size: 0.9rem;
  border-top: 1px solid #f1f3f4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
}

.footer-grid h4 {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }

.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--blue); }

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--muted); }

/* ===== Legal pages ===== */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.legal-page h1 { color: var(--ink); font-size: 2rem; margin-bottom: 30px; font-weight: 700; }
.legal-page h2 { font-size: 1.25rem; margin: 34px 0 12px; }
.legal-page p, .legal-page li { color: #3c4043; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--blue); }

.placeholder {
  background: var(--yellow-tint);
  border: 1px solid #fde293;
  border-radius: 12px;
  padding: 14px 18px;
  color: #b06000;
  font-size: 0.9rem;
  margin: 18px 0;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open { display: flex; }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--ink);
  }
}

@media (max-width: 900px) {
  .card-grid, .audience-grid, .service-split, .problem-grid, .netto-split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .about-inner, .contact-inner, .calc-wrap { grid-template-columns: 1fr; gap: 40px; }
  .price-card { position: static; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact { border-radius: 0; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .btn, .seg button { white-space: normal; }
  .seg button { padding: 9px 6px; font-size: 0.84rem; min-width: 0; }
  .calc-card, .price-card { padding: 26px 18px; }
  .hero { padding: 64px 0 72px; }
  .steps { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr; }
  .hero-facts { gap: 28px; }
  .service-block { padding: 32px 24px; }
}
