/* ============================================================
   Linkwunder – style.css   v=1
   Dunkles Theme, Neon-Limette, Archivo Black + Space Grotesk
   ============================================================ */

:root {
  --primary: #E1FF09;
  --primary-bright: #F0FF66;
  --primary-deep: #AECC00;
  --black: #05090E;
  --bg: #060B11;
  --bg-soft: #0A1119;
  --text: #E9F1F6;
  --muted: #A9BCC9;          /* >= 4.5:1 auf --bg */
  --footer-muted: #CBD8E0;   /* >= 4.5:1 auf #040810 */
  --card-text: #10161C;
  --card-muted: #3C4A55;
  --line: rgba(225, 255, 9, 0.18);
  --maxw: 1180px;
  --radius: 16px;
  --shadow-card: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 24px rgba(225, 255, 9, 0.10);
  --shadow-btn: 0 8px 22px rgba(225, 255, 9, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1100px 520px at 85% -5%, rgba(225, 255, 9, 0.10), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(225, 255, 9, 0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

#bg-net {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

a { color: var(--primary-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.3rem); margin-bottom: 0.9rem; }
h3 { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); margin-bottom: 0.45rem; }

.marker {
  font-family: "Permanent Marker", cursive;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
}

.underline-lime {
  background-image: linear-gradient(transparent 68%, rgba(225, 255, 9, 0.45) 68%);
}

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

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem); color: var(--muted); }

/* ---------- Layout ---------- */

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

section { padding: clamp(3.2rem, 2.4rem + 3vw, 5.5rem) 0; }

.section-head { max-width: 780px; margin-bottom: 2.2rem; }
.section-head p { color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 9, 14, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo img { width: 210px; height: 52px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 1.5rem; }

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--primary-bright); text-decoration: none; }
.main-nav a.active { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: var(--black) !important;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow-btn);
}
.nav-cta:hover { background: var(--primary-bright); text-decoration: none; }

.burger {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: var(--black);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--primary-bright); }

.btn-ghost { background: transparent; color: var(--primary-bright); }
.btn-ghost:hover { background: rgba(225, 255, 9, 0.10); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 3rem + 4vw, 7rem) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: -1;
}

.hero-content h1,
.hero-content .lead,
.hero-content .eyebrow {
  text-shadow: 0 2px 18px rgba(5, 9, 14, 0.85);
}

.hero .wrap { max-width: var(--maxw); }
.hero-content { max-width: 720px; }

.hero p.lead { margin: 1.3rem 0 1.8rem; color: #C4D4DF; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }

.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1.8rem; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #F0F6FA;
}
.hero-badges b { color: var(--primary); font-size: 1.05rem; }

/* Plus-Zeichen, die aus der Kette entspringen */
.hero-plus {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-plus span {
  position: absolute;
  bottom: 16%;
  color: #E1FF09;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 14px rgba(225, 255, 9, 0.85), 0 0 34px rgba(225, 255, 9, 0.45);
  animation: plusRise 5.2s linear infinite;
}
@keyframes plusRise {
  0%   { transform: translateY(0) scale(0.55) rotate(-6deg); opacity: 0; }
  10%  { opacity: 1; }
  70%  { opacity: 0.85; }
  100% { transform: translateY(-360px) scale(1.2) rotate(8deg); opacity: 0; }
}
@media (max-width: 760px) {
  .hero-plus { display: none; }
}

/* Mobil: dunkle Ebene ueber den Hero-Grafiken, damit der Text lesbar bleibt */
@media (max-width: 820px) {
  .hero::after,
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 9, 14, 0.72) 0%, rgba(5, 9, 14, 0.58) 60%, rgba(5, 9, 14, 0.72) 100%);
    z-index: -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-plus span { animation: none; opacity: 0.5; }
}

/* Unterseiten-Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 2.2rem + 2.5vw, 4.5rem) 0;
}
.page-hero .hero-bg { object-position: center 72%; }
.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow,
.page-hero .article-meta {
  text-shadow: 0 2px 16px rgba(5, 9, 14, 0.9);
}
.page-hero .lead { max-width: 760px; margin-top: 1.1rem; }

/* ---------- Karten ---------- */

.card {
  background: linear-gradient(160deg, #FFFFFF, #F2FAD8);
  color: var(--card-text);
  border-left: 5px solid var(--primary-deep);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.card h3 { color: var(--card-text); }
.card p { color: var(--card-muted); font-size: 0.97rem; margin-bottom: 0; }
.card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.card a { color: #4A6A00; font-weight: 600; }

.card-dark {
  background: linear-gradient(160deg, #0B131C, #0A1017);
  border: 1px solid var(--line);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.card-dark h3 { color: var(--text); }
.card-dark p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Listen ---------- */

ul.check { list-style: none; margin: 0 0 1.2rem; }
ul.check li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.55rem;
}
ul.check li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ---------- Trust-Leiste ---------- */

.trust-bar {
  position: relative;
  background: #FBFBFB;
  padding: 1.7rem 0 2rem;
}

/* Dezenter Schatten unter der Logo-Leiste, mittig am kraeftigsten, zu den Seiten auslaufend */
.trust-bar::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -26px;
  height: 26px;
  background: radial-gradient(ellipse 55% 100% at 50% 0%, rgba(6, 11, 17, 0.16) 0%, rgba(6, 11, 17, 0.05) 45%, transparent 72%);
  pointer-events: none;
  z-index: 2;
}

.trust-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5B5D66;
  margin-bottom: 1.3rem;
}

.trust-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2.4rem);
}

