/* ============================================================
   gwgportal.ch — main.css
   Schwesterportal zu transparenzregisterportal.ch
   Farbkonzept: einheitliches Royal-Blue (#2563EB)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Akzent — einheitlich, keine Farbmischung */
  --accent:        #2563EB;          /* Royal-Blue — primärer Akzent */
  --accent-dark:   #1D4ED8;          /* dunklere Variante für Hover */
  --accent-mid:    #3B82F6;          /* hellere Variante */
  --accent-soft:   #EFF6FF;          /* sehr heller Blue-50 Wash */
  --accent-line:   #BFDBFE;          /* dezenter Blue-200 Akzent-Rand */
  --accent-glow:   rgba(37, 99, 235, 0.28);

  /* .grad-Klasse bleibt für rückwärtskompatibles Markup,
     ist aber flach in der Akzentfarbe */
  --grad:          var(--accent);

  /* Neutrals — identisch zum Schwesterportal */
  --bg:            #FAFAFC;
  --bg-soft:       #F4F4F9;
  --bg-card:       #FFFFFF;
  --ink:           #0E0F2C;
  --ink-soft:      #2E3050;
  --muted:         #6B6E8A;
  --line:          #E8E8F0;
  --line-2:        #EFEFF5;

  /* Radii & Shadows */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(14, 15, 44, 0.04), 0 2px 8px rgba(14, 15, 44, 0.04);
  --sh-2: 0 4px 12px rgba(14, 15, 44, 0.06), 0 16px 32px rgba(14, 15, 44, 0.06);

  /* Spacing */
  --container: 1180px;
  --pad-x: 24px;
  --section-y: 110px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
svg:not([fill]) { fill: currentColor; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.025em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap-de { word-wrap: break-word; overflow-wrap: anywhere; hyphens: auto; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: 72px; padding-bottom: 72px; }
.section--soft { background: var(--bg-soft); }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.pill__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.55; }
}

/* Akzent-Text einheitlich */
.grad {
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-1);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,15,44,0.20);
}
.btn--grad {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.btn--grad:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn__icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
  cursor: pointer;
}
.logo__word { color: var(--ink); }
.logo__word--soft { color: var(--muted); font-weight: 700; }
.logo__bar {
  width: 2.2em;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.8s cubic-bezier(.2,.7,.2,1), background 0.8s ease, transform 0.8s ease;
}
.logo:hover .logo__bar,
.logo.is-active .logo__bar {
  width: 80%;
  background: var(--accent);
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: var(--ink); background: var(--bg-soft); }
.nav__cta { margin-left: 8px; }
.nav__cta-mobile { display: none; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
}
.burger svg { width: 22px; height: 22px; }
.burger:hover { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero {
  padding-top: 96px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 540px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Why-Cards ---------- */
.why { margin-top: 88px; }
.why__head {
  text-align: center;
  margin-bottom: 40px;
}
.why__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--line-2);
}
.card:hover::after { transform: scaleX(1); }
.card__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.card__text { color: var(--muted); font-size: 0.95rem; }

