/* =========================================================================
   easy Vereinswebseite – Stylesheet
   Marke: Dark-Teal #012b2b · Türkis #07a9b2 · warm #e08a2e
   Schrift: Plus Jakarta Sans (Headlines) · Inter (Text)
   ========================================================================= */

:root {
  --ink: #012b2b;
  --ink2: #0a4040;
  --teal: #07a9b2;       /* helles Marken-Türkis: Deko, Glows, Ränder, Akzente auf Dunkel */
  --teal-text: #067e87;  /* Türkis für kleine Texte/Links auf Hell – WCAG-AA-konform */
  --teal-btn: #067e87;   /* Button-/Flächenfüllung mit WEISSER Schrift (Kontrast 4.8:1) */
  --teal-btn-d: #057078; /* Hover-Zustand der Buttons */
  --teal-d: #05939b;
  --grey: #f6f8f7;
  --warm: #e08a2e;
  --line: #e4ebe9;
  --muted: #5d716f;
  --text: #13302e;
  --head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }

body {
  background: #fff;
  font-family: var(--body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: #fff; }

img { max-width: 100%; }
a { color: var(--teal-text); }

:focus-visible {
  outline: 3px solid rgba(7, 169, 178, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Skip-Link (Tastatur/Screenreader) */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 10px;
  font-family: var(--head); font-weight: 700; font-size: 14px; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--head); margin: 0; }

.eyebrow {
  color: var(--teal-text); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--head); font-weight: 700; text-decoration: none;
  border-radius: 13px; padding: 16px 30px; font-size: 17px;
  cursor: pointer; border: none; transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-sm { padding: 11px 20px; font-size: 15px; border-radius: 11px; }
.btn-primary {
  background: var(--teal-btn); color: #fff;
  box-shadow: 0 12px 30px rgba(7, 169, 178, .4);
}
.btn-primary.btn-sm { box-shadow: 0 6px 18px rgba(7, 169, 178, .32); }
.btn-primary:hover { background: var(--teal-btn-d); }
.btn-outline-light {
  background: rgba(255, 255, 255, .06); border: 1.5px solid rgba(255, 255, 255, .28);
  color: #fff; padding: 16px 28px;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink2); }
.btn-ghost-dark {
  background: #fff; color: var(--ink); border: 1.5px solid var(--ink);
}
.btn-ghost-dark:hover { background: var(--grey); }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  height: 74px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 54px; width: auto; display: block; }
.nav-main { display: flex; align-items: center; gap: 30px; }
.nav-main a {
  text-decoration: none; color: #23423f; font-weight: 500; font-size: 15px;
}
.nav-main a:hover { color: var(--teal-text); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .link-demo {
  text-decoration: none; color: var(--ink); font-weight: 700;
  font-size: 15px; font-family: var(--head);
}
.burger {
  display: none; background: var(--grey); border: 1px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  box-shadow: 0 6px 0 var(--ink), 0 -6px 0 var(--ink);
}
.mobile-menu {
  padding: 8px 24px 22px; border-top: 1px solid var(--line);
  display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: #23423f; font-weight: 600;
  padding: 12px 8px; border-radius: 10px;
}
.mobile-menu a.btn { color: #fff; margin-top: 8px; text-align: center; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--grey {
  background: var(--grey);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 {
  font-weight: 800; font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.12; letter-spacing: -1px; color: var(--ink); margin: 14px 0 0;
}
.section-head p { font-size: 18px; color: var(--muted); margin: 16px 0 0; }

/* ---------- Hero (dunkel) ---------- */
.hero {
  position: relative; color: #eafbfb; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #0a4040 0%, #012b2b 55%);
}
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__glow--tr {
  top: -120px; right: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(7,169,178,.45) 0%, rgba(7,169,178,0) 70%);
}
.hero__glow--bl {
  bottom: -160px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(7,169,178,.22) 0%, rgba(7,169,178,0) 70%);
}
.hero .wrap {
  padding: 72px 24px 88px; display: grid;
  grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center;
  position: relative;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(7,169,178,.16); border: 1px solid rgba(7,169,178,.4);
  color: #7fe3e9; padding: 7px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .2px; white-space: nowrap;
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(7,169,178,.25);
}
.hero h1 {
  font-weight: 800; font-size: clamp(36px, 6.2vw, 60px);
  line-height: 1.05; letter-spacing: -1.5px; margin: 22px 0 0; color: #fff;
}
.hero h1 .accent { color: var(--teal); }
.hero__sub { font-size: 19px; line-height: 1.6; color: #bfe0df; max-width: 520px; margin: 22px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__play {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.14);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 38px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stats div {
  display: flex; align-items: center; gap: 9px; color: #cfe9e8;
  font-size: 14.5px; font-weight: 500;
}
.hero__stats span.ico { font-size: 17px; }

/* ---------- Trust-Strip ---------- */
.trust { background: var(--grey); border-bottom: 1px solid var(--line); }
.trust .wrap {
  padding: 22px 24px; display: flex; align-items: center; justify-content: center;
  gap: 14px 40px; flex-wrap: wrap;
}
.trust .lead { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.trust .sport { font-size: 14px; color: #3a534f; font-weight: 600; }

/* ---------- Grids & Karten ---------- */
.grid { display: grid; gap: 20px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: 1fr 1fr; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.card--grey { background: var(--grey); }
.card .ico-badge {
  width: 44px; height: 44px; border-radius: 12px; background: #e6f5f4;
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
}
.card h4 {
  font-weight: 700; font-size: 16.5px; color: var(--ink); margin: 15px 0 7px;
}
.card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

.problem-card { background: var(--grey); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.problem-card .emoji { font-size: 30px; }
.problem-card h3 { font-weight: 700; font-size: 17px; color: var(--ink); margin: 14px 0 6px; line-height: 1.3; }
.problem-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.problem-cta {
  text-align: center; font-family: var(--head); font-weight: 700;
  font-size: 22px; color: var(--teal-text); margin: 46px 0 0;
}

/* Schritte */
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px;
  box-shadow: 0 10px 30px rgba(1,43,43,.04);
}
.step-card .head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.step-card .num {
  width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: #fff;
  font-family: var(--head); font-weight: 800; font-size: 21px;
  display: inline-flex; align-items: center; justify-content: center;
}
.step-card .emoji { font-size: 30px; }
.step-card h3 { font-weight: 700; font-size: 21px; color: var(--ink); margin: 0 0 8px; }
.step-card p { font-size: 15px; color: var(--muted); margin: 0; }

/* Funktionen-Gruppen */
.group-label { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.group-label span.tag {
  font-family: var(--head); font-weight: 800; font-size: 14px; color: #fff;
  padding: 6px 13px; border-radius: 8px;
}
.tag--teal { background: var(--teal-btn); }
.tag--warm { background: var(--warm); color: var(--ink); }
.tag--ink { background: var(--ink); }
.group-label .rule { height: 1px; flex: 1; background: var(--line); }

.card--app {
  background: linear-gradient(180deg, #0a4040, #012b2b);
  border: 1px solid rgba(255,255,255,.08); color: #dff3f2;
}
.card--app .ico-badge { background: rgba(7,169,178,.22); }
.card--app h4 { color: #fff; }
.card--app p { color: #a7cecc; }

/* Showcase (dunkel) */
.showcase {
  color: #eafbfb;
  background: radial-gradient(120% 120% at 20% 0%, #0a4040 0%, #012b2b 60%);
}
.showcase .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showcase h2 { font-weight: 800; font-size: clamp(28px, 4.6vw, 40px); line-height: 1.12; letter-spacing: -1px; color: #fff; margin: 14px 0 22px; }
.showcase .bullets { display: flex; flex-direction: column; gap: 18px; }
.showcase .bullet { display: flex; gap: 14px; align-items: flex-start; }
.showcase .check {
  flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px;
}
.showcase .bullet h3 { font-weight: 700; font-size: 17px; color: #fff; margin: 2px 0 3px; }
.showcase .bullet p { font-size: 14.5px; color: #a7cecc; margin: 0; }

/* Vorteile */
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.adv {
  display: flex; align-items: center; gap: 12px; background: var(--grey);
  border: 1px solid var(--line); border-radius: 13px; padding: 15px 16px;
}
.adv .check {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px;
}
.adv span.txt { font-size: 15px; font-weight: 600; color: #23423f; }
.compare {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(1,43,43,.06);
}
.compare .head { display: grid; grid-template-columns: 1fr 1fr; }
.compare .head .old { padding: 18px; background: var(--grey); border-right: 1px solid var(--line); }
.compare .head .old p { margin: 0; font-family: var(--head); font-weight: 700; font-size: 14px; color: var(--muted); }
.compare .head .new { padding: 18px; background: var(--ink); }
.compare .head .new p { margin: 0; font-family: var(--head); font-weight: 800; font-size: 14px; color: #fff; }
.compare .row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare .row .old { padding: 14px 18px; font-size: 13.5px; color: var(--muted); border-right: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.compare .row .new { padding: 14px 18px; font-size: 13.5px; color: #23423f; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.compare .x { color: #c25b5b; font-weight: 800; }
.compare .v { color: var(--teal); font-weight: 800; }

/* Für jeden Verein */
.sports-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.sport-pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 22px; font-weight: 600; font-size: 15px; color: #23423f;
  display: inline-flex; align-items: center; gap: 9px;
}
.sport-pill span.emoji { font-size: 18px; }

/* ---------- Preise ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; margin-top: 44px; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 32px 28px; box-shadow: 0 10px 30px rgba(1,43,43,.05);
}
.plan--featured {
  background: linear-gradient(180deg, #0a4040, #012b2b);
  border: 1px solid rgba(7,169,178,.5); box-shadow: 0 24px 60px rgba(1,43,43,.28);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--warm); color: var(--ink); font-family: var(--head); font-weight: 800;
  font-size: 12px; letter-spacing: .5px; padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(224,138,46,.4);
}
.plan__name { font-family: var(--head); font-weight: 800; font-size: 20px; color: var(--ink); margin: 0 0 4px; }
.plan__tagline { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 20px; min-height: 42px; }
.plan__pricelabel { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__price .prefix { font-family: var(--head); font-weight: 800; font-size: 22px; color: var(--ink); }
.plan__price .amount { font-family: var(--head); font-weight: 800; font-size: 44px; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.plan__price .cur { font-size: 20px; font-weight: 700; color: var(--ink); }
.plan__fine { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.plan__monthly {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 12px 14px; border-radius: 13px; background: var(--grey); border: 1px solid var(--line);
}
.plan__monthly .plus {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 7px; background: var(--teal); color: #fff; font-weight: 800; font-size: 15px;
}
.plan__monthly .mp { display: block; font-family: var(--head); font-weight: 800; font-size: 14.5px; color: var(--ink); }
.plan__monthly .md { display: block; font-size: 12px; color: var(--muted); }
.plan__features { display: flex; flex-direction: column; gap: 11px; }
.plan__features .feat { display: flex; align-items: flex-start; gap: 10px; }
.plan__features .feat .v { flex: none; color: var(--teal); font-weight: 800; font-size: 14px; }
.plan__features .feat span.txt { font-size: 14px; color: #34504d; }
/* Nicht enthaltener Punkt (z. B. Extension 2 im Tarif „Einfach") */
.plan__features .feat--no { border-top: 1px dashed var(--line); padding-top: 11px; margin-top: 4px; }
.plan__features .feat--no .nv { flex: none; color: var(--muted); font-weight: 800; font-size: 14px; }
.plan__features .feat--no span.txt { color: var(--muted); }
.plan .btn { margin: 24px 0 22px; }
.plans-fine { text-align: center; font-size: 13.5px; color: var(--muted); margin: 28px 0 0; }
/* Featured plan – helle Schrift */
.plan--featured .plan__name,
.plan--featured .plan__price .amount,
.plan--featured .plan__price .cur,
.plan--featured .plan__monthly .mp { color: #fff; }
.plan--featured .plan__tagline,
.plan--featured .plan__pricelabel,
.plan--featured .plan__fine,
.plan--featured .plan__monthly .md { color: #a7cecc; }
.plan--featured .plan__features .feat span.txt { color: #cfe9e8; }
.plan--featured .plan__monthly { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; padding: 92px 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.faq-item.open { background: var(--grey); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q span.q { font-family: var(--head); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-q .icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: #e6f5f4; color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700;
  transition: transform .3s;
}
.faq-item.open .faq-q .icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { margin: 0; padding: 0 24px 24px; font-size: 15.5px; color: var(--muted); line-height: 1.65; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Final CTA ---------- */
.final-cta {
  color: #fff; text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, #0a4040 0%, #012b2b 60%);
}
.final-cta h2 { font-weight: 800; font-size: clamp(30px, 5vw, 46px); line-height: 1.1; letter-spacing: -1.2px; margin: 0 auto; max-width: 760px; }
.final-cta h2 .accent { color: var(--teal); }
.final-cta .row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.final-cta .fine { margin-top: 24px; color: #a7cecc; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: #011f1f; color: #9fc1bf; }
.site-footer .cols {
  max-width: var(--wrap); margin: 0 auto; padding: 64px 24px 36px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.site-footer img { height: 48px; width: auto; opacity: .95; }
.site-footer .blurb { font-size: 14.5px; line-height: 1.6; margin: 18px 0 0; max-width: 280px; color: #86adab; }
.site-footer .socials { display: flex; gap: 10px; margin-top: 20px; }
.site-footer .socials span {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07);
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
}
.site-footer h3 { font-family: var(--head); font-weight: 700; color: #fff; font-size: 14px; margin: 0 0 16px; }
.site-footer .links { display: flex; flex-direction: column; gap: 11px; }
.site-footer .links a { text-decoration: none; color: #9fc1bf; font-size: 14px; }
.site-footer .links a:hover { color: #fff; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.08); }
.site-footer .legal .wrap {
  padding: 20px 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 13px; color: #6d918f;
}

/* ---------- Hero-Geräte-Animation ---------- */
@keyframes easyFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes easyPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes easyBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes easyPop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.hero__visual { position: relative; height: 560px; width: 460px; max-width: 100%; margin: 0 auto; }
.phone-mock { animation: easyFloat 6s ease-in-out infinite; }
.ki-caret { display: inline-block; width: 2px; height: 13px; background: var(--teal); vertical-align: -2px; animation: easyBlink .8s steps(1) infinite; }
.ki-typing { font-size: 10px; color: var(--teal); font-weight: 600; animation: easyPulse 1.2s infinite; }
.step-anim[hidden] { display: none; }
.published-check { animation: easyPop .5s ease; }
@media (max-width: 520px) {
  .hero__visual { transform: scale(.72); transform-origin: top center; height: 420px; }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-hidden { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
  .phone-mock { animation: none; }
}

/* ---------- Rechtliche Seiten ---------- */
.page-title { background: var(--ink); color: #fff; }
.page-title .inner { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.page-title .back { text-decoration: none; color: #7fe3e8; font-size: 14px; font-weight: 600; }
.page-title h1 { font-weight: 800; font-size: clamp(30px, 5vw, 44px); letter-spacing: -1px; margin: 18px 0 0; }
.legal { background: #fff; }
.legal .inner { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h2 { font-family: var(--head); font-weight: 800; font-size: 21px; color: var(--ink); margin: 0 0 12px; }
.legal p { margin: 0 0 36px; font-size: 16px; color: #34504d; }
.legal p.tight { margin-bottom: 14px; }
.legal a { color: var(--teal-text); text-decoration: underline; }
.legal a:hover { text-decoration: underline; }
.legal ul { margin: 0 0 14px; padding-left: 22px; font-size: 16px; color: #34504d; }
.legal ul li { margin-bottom: 6px; }
.legal strong { color: var(--ink); }
.legal .stand { margin: 0; font-size: 14px; color: var(--muted); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 880px) {
  .nav-main, .header-cta { display: none !important; }
  .burger { display: inline-flex !important; }
  .hero .wrap, .showcase .wrap, .g2 { grid-template-columns: 1fr !important; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .hero__visual { margin: 0 auto; }
  .vorteile-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .g4 { grid-template-columns: 1fr 1fr; }
  .g3, .plans { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 520px) {
  .g4 { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn, .final-cta .row .btn { width: 100%; }
}