.trust-logo {
  position: relative;
  display: block;
  width: clamp(64px, 9.5vw, 122px);
  height: clamp(22px, 3vw, 38px);
  transition: transform 0.2s ease;
}
.trust-logo:hover,
.trust-logo:focus-visible { transform: scale(1.09); }

.trust-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.trust-mono {
  position: absolute;
  inset: 0;
  background: #5B5D66;
  -webkit-mask: var(--logo) no-repeat center / contain;
  mask: var(--logo) no-repeat center / contain;
  transition: opacity 0.2s ease;
  display: none;
}

@supports ((-webkit-mask: url("") no-repeat) or (mask: url("") no-repeat)) {
  .trust-mono { display: block; }
  .trust-logo img { opacity: 0; }
  .trust-logo:hover .trust-mono,
  .trust-logo:focus-visible .trust-mono { opacity: 0; }
  .trust-logo:hover img,
  .trust-logo:focus-visible img { opacity: 1; }
}

/* ---------- Weisse Sektionen mit Shine ---------- */

.light-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: clamp(3rem, 2.4rem + 2.6vw, 5rem) 0;
}

.light-section::before,
.light-section::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 252, 4, 0.5) 0%, rgba(219, 252, 4, 0.16) 42%, rgba(219, 252, 4, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
}
.light-section::before {
  top: -230px;
  right: -200px;
  animation: shineDrift 12s ease-in-out infinite alternate;
}
.light-section::after {
  bottom: -230px;
  left: -200px;
  animation: shineDrift 14s ease-in-out infinite alternate-reverse;
}

@keyframes shineDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-32px, 26px) scale(1.13); }
}

.light-section .wrap { position: relative; z-index: 1; }

.light-section h2 { color: #10161C; }
.light-section h3,
.light-section .prose h3 {
  display: inline-block;
  background: #10161C;
  color: var(--primary-bright);
  padding: 0.3rem 0.85rem;
  border-radius: 10px;
  margin-top: 1.8rem;
  box-shadow: 0 6px 16px rgba(16, 22, 28, 0.18);
}
.light-section p { color: #39424D; }
.light-section a { color: #4A6A00; font-weight: 600; }
.light-section ul.check li { color: #39424D; }
.light-section ul.check li::before { color: #7A9900; }
.light-section strong { color: #10161C; }
.light-section .form-card a {
  color: #FFFFFF;
  text-decoration: underline;
}
.light-section .form-card a:hover { color: var(--primary-bright); }
.light-section .blog-card a { color: var(--primary-bright); }
.light-section .blog-card h2 a { color: var(--text); }
.light-section .blog-card h2 a:hover { color: var(--primary-bright); }
.light-section .author-box a { color: var(--primary-bright); }

@media (prefers-reduced-motion: reduce) {
  .light-section::before,
  .light-section::after { animation: none; }
  .trust-logo:hover { transform: none; }
}

/* Elemente im weissen Bereich */
.light-section .glossar-nav a {
  color: #333B44;
  border: 1px solid rgba(51, 59, 68, 0.30);
}
.light-section .glossar-nav a:hover {
  color: #10161C;
  border-color: #7A9900;
  text-decoration: none;
}
.light-section .update-box {
  background: rgba(163, 204, 0, 0.14);
  border-left-color: #7A9900;
}
.light-section .update-box p { color: #39424D; }
.light-section .update-box .update-label { color: #4A6A00; }

/* ---------- Schritte-Sektion (In 4 Schritten) ---------- */

.steps-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(225, 255, 9, 0.07), transparent 65%),
    linear-gradient(180deg, #05090E, #070D14);
}

.steps-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; position: relative; z-index: 1; }

.rocket-bg {
  position: absolute;
  right: -3%;
  bottom: -10%;
  width: min(44%, 540px);
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step { text-align: center; position: relative; }

.step-icon {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #131E2B, #0A1119 70%);
  border: 1px solid rgba(225, 255, 9, 0.30);
  box-shadow: 0 0 26px rgba(225, 255, 9, 0.12), inset 0 0 18px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 46px; height: 46px; }

.step-badge {
  position: absolute;
  left: -6px;
  bottom: -2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--black);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(225, 255, 9, 0.45);
}

.step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: 1.12rem;
  color: var(--text);
}
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

@media (min-width: 981px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 54px;
    left: calc(50% + 72px);
    right: calc(-50% + 84px);
    border-top: 2px dashed rgba(233, 241, 246, 0.30);
  }
  .step:not(:last-child)::before {
    content: "\203A";
    position: absolute;
    top: 40px;
    right: calc(-50% + 70px);
    color: rgba(233, 241, 246, 0.55);
    font-size: 1.4rem;
    line-height: 1;
  }
}

@media (max-width: 980px) {
  .rocket-bg { width: 70%; right: -18%; bottom: -4%; opacity: 0.45; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; }
}

@media (max-width: 620px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Text-Sektionen ---------- */

/* .prose ist nur noch ein Struktur-Hook, die Breite regelt allein .wrap */
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; color: var(--primary-bright); }
.prose ul.check { margin-top: 0.4rem; }

.alt-bg {
  background: linear-gradient(180deg, rgba(225, 255, 9, 0.045), transparent 70%);
}

/* ---------- FAQ ---------- */

.faq-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: rgba(11, 19, 28, 0.75);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 1.2rem 1.15rem; color: var(--muted); }

/* FAQ als H3-Struktur (SEO) */
.faq-item summary h3 { margin: 0; font-family: "Space Grotesk", sans-serif; text-transform: none; font-size: 1.02rem; }

/* ---------- Glossar ---------- */

.glossar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}
.glossar-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
}
.glossar-nav a:hover { border-color: var(--primary); text-decoration: none; color: var(--primary-bright); }

.glossar-entry { margin-bottom: 2.3rem; scroll-margin-top: 110px; }

/* ---------- Blog ---------- */

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1rem;
}
.article-meta b { color: var(--primary); font-weight: 700; }

