/* =========================================================
   EggsyApp — Design System
   Modern · Klar · Naturverbunden · Premium SaaS
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
  border-radius: 6px;
}
::selection { background: var(--brand-200); color: var(--brand-900); }

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Green */
  --brand-50:  #f1f8f2;
  --brand-100: #def0e1;
  --brand-200: #bfe0c6;
  --brand-300: #94c9a0;
  --brand-400: #64ac74;
  --brand-500: #3f8d53;
  --brand-600: #2f7342;
  --brand-700: #275c37;
  --brand-800: #214a2f;
  --brand-900: #1c3d28;

  /* Cream / Natur */
  --cream-50:  #fdfcf7;
  --cream-100: #faf7ed;
  --cream-200: #f4eed9;
  --cream-300: #ebe1bf;

  /* Akzent Eigelb (dezent) */
  --yolk-200: #ffdc87;
  --yolk-300: #ffc555;
  --yolk-400: #f5ac2b;

  /* Ink / Neutral */
  --ink-50:  #f7f7f6;
  --ink-100: #e8e8e5;
  --ink-200: #cfcfc9;
  --ink-300: #a8a8a0;
  --ink-400: #7a7a71;
  --ink-500: #545450;
  --ink-600: #3a3a37;
  --ink-700: #29292a;
  --ink-800: #1c1c1d;
  --ink-900: #121213;

  /* Semantic */
  --bg: var(--cream-50);
  --fg: var(--ink-800);
  --muted: var(--ink-500);
  --border: var(--ink-100);
  --surface: #ffffff;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(18,18,19,.04), 0 2px 8px rgba(18,18,19,.04);
  --shadow-card: 0 1px 3px rgba(18,18,19,.05), 0 8px 32px rgba(18,18,19,.06);
  --shadow-lift: 0 2px 4px rgba(18,18,19,.06), 0 16px 48px rgba(18,18,19,.08);
  --shadow-ring: 0 0 0 1px rgba(47,115,66,.12), 0 8px 32px rgba(47,115,66,.10);

  /* Radii */
  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.125rem;
  --r-2xl: 1.5rem;
  --r-full: 9999px;

  /* Spacing scale */
  --space: 1rem;

  /* Type */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Container */
  --container: 1200px;
  --container-tight: 1080px;
  --container-narrow: 780px;
}

html, body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); }

body {
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(63,141,83,.08), transparent 60%),
    radial-gradient(800px 500px at 100% 0, rgba(245,172,43,.05), transparent 60%);
  background-attachment: fixed;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.875rem, 3.6vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }
p { color: var(--ink-700); }
small { font-size: .85rem; color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 1rem;
}

.muted { color: var(--muted); }
.lede { font-size: 1.125rem; color: var(--ink-600); max-width: 52ch; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.container-tight { max-width: var(--container-tight); }
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 5vw, 5rem); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack-sm > * + * { margin-top: .5rem; }
.stack-md > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--brand-700); box-shadow: var(--shadow-card); }