/* ---------- Schwesterportal-Cloud ---------- */
.cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  padding: 36px 0;
}
.cloud__item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s ease;
}
.cloud__item:hover { color: var(--ink); }
.cloud__item--current {
  color: var(--ink);
  position: relative;
}
.cloud__item--current::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- Fact-Cards ---------- */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fact {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.fact__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.fact__value {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.fact__text { font-size: 0.9rem; color: var(--muted); }

/* ---------- Vorteile ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.benefit__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.benefit__text { font-size: 0.92rem; color: var(--muted); }

/* ---------- KI-Assistent Two-Column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
}
.split__bullets {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.split__bullets li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.split__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M4.5 9.5l3 3 6-7' stroke='%232563EB' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.split__bullets b { color: var(--ink); font-weight: 600; }
.split__ctas { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Chat Mock */
.chat {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 480px;
  overflow: hidden;
  position: relative;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.chat__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.chat__title { font-size: 0.92rem; font-weight: 600; }
.chat__title small { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 400; }
.chat__stream { display: flex; flex-direction: column; gap: 10px; min-height: 280px; }
.chat__msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat__msg.is-in { opacity: 1; transform: translateY(0); }
.chat__msg--bot {
  background: var(--bg-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat__msg--user {
  background: var(--ink);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat__typing {
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: 14px;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat__typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.9); }
  40%           { opacity: 1; transform: scale(1.2); }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px var(--accent-glow);
}
.step__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step__text { font-size: 0.9rem; color: var(--muted); }
.callout {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-md);
  font-size: 0.96rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.callout a { color: var(--accent); font-weight: 600; }

/* ---------- Für wen? (2-Card) ---------- */
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.target {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.target:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.target__label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.target__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.target__text { color: var(--muted); margin-bottom: 18px; }
.target__price {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 56px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  margin-top: 24px;
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat__text { color: var(--muted); font-size: 0.92rem; }

/* ---------- Pflichten-Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 32px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--accent);
  opacity: 0.25;
  z-index: 0;
}
.timeline__step { text-align: center; position: relative; z-index: 1; }
.timeline__dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.timeline__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.timeline__text { font-size: 0.84rem; color: var(--muted); }

/* ---------- Preise ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.price {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
}
.price--highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--sh-2);
}
.price__label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price__name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.price__price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}
.price__price small { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.price__list { margin: 22px 0 28px; display: grid; gap: 10px; }
.price__list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.price__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M4.5 9.5l3 3 6-7' stroke='%232563EB' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
}

/* ---------- Ratgeber Cards ---------- */
.guides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.guide {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guide:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.guide__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.guide__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.guide__text { color: var(--muted); font-size: 0.9rem; flex: 1; }
.guide__cta {
  margin-top: 18px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}
.guide__cta::after { content: " →"; transition: margin-left 0.2s ease; }
.guide:hover .guide__cta::after { margin-left: 4px; }

/* ---------- FAQ Accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq__icon svg { width: 14px; height: 14px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq__a-inner { padding-bottom: 22px; padding-right: 36px; }

/* ---------- Kontaktformular ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row--full { grid-column: 1 / -1; }
.form label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
  width: 100%;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__honey { display: none; }
.form__submit { justify-self: start; margin-top: 6px; }
.form__success {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 16px 20px;
  border-radius: var(--r-md);
  margin-bottom: 18px;
  text-align: center;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #B7B9CC;
  padding: 72px 0 32px;
  margin-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__brand .logo__word { color: #fff; }
.footer__brand .logo__word--soft { color: #9092B3; }
.footer__brand .logo__bar { background: var(--accent); }
.footer__tag {
  margin-top: 16px;
  color: #9092B3;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer__head {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__list { display: grid; gap: 10px; }
.footer__list a {
  color: #B7B9CC;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer__list a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #8587A6;
}

/* ---------- Cookie-Banner — schlicht & kompakt ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(14,15,44,0.10);
  display: none;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  max-width: 520px;
  margin: 0 auto;
}
.cookie.is-shown { display: block; }
.cookie.is-in { transform: translateY(0); }
.cookie__inner {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie__text {
  flex: 1 1 240px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.cookie__text a { color: var(--accent); font-weight: 500; }
.cookie__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie__accept {
  background: var(--accent);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.82rem;
  transition: background 0.2s ease;
}
.cookie__accept:hover { background: var(--accent-dark); }
.cookie__decline {
  background: none;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: underline;
  padding: 4px 2px;
}
.cookie__decline:hover { color: var(--ink); }

/* ---------- Ratgeber Article Layout ---------- */
.article {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 0 var(--pad-x);
}
.article__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.article__readtime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
}
.article h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.article__lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.55;
}
.article h2 {
  font-size: 1.5rem;
  margin: 44px 0 16px;
  letter-spacing: -0.025em;
}
.article h3 {
  font-size: 1.18rem;
  margin: 28px 0 12px;
  letter-spacing: -0.02em;
}
.article p { margin-bottom: 18px; color: var(--ink-soft); }
.article ul:not(.plain) { margin: 0 0 18px; padding-left: 0; }
.article ul:not(.plain) li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
  color: var(--ink-soft);
}
.article ul:not(.plain) li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
}
.article strong { color: var(--ink); font-weight: 600; }
.article__cta {
  margin: 56px 0 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  text-align: center;
}
.article__cta h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
}
.article__cta p { margin-bottom: 22px; color: var(--muted); }
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}
.article__back:hover { color: var(--ink); }

/* ---------- Legal Pages ---------- */
.legal {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 0 var(--pad-x);
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.legal__updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; }
.legal h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  letter-spacing: -0.025em;
}
.legal p { margin-bottom: 14px; color: var(--ink-soft); }
.legal ul li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
  color: var(--ink-soft);
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal a { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-y: 88px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits  { grid-template-columns: repeat(2, 1fr); }
  .steps     { grid-template-columns: repeat(2, 1fr); }
  .guides    { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 36px; }
}
@media (max-width: 960px) {
  .nav__list { display: none; }
  .nav__cta { display: none; }
  .burger { display: inline-flex; }
  .header__inner { gap: 12px; }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    gap: 4px;
    box-shadow: var(--sh-2);
    z-index: 99;
  }
  .nav.is-open .nav__link {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }
  .nav.is-open .nav__cta-mobile {
    display: inline-flex;
    margin-top: 10px;
    align-self: stretch;
    justify-content: center;
  }
}
@media (max-width: 720px) {
  :root { --section-y: 64px; --pad-x: 18px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .split   { grid-template-columns: 1fr; }
  .stats   { grid-template-columns: 1fr; padding: 36px 20px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .pricing { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-y: 56px; }
  .hero { padding-top: 28px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .cards-4 { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .guides   { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .cookie { left: 8px; right: 8px; bottom: 8px; padding: 12px 14px; }
}
@media (max-width: 420px) {
  :root { --section-y: 48px; --pad-x: 14px; }
  .hero { padding-top: 18px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 768px) {
  .form input,
  .form select,
  .form textarea { font-size: 16px; }
}

@media print {
  .header, .footer, .cookie, .nav { display: none; }
}