.update-box {
  background: rgba(225, 255, 9, 0.07);
  border-left: 5px solid var(--primary);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin: 1.8rem 0;
}
.update-box p { color: var(--text); margin: 0; font-size: 0.97rem; }
.update-box .update-label {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.author-box {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: rgba(11, 19, 28, 0.75);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-top: 2.6rem;
}
.author-box img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary);
}
.author-box strong { display: block; color: var(--text); margin-bottom: 0.25rem; }
.author-box span { color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
}
.blog-card {
  background: linear-gradient(160deg, #0B131C, #0A1017);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-date {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.blog-card h2 {
  font-size: 1.15rem;
  text-transform: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.blog-card h2 a { color: var(--text); }
.blog-card h2 a:hover { color: var(--primary-bright); text-decoration: none; }
.blog-card p { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.blog-card .weiterlesen { font-weight: 700; margin-top: 0.9rem; }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; }
}

/* ---------- Formular ---------- */

.form-card {
  background: linear-gradient(160deg, #0B131C, #0A1017);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1.2rem + 1.5vw, 2.4rem);
  max-width: 720px;
}

.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.form-row .hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: #060B11;
  border: 1px solid rgba(225, 255, 9, 0.30);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: var(--primary);
}

/* Honeypot: fuer Menschen unsichtbar, fuer Bots ein normales Feld */
.hp-feld {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.form-fehler { color: #FFB4B4 !important; font-weight: 600; }

/* ---------- CTA-Band (hell, nach Mockup) ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: #DBFC08;
  padding: clamp(3rem, 2.4rem + 2.6vw, 5rem) 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cta-title { margin-bottom: 0.4rem; }
.cta-title .cta-small {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
  color: #10161C;
  letter-spacing: 0;
}
.cta-title .cta-big {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 1.6rem + 2.2vw, 3.4rem);
  color: #333B44;
  line-height: 1.05;
}

.cta-swoosh { display: block; width: min(438px, 96%); height: 12px; margin: 0.2rem 0 1.1rem; }

.cta-band p { color: #2E3640; margin-bottom: 1.5rem; max-width: 420px; }

.cta-action { display: flex; align-items: center; gap: 1rem; }
.cta-arrow { width: 54px; height: 34px; flex-shrink: 0; }

.cta-band .btn-primary {
  background: #10161C;
  color: var(--primary);
  border-color: #10161C;
  box-shadow: 0 10px 26px rgba(16, 22, 28, 0.30);
}
.cta-band .btn-primary:hover {
  background: #1C2833;
  color: var(--primary-bright);
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
}

.cta-stat {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.5rem 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(20, 30, 10, 0.10);
}
.cta-stat svg { width: 42px; height: 42px; margin: 0 auto 0.7rem; display: block; }
.cta-stat b {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: #10161C;
  line-height: 1.1;
}
.cta-stat span { color: #4A5560; font-size: 0.92rem; }

@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-band .btn-primary {
  background: #10161C;
  color: var(--primary);
  border-color: #10161C;
  box-shadow: 0 10px 26px rgba(16, 22, 28, 0.30);
}
.cta-band .btn-primary:hover {
  background: #1C2833;
  color: var(--primary-bright);
}

.cta-stats { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; width: 100%; }
  .cta-band p { max-width: none; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: #040810;
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.site-footer h3 {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--footer-muted); }
.site-footer a:hover { color: var(--primary-bright); }
.site-footer p { color: var(--footer-muted); font-size: 0.95rem; }

.footer-logo img { width: 190px; height: 47px; object-fit: contain; margin-bottom: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(225, 255, 9, 0.12);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--footer-muted);
  font-size: 0.92rem;
}
.footer-bottom a { font-weight: 600; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .burger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5, 9, 14, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 22px 1.2rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0; width: 100%; }
  .nav-cta { margin-top: 0.6rem; text-align: center; }
}

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  #bg-net { display: none; }
}