.btn-secondary {
  background: #fff;
  color: var(--ink-800);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover { border-color: var(--ink-200); background: var(--ink-50); }

.btn-ghost { color: var(--ink-700); }
.btn-ghost:hover { color: var(--ink-900); background: var(--ink-50); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Chip / Badge ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--brand-50);
  color: var(--brand-800);
  border: 1px solid rgba(148, 201, 160, .5);
  border-radius: var(--r-full);
  padding: .3rem .75rem;
  font-size: .78rem;
  font-weight: 500;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(63,141,83,.18);
}
.badge {
  display: inline-flex;
  background: var(--ink-900);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .55rem;
  border-radius: var(--r-full);
  letter-spacing: .02em;
}
.badge-yolk { background: var(--yolk-400); color: var(--ink-900); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.card-hover {
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  border-color: var(--ink-200);
  box-shadow: var(--shadow-card);
}
.card-ghost {
  background: transparent;
  border: 1px solid var(--border);
}

.feature-card { padding: 1.75rem; }
.feature-card .feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.feature-card p { font-size: .95rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(253, 252, 247, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(253, 252, 247, 0.86);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
  gap: 2rem;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; color: var(--ink-900);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-brand .brand-mark {
  width: 32px; height: 32px;
  background: var(--brand-600);
  color: #fff;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: .92rem;
  color: var(--ink-600);
}
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--ink-900); }
.nav-links a.active { color: var(--ink-900); }
.nav-actions { display: none; align-items: center; gap: .6rem; }
.nav-toggle {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center; justify-content: center;
}
@media (min-width: 900px) {
  .nav-links, .nav-actions { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream-50);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: .9rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-800);
}
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 7vw, 7rem) clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(63,141,83,.14), transparent 55%),
    radial-gradient(500px 350px at 85% 10%, rgba(245,172,43,.10), transparent 55%),
    radial-gradient(700px 500px at 50% 120%, rgba(63,141,83,.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.hero h1 { margin-block: 1rem; }
.hero .lede { margin-bottom: 2rem; font-size: 1.15rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  font-size: .85rem; color: var(--muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { color: var(--brand-600); flex-shrink: 0; }

/* ---------- Section Heading ---------- */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 58ch; margin-inline: auto; color: var(--ink-600); font-size: 1.05rem; }
.section-head-left { text-align: left; }
.section-head-left p { margin-inline: 0; }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding-block: 2.5rem;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.4);
}
.trust-bar-label {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  opacity: .75;
}
.trust-logo {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-500);
  letter-spacing: -0.01em;
  font-variant: small-caps;
}

/* ---------- Problem / Lösung ---------- */
.pain-grid { margin-top: 2rem; }
.pain {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
}
.pain .pain-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: #fef2f2;
  color: #b45309;
  display: inline-flex; align-items: center; justify-content: center;
}
.pain h4 { margin-bottom: .35rem; font-size: 1rem; }
.pain p { font-size: .92rem; color: var(--ink-600); }

