/* ============================================================
   BRANDICS GmbH · brandics.com Relaunch 2026
   Statische Website · Ein Stylesheet für alle Seiten
   CI-Farben aus dem Brandics Corporate Design:
   Navy #212837 · Orange #F05A17 · Limette #D9E035
   Hellblau #CFE0F0 · Lavendel #EFEDF6
   ============================================================ */

/* Lokale Schriften (DSGVO-freundlich, keine Google-Server) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2");
}

:root {
  --navy: #212837;
  --navy-deep: #1a2030;
  --ink: #212837;
  --ink-soft: #47506a;
  --grey: #6b7284;
  --accent: #f05a17;
  --accent-dark: #cc4a10;
  --accent-soft: #fdeadd;
  --lime: #d9e035;
  --lime-soft: rgba(217, 224, 53, 0.16);
  --blue-soft: #cfe0f0;
  --bg: #ffffff;
  --bg-soft: #efedf6;
  --dark: #212837;
  --line: #e5e3ec;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(33, 40, 55, 0.08);
  --shadow-lg: 0 24px 60px rgba(33, 40, 55, 0.16);
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.6em; }
h3 { font-size: 1.2rem; margin-bottom: 0.4em; }

p { margin-bottom: 1em; color: var(--ink-soft); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

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

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

section { padding: 76px 0; }
section.soft { background: var(--bg-soft); }
section.blue { background: var(--blue-soft); }
section.dark { background: var(--dark); color: #fff; }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p { color: rgba(255, 255, 255, 0.78); }
section.dark .kicker { color: var(--lime); }
section.dark {
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.center { text-align: center; }
.lead { font-size: 1.15rem; max-width: 760px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Gradient-Text (Orange zu Limette, wie im CI) */
.grad {
  background: linear-gradient(90deg, var(--lime), #f0812f, var(--accent), var(--lime));
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s linear infinite;
}
@keyframes gradShift {
  to { background-position: 250% center; }
}

/* ---------- Maus-Follower (träger Punkt wie auf der alten Seite) ---------- */
.cursor-dot,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  background: transparent;
  opacity: 0.55;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.cursor-follower.is-hover {
  width: 58px;
  height: 58px;
  background: rgba(240, 90, 23, 0.12);
  opacity: 0.9;
}
.cursor-hidden .cursor-dot,
.cursor-hidden .cursor-follower { opacity: 0; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-follower { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  position: relative;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(240, 90, 23, 0.35); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(240, 90, 23, 0.45); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost:hover { background: var(--lime); border-color: var(--lime); color: var(--navy); transform: translateY(-3px); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 6px 24px rgba(33, 40, 55, 0.1); }
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .logo img { height: 42px; width: auto; }
.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; font-size: 1.7rem; line-height: 1; user-select: none; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav ul a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav ul li:not(.nav-cta) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav ul li:not(.nav-cta) a:hover::after,
.nav ul li:not(.nav-cta) a.active::after { transform: scaleX(1); }
.nav ul a:hover, .nav ul a.active { color: var(--accent); }
.nav ul .nav-cta a {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav ul .nav-cta a:hover { background: var(--accent-dark); transform: translateY(-2px); }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    gap: 16px;
  }
  .nav-toggle:checked ~ ul { display: flex; }
}

/* ---------- Hero ---------- */
.hero, .hero-sub {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(130deg, #1a2030, #212837, #2b3448, #212837);
  background-size: 300% 300%;
  animation: heroBg 14s ease infinite;
}
@keyframes heroBg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero { padding: 120px 0 110px; }
.hero-sub { padding: 84px 0 74px; }

.hero::before, .hero-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob.b1 { width: 420px; height: 420px; background: var(--accent); top: -140px; right: -100px; }
.blob.b2 { width: 340px; height: 340px; background: var(--lime); bottom: -180px; left: -100px; opacity: 0.3; animation-delay: -6s; }
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.15); }
}