.solution {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--cream-100) 100%);
  border: 1px solid var(--brand-100);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .solution { grid-template-columns: 1fr 1fr; padding: 3rem; gap: 3rem; }
}
.solution h3 { margin-bottom: .75rem; }
.solution-bullets { margin-top: 1rem; }
.solution-bullets li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding-block: .4rem;
  font-size: .95rem;
  color: var(--ink-700);
}
.solution-bullets svg { color: var(--brand-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Audience Cards ---------- */
.audience-card {
  padding: 2rem;
}
.audience-card .feature-icon {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
}
.audience-card ul { margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.audience-card li {
  display: flex; align-items: center; gap: .5rem;
  padding-block: .3rem;
  font-size: .88rem;
  color: var(--ink-600);
}
.audience-card li::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
  flex-shrink: 0;
}

/* ---------- Mockup (SVG Frame) ---------- */
.mockup-frame {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--cream-100));
  padding: 14px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(28,28,29,.06);
}
.mockup-window {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}
.mockup-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--cream-100);
  border-bottom: 1px solid var(--border);
}
.mockup-topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-200); }
.mockup-topbar .dot.r { background: #ef8776; }
.mockup-topbar .dot.y { background: #f5c14f; }
.mockup-topbar .dot.g { background: #7bc08b; }
.mockup-topbar .url {
  margin-left: auto;
  font-size: .72rem;
  color: var(--muted);
  background: #fff;
  padding: .25rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.mockup-phone {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 30%;
  max-width: 200px;
  border-radius: 26px;
  border: 8px solid var(--ink-900);
  background: #fff;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
@media (max-width: 640px) {
  .mockup-phone { position: static; width: 60%; margin: 1.5rem auto 0; }
}

/* ---------- Screenshots Tabs ---------- */
.shots-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.shots-tab {
  padding: .6rem 1.1rem;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-600);
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s ease;
}
.shots-tab:hover { color: var(--ink-900); border-color: var(--ink-200); }
.shots-tab[aria-selected="true"] {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}
.shots-panel { display: none; animation: fadeIn .3s ease; }
.shots-panel.active { display: block; }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--ink-100);
  border-radius: var(--r-full);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.pricing-toggle button {
  padding: .55rem 1.15rem;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: all .2s ease;
}
.pricing-toggle button[aria-pressed="true"] {
  background: #fff;
  color: var(--ink-900);
  box-shadow: var(--shadow-soft);
}
.pricing-toggle .save {
  display: inline-block;
  margin-left: .4rem;
  padding: 1px 7px;
  background: var(--brand-100);
  color: var(--brand-800);
  border-radius: 999px;
  font-size: .7rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.plan .plan-name { font-size: .95rem; font-weight: 600; color: var(--brand-700); margin-bottom: .4rem; }
.plan .plan-tagline { font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; min-height: 2.4em; }
.plan .plan-price {
  display: flex; align-items: baseline; gap: .35rem;
  margin-bottom: .25rem;
}
.plan .plan-price .amount { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em; color: var(--ink-900); }
.plan .plan-price .period { color: var(--muted); font-size: .9rem; }
.plan .plan-billing { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; min-height: 1.2em; }
.plan .plan-cta { margin-bottom: 1.5rem; }
.plan .plan-features { padding-top: 1.25rem; border-top: 1px solid var(--border); }
.plan .plan-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding-block: .45rem;
  font-size: .9rem;
  color: var(--ink-700);
}
.plan .plan-features li.excluded { color: var(--ink-300); text-decoration: line-through; }
.plan .plan-features svg { color: var(--brand-600); flex-shrink: 0; margin-top: 3px; }
.plan .plan-features li.excluded svg { color: var(--ink-200); }

.plan.is-featured {
  border-color: var(--brand-600);
  box-shadow: var(--shadow-ring);
}
.plan.is-featured::before {
  content: attr(data-badge);
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-600);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.pricing-guarantees {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 2rem;
  margin-top: 3rem;
  color: var(--ink-600);
  font-size: .88rem;
}
.pricing-guarantees li { display: inline-flex; align-items: center; gap: .5rem; }
.pricing-guarantees svg { color: var(--brand-600); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.testi-stars { display: inline-flex; gap: 2px; color: var(--yolk-400); }
.testi q {
  quotes: none;
  color: var(--ink-700);
  font-size: .96rem;
  line-height: 1.6;
  flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
}
.testi-author .name { font-weight: 600; font-size: .9rem; color: var(--ink-900); }
.testi-author .role { font-size: .8rem; color: var(--muted); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 720px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .stat-value {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.stat .stat-label { font-size: .82rem; color: var(--muted); margin-top: .25rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-900);
}
.faq-trigger .faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-500);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item[aria-expanded="true"] .faq-toggle {
  background: var(--brand-600); color: #fff;
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item[aria-expanded="true"] .faq-panel {
  max-height: 400px;
}
.faq-panel p {
  padding-bottom: 1.25rem;
  color: var(--ink-600);
  font-size: .95rem;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 32px;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(63,141,83,.25), transparent 60%),
    radial-gradient(500px 250px at 100% 100%, rgba(245,172,43,.18), transparent 60%),
    linear-gradient(135deg, var(--brand-800) 0%, var(--brand-900) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='.5' opacity='.08'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='32'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-final .btn-primary { background: #fff; color: var(--ink-900); }
.cta-final .btn-primary:hover { background: var(--cream-100); }
.cta-final .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.cta-final .btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream-100);
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p {
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: .9rem;
  max-width: 32ch;
}
.footer-col h5 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 1rem;
}
.footer-col ul li { padding-block: .3rem; }
.footer-col a { color: var(--ink-700); font-size: .92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--ink-900); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--muted);
}
.social-links { display: inline-flex; gap: .5rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-500);
  transition: all .2s ease;
}
.social-links a:hover { color: var(--brand-700); border-color: var(--brand-300); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-800); }
.field .hint { font-size: .8rem; color: var(--muted); }
.input, .textarea, .select {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  font-size: .95rem;
  color: var(--ink-800);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(63,141,83,.15);
}
.textarea { min-height: 140px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--ink-700); }
.checkbox input { margin-top: 3px; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.alert-success { background: var(--brand-50); color: var(--brand-800); border: 1px solid var(--brand-200); }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.625rem; }
.prose h3 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.2rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-700); }
.prose ul { margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; }
.prose ul li { padding-block: .25rem; color: var(--ink-700); }
.prose a { color: var(--brand-700); text-decoration: underline; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.hidden { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Zielgruppen-Chip-Row (Hero) ---------- */
.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.audience-row .chip {
  background: #fff;
  border-color: var(--border);
  color: var(--ink-700);
  font-weight: 500;
}

/* ---------- Feature-Gruppen ---------- */
.fg-section + .fg-section { margin-top: 2.5rem; }
.fg-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.fg-head .fg-step {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--brand-600);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.fg-head h3 { margin: 0; font-size: 1.375rem; }
.fg-head p {
  margin: 0;
  color: var(--ink-500);
  font-size: .92rem;
  margin-left: auto;
  max-width: 42ch;
  text-align: right;
}
@media (max-width: 700px) {
  .fg-head { flex-wrap: wrap; }
  .fg-head p { text-align: left; margin-left: 0; max-width: none; }
}
.fg-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 720px) { .fg-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fg-items { grid-template-columns: repeat(4, 1fr); } }
.fg-item {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .92rem;
  transition: border-color .2s ease, background .2s ease;
}
.fg-item:hover { border-color: var(--brand-300); background: var(--brand-50); }
.fg-item .fg-title { font-weight: 600; color: var(--ink-900); display: flex; align-items: center; gap: .5rem; margin-bottom: .25rem; }
.fg-item .fg-title svg { color: var(--brand-600); flex-shrink: 0; }
.fg-item .fg-desc { color: var(--ink-600); font-size: .85rem; line-height: 1.5; }

/* ---------- 8 Hof-Schwerpunkte (Tile-Grid) ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 720px) { .focus-grid { grid-template-columns: repeat(4, 1fr); } }
.focus-tile {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: left;
}
.focus-tile:hover {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-card);
}
.focus-tile .focus-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.focus-tile h4 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--ink-900);
}
.focus-tile p {
  font-size: .82rem;
  color: var(--ink-600);
  line-height: 1.5;
}

/* ---------- Trust-Band (faktisch) ---------- */
.trust-fact-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-radius: var(--r-2xl);
  background: #fff;
  border: 1px solid var(--border);
  margin-top: 3rem;
}
@media (min-width: 720px) { .trust-fact-band { grid-template-columns: repeat(5, 1fr); padding: 2.5rem; } }
.trust-fact {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: .25rem 1rem;
}
.trust-fact:last-child { border-right: 0; }
@media (max-width: 719px) {
  .trust-fact { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
  .trust-fact:last-child { border-bottom: 0; padding-bottom: 0; }
}
.trust-fact .tf-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: -0.02em;
  margin-bottom: .25rem;
}
.trust-fact .tf-label { font-size: .82rem; color: var(--ink-600); line-height: 1.4; }

/* ---------- Benefit-Grid (Lösung) ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 720px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card {
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
}
.benefit-card .benefit-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-600);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-card h4 { font-size: 1rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .88rem; color: var(--ink-600); line-height: 1.5; }

/* ---------- Starter-Plan Dimming (im Pricing) ---------- */
.plan.is-starter { background: var(--cream-50); }
.plan.is-starter .plan-name { color: var(--ink-600); }

/* ---------- Experte dezent hochwertig ---------- */
.plan.is-expert { background: linear-gradient(180deg, #fff 0%, var(--cream-100) 100%); }

/* ---------- Pricing-Card: Kurztext + Limits-Grid ---------- */
.plan .plan-meta {
  font-size: .88rem;
  color: var(--ink-600);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 2.6em;
}
.plan .plan-limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .9rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.plan .plan-limit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  font-size: .82rem;
  line-height: 1.35;
}
.plan .plan-limit .ll { color: var(--ink-500); }
.plan .plan-limit .lv { color: var(--ink-900); font-weight: 600; letter-spacing: -0.01em; }
.plan.is-featured .plan-limit .lv { color: var(--brand-700); }
.plan .plan-limit .lv.zero { color: var(--ink-300); font-weight: 500; }
.plan .plan-limit .lv.inf { font-size: .95rem; }
.plan .plan-highlights-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: .6rem;
}

/* ---------- Page Hero (legal / sub pages) ---------- */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(63,141,83,.08), transparent 60%);
}
.page-hero h1 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: var(--ink-600); font-size: 1.05rem; max-width: 55ch; }