.hero .wrap, .hero-sub .wrap { position: relative; z-index: 1; }
.hero .kicker, .hero-sub .kicker { color: var(--lime); }
.hero h1, .hero-sub h1 { color: #fff; max-width: 820px; }
.hero p, .hero-sub p { color: rgba(255, 255, 255, 0.85); max-width: 660px; font-size: 1.15rem; margin-top: 18px; }
.hero .btn-row, .hero-sub .btn-row { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Gestaffelter Einstieg */
.hero .kicker, .hero h1, .hero p, .hero .btn-row,
.hero-sub .kicker, .hero-sub h1, .hero-sub p, .hero-sub .btn-row {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero h1, .hero-sub h1 { animation-delay: 0.15s; }
.hero p, .hero-sub p { animation-delay: 0.3s; }
.hero .btn-row, .hero-sub .btn-row { animation-delay: 0.45s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wort-Rotator im Hero */
.rotator { display: inline-block; min-width: 0; transition: opacity 0.35s ease, transform 0.35s ease; }
.rotator.out { opacity: 0; transform: translateY(12px); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero, .hero-sub, .blob, .grad { animation: none !important; }
  .hero .kicker, .hero h1, .hero p, .hero .btn-row,
  .hero-sub .kicker, .hero-sub h1, .hero-sub p, .hero-sub .btn-row { opacity: 1; animation: none; }
  .cursor-dot, .cursor-follower { display: none; }
}

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

@media (max-width: 1000px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .grid-5 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card p { flex: 1; font-size: 0.98rem; }
.card .cardlink { font-weight: 600; font-size: 0.95rem; }
.card .cardlink::after { content: " →"; transition: margin 0.2s ease; }
.card:hover .cardlink::after { margin-left: 5px; }

.audience-card { border-top: 4px solid var(--accent); }

/* ---------- Icons (SVG) ---------- */
.icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .icon { transform: scale(1.1) rotate(-4deg); background: var(--accent); }
.card:hover .icon svg { stroke: #fff; }

.icon-inline {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 10px;
}
.icon-inline svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stats .lbl { font-size: 0.92rem; color: var(--grey); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Logo-Marquee ---------- */
.marquee {
  overflow: hidden;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 8px 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 52px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.25s;
}
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 42px;
  margin-top: 24px;
}
.logo-strip img {
  height: 48px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.25s;
}
.logo-strip img:hover { filter: none; opacity: 1; }

/* Logos mit viel Weißraum oder runder Form brauchen mehr Höhe */
.marquee-track img.logo-lg { height: 84px; }
.logo-strip img.logo-lg { height: 156px; }

/* Referenz-Raster: 3 Spalten, identische Boxen, bündige Außenkanten */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
  align-items: center;
  justify-items: center;
  margin-top: 32px;
}
.logo-grid img {
  width: 100%;
  max-width: 210px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.25s;
}
.logo-grid img:hover { filter: none; opacity: 1; }
.logo-grid img.logo-lg { height: 150px; }
@media (max-width: 560px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Media split ---------- */
.media-split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- Collage (kompakt, z.B. neben Text) ---------- */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.collage .tile { aspect-ratio: 3 / 4; }

/* ---------- Mosaik (volle Breite, Instagram-Stil) ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 40px;
}
.mosaic .tile.tall { grid-row: span 2; }
@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

/* ---------- Kacheln mit Bild/Video und Kategorie-Label ---------- */
.tile {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.tile img,
.tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tile:hover img,
.tile:hover video { transform: scale(1.06); }
.tile .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(33, 40, 55, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.tile .tag.play::before {
  content: "▶";
  font-size: 0.6rem;
  margin-right: 6px;
  color: var(--lime);
}

/* ---------- Checklist ---------- */
ul.check { list-style: none; margin: 18px 0; }
ul.check li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
ul.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.check li strong { color: var(--navy); }
section.dark ul.check li { color: rgba(255,255,255,0.78); }
section.dark ul.check li strong { color: #fff; }
section.dark ul.check li::before { background: var(--lime-soft); color: var(--lime); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Prozess-Pipeline (dunkle Sektion) ---------- */
.pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 44px 0 10px;
}
.pipe-node {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.pipe-node:hover { border-color: var(--lime); background: rgba(255,255,255,0.09); transform: translateY(-5px); }
.pipe-node .icon { margin: 0 auto 14px; background: var(--lime-soft); }
.pipe-node .icon svg { stroke: var(--lime); }
.pipe-node h3 { font-size: 0.98rem; margin-bottom: 4px; }
.pipe-node p { font-size: 0.83rem; margin: 0; }
.pipe-link {
  flex: 0 0 46px;
  align-self: center;
  height: 2px;
  position: relative;
  background-image: linear-gradient(90deg, var(--lime) 55%, transparent 45%);
  background-size: 12px 2px;
  animation: dashMove 0.9s linear infinite;
}
.pipe-link::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--lime);
}
@keyframes dashMove {
  from { background-position: 0 0; }
  to { background-position: 12px 0; }
}
@media (max-width: 900px) {
  .pipeline { flex-direction: column; }
  .pipe-link {
    flex: 0 0 34px;
    width: 2px;
    height: 34px;
    align-self: center;
    background-image: linear-gradient(180deg, var(--lime) 55%, transparent 45%);
    background-size: 2px 12px;
    animation: dashMoveV 0.9s linear infinite;
  }
  .pipe-link::after {
    right: -4px;
    top: auto;
    bottom: -1px;
    border: 5px solid transparent;
    border-top-color: var(--lime);
  }
}
@keyframes dashMoveV {
  from { background-position: 0 0; }
  to { background-position: 0 12px; }
}

.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 224, 53, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(217, 224, 53, 0); }
}

/* ---------- Testimonials ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote p { font-size: 0.98rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.quote .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote .who strong { display: block; font-size: 0.95rem; color: var(--navy); }
.quote .who span { font-size: 0.85rem; color: var(--grey); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card img {
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
  background: var(--bg-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover img { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.team-card h3 { margin-bottom: 2px; }
.team-card span { color: var(--grey); font-size: 0.9rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; border-left: 2px solid var(--accent); padding-left: 28px; margin: 24px 0; }
.timeline li { margin-bottom: 26px; position: relative; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.timeline .year {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(130deg, var(--navy) 0%, #37415a 45%, var(--accent) 130%);
  background-size: 200% 200%;
  animation: heroBg 12s ease infinite;
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 6px 0 0; }

/* ---------- Forms ---------- */
form.contact { display: grid; gap: 18px; max-width: 640px; }
form.contact label { font-weight: 600; font-size: 0.92rem; }
form.contact input,
form.contact select,
form.contact textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  margin-top: 6px;
  transition: box-shadow 0.2s ease;
}
form.contact input:focus,
form.contact select:focus,
form.contact textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}
form.contact .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; font-weight: 400; color: var(--grey); }
form.contact .consent input { width: auto; margin-top: 4px; }

/* ---------- Contact info ---------- */
.info-box {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.info-box h3 { margin-top: 22px; display: flex; align-items: center; }
.info-box h3:first-child { margin-top: 0; }
.info-box p { margin-bottom: 4px; font-size: 0.98rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: #ccd4e4;
  padding: 60px 0 30px;
  font-size: 0.92rem;
  border-top: 6px solid var(--lime);
}
footer p { color: #d6dcea; }
footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer .cols { grid-template-columns: 1fr; } }
footer img.footlogo { height: 40px; width: auto; margin-bottom: 16px; }
footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a { color: #d6dcea; }
footer a:hover { color: var(--lime); }
footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Prose (Impressum etc.) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.4em; }
