/* =========================================================
   DIE ENERGIE PIRATEN — Stylesheet v2
   Farben: Schwarz · Gold · Akzent-Rot
   Schriften: Bebas Neue (Block-Headlines) · Pirata One (Display) · Inter (Body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Pirata+One&family=Inter:wght@400;500;600;700;800;900&family=Special+Elite&display=swap');

:root {
  /* Farben */
  --bg:              #08080a;
  --bg-elevated:     #14110d;
  --bg-card:         #1c1814;
  --gold:            #f5a623;
  --gold-bright:     #ffc107;
  --gold-deep:       #b8801c;
  --red:             #c8102e;
  --red-bright:      #ef2b3d;
  --red-deep:        #6e0a17;
  --cream:           #f5f1e8;
  --cream-muted:     #b9b1a0;
  --white:           #ffffff;
  --black:           #000000;
  --border:          rgba(245, 166, 35, 0.18);
  --border-strong:   rgba(245, 166, 35, 0.45);

  /* Schatten & Effekte */
  --shadow-glow:     0 0 40px rgba(245, 166, 35, 0.35);
  --shadow-red:      0 0 30px rgba(200, 16, 46, 0.55);
  --shadow-card:     0 24px 60px rgba(0, 0, 0, 0.6);

  /* Typografie */
  --font-block:      'Bebas Neue', 'Oswald', 'Anton', system-ui, sans-serif;
  --font-pirate:     'Pirata One', serif;
  --font-stamp:      'Special Elite', monospace;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width:       1280px;
  --radius:          12px;
  --radius-lg:       20px;
}

/* ---------------- Reset ---------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-bright); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------------- Body texture ---------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(245, 166, 35, 0.06), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(200, 16, 46, 0.05), transparent 40%);
}

/* ---------------- Typografie ---------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-block);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.5rem); }

.eyebrow {
  font-family: var(--font-stamp);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.lead { font-size: 1.15rem; color: var(--cream-muted); max-width: 60ch; }

/* ---------------- Container ---------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

section { padding: 7rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 4.5rem 0; } }

/* ---------------- Navbar ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.0));
  transition: background .3s, border-color .3s, padding .3s, backdrop-filter .3s;
}
.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--cream);
}
.brand-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: height .25s ease;
}
.nav.scrolled .brand-logo { height: 40px; }
@media (max-width: 600px) {
  .brand-logo            { height: 40px; max-width: 160px; }
  .nav.scrolled .brand-logo { height: 36px; }
}
.brand-name {
  font-family: var(--font-block);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
/* Hide separate brand text when PNG logo (with built-in text) is loaded */
.has-logo-png .brand-name { display: none; }
/* Footer logo can be a touch larger and never gets the scrolled treatment */
footer .brand-logo { height: 56px; }
@media (max-width: 600px) { footer .brand-logo { height: 48px; } }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  font-family: var(--font-block);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold);
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-block);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(245, 166, 35, 0.65);
  color: var(--black);
}
.btn-danger {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.5);
}
.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(200, 16, 46, 0.7);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.btn::after { /* shine */
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left .6s;
}
.btn:hover::after { left: 130%; }

.btn-lg {
  padding: 1.35rem 2.6rem;
  font-size: 1.4rem;
}

/* ---------------- HERO (echtes Bild!) ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-img {
  position: absolute;
  inset: -2%;
  z-index: -3;
  background-image: url('assets/Website Hintergrund Schiff.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: contrast(1.1) saturate(1.15);
  animation: kenBurns 30s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(8,8,10,0) 0%, rgba(8,8,10,0.55) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.25) 35%, rgba(8,8,10,0.5) 70%, rgba(8,8,10,0.95) 100%);
}

/* Animated sun rays overlay */
.hero-rays {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.hero-rays::before,
.hero-rays::after {
  content: '';
  position: absolute;
  top: -10%;
  width: 60%;
  height: 130%;
  background: linear-gradient(180deg,
    rgba(255, 200, 100, 0.18) 0%,
    rgba(255, 200, 100, 0.10) 50%,
    transparent 100%);
  filter: blur(20px);
  animation: rayPulse 8s ease-in-out infinite;
}
.hero-rays::before {
  left: 60%;
  transform: skewX(-12deg) rotate(-8deg);
  transform-origin: top center;
}
.hero-rays::after {
  left: 75%;
  transform: skewX(-18deg) rotate(-12deg);
  transform-origin: top center;
  animation-delay: -3s;
  width: 30%;
  opacity: 0.7;
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.95; }
}

/* Animated drifting clouds (subtle, blended over real photo clouds) */
.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}
.hero-clouds .cloud {
  position: absolute;
  background: radial-gradient(ellipse, rgba(220, 215, 200, 0.5), transparent 65%);
  filter: blur(20px);
  border-radius: 50%;
  animation: cloudDrift 60s linear infinite;
}
.hero-clouds .cloud:nth-child(1) { top: 8%;  left: -20%; width: 380px; height: 100px; animation-duration: 75s; }
.hero-clouds .cloud:nth-child(2) { top: 22%; left: -30%; width: 500px; height: 120px; animation-duration: 95s; animation-delay: -25s; opacity: .6; }
.hero-clouds .cloud:nth-child(3) { top: 35%; left: -40%; width: 320px; height: 90px;  animation-duration: 110s; animation-delay: -50s; opacity: .4; }
@keyframes cloudDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(150vw); }
}

/* Subtle grain over hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(239, 43, 61, 0.5);
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffb3b8;
  margin-bottom: 1.5rem;
  animation: flagWave 3s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes flagWave {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-1.5deg); }
}

.hero h1 {
  font-family: var(--font-pirate);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-shadow:
    0 4px 30px rgba(0,0,0,0.85),
    0 2px 8px rgba(0,0,0,0.9);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  min-height: 2.4em;
}
.hero h1 .accent      { color: var(--gold-bright); }
.hero h1 .accent-red  { color: #ff5b6c; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  color: var(--cream);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-sub strong { color: var(--gold-bright); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* Typewriter cursor */
.cursor {
  display: inline-block;
  width: 5px;
  background: var(--gold-bright);
  margin-left: 6px;
  animation: blink 0.8s steps(2) infinite;
  vertical-align: middle;
  height: 0.85em;
  box-shadow: 0 0 12px rgba(255,193,7,0.7);
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------------- Stats Bar ---------------- */
.stats {
  background:
    linear-gradient(180deg, rgba(8,8,10,0.95) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-block);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
  letter-spacing: 0.02em;
}
.stat-item .label {
  font-family: var(--font-stamp);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.7rem;
  display: block;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

/* ---------------- Section Dividers ---------------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 700px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider svg { width: 28px; height: 28px; color: var(--gold); }
.section-divider .label {
  font-family: var(--font-stamp);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.section-divider.danger .label { color: var(--red-bright); }
.section-divider.danger svg    { color: var(--red-bright); }
.section-divider.danger::before,
.section-divider.danger::after {
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

/* ---------------- Customer Segments ---------------- */
.segment {
  position: relative;
  padding: 7rem 0;
}
.segment.privat {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, 0.10), transparent 50%),
    var(--bg);
}
.segment.gewerbe {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200, 16, 46, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.segment-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.segment-grid.reverse { direction: rtl; }
.segment-grid.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .segment-grid, .segment-grid.reverse { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
}

.segment-headline {
  font-family: var(--font-block);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.segment-headline .gold { color: var(--gold-bright); }
.segment-headline .red  { color: var(--red-bright); }
.segment-headline .pirate { font-family: var(--font-pirate); text-transform: uppercase; }

.segment p { color: var(--cream-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.segment .lead-strong { color: var(--cream); font-size: 1.15rem; font-weight: 500; }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.2rem;
  margin: 1.5rem 0 2rem;
  font-family: var(--font-stamp);
  font-size: 1.1rem;
  color: var(--cream);
  font-style: italic;
}
.gewerbe .pull-quote { border-left-color: var(--red-bright); }

/* Feature list */
.feature-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
}
.feature-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  font-size: 1rem;
  color: var(--cream);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '⚡';
  color: var(--gold-bright);
  font-size: 1.3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
  line-height: 1.2;
}
.gewerbe .feature-list li::before { content: '⚓'; color: var(--red-bright); filter: drop-shadow(0 0 8px rgba(239, 43, 61, 0.6)); }

/* Image cards */
.segment-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.segment-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.segment-media:hover img { transform: scale(1.04); }
.segment-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.85) 100%);
  pointer-events: none;
}
.segment-media .badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-block);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 2;
}
.segment-media .badge.danger { background: var(--red); color: var(--white); }

/* Dual image stack for gewerbe (kept as fallback) */
.segment-media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.segment-media-stack .segment-media:first-child {
  aspect-ratio: 3/4;
  margin-top: 2rem;
}
.segment-media-stack .segment-media:last-child {
  aspect-ratio: 3/4;
  margin-bottom: 2rem;
}

/* Feature card stack (replaces image stack on Flotten Admiral) */
.segment-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.feature-card {
  position: relative;
  background: linear-gradient(155deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 16, 46, 0.10), transparent 60%);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.feature-card .badge.danger { position: absolute; top: 1.2rem; right: 1.2rem; }
.feature-card .feature-num {
  font-family: var(--font-block);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 2px 24px rgba(245, 166, 35, 0.18);
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  color: var(--cream);
}
.feature-card p {
  color: var(--cream-muted);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 42ch;
}

/* Sub-features two-up */
.sub-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0 2.5rem;
}
@media (max-width: 600px) { .sub-options { grid-template-columns: 1fr; } }
.sub-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.sub-option:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.sub-option h4 {
  font-family: var(--font-block);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.gewerbe .sub-option h4 { color: var(--red-bright); }
.sub-option p { font-size: 0.95rem; color: var(--cream-muted); margin: 0; line-height: 1.6; }

/* ---------------- Process ---------------- */
.process {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 4rem;
  counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.6rem 2rem;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -25px;
  left: 1.5rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-block);
  font-weight: 400;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.5);
}
.step h4 {
  font-family: var(--font-block);
  font-size: 1.5rem;
  margin: 0.6rem 0 0.6rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.step p { color: var(--cream-muted); font-size: 0.97rem; margin: 0; line-height: 1.6; }

/* ---------------- Manifesto Block ---------------- */
.manifesto {
  background:
    linear-gradient(135deg, rgba(200,16,46,0.15) 0%, rgba(200,16,46,0.0) 50%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0;
}
.manifesto h2 {
  font-family: var(--font-pirate);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
  text-transform: uppercase;
}
.manifesto h2 .red { color: var(--red-bright); }
.manifesto h2 .gold { color: var(--gold-bright); }
.manifesto p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  max-width: 65ch;
  margin: 0 auto;
  color: var(--cream);
}

/* ---------------- FAQ ---------------- */
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-block);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: color .2s;
  gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-q .icon {
  width: 32px; height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item.open .faq-q .icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--cream-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 1rem;
}

/* ---------------- CTA Banner ---------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '☠';
  position: absolute;
  font-size: 30rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner .eyebrow { color: #ffd966; justify-content: center; display: flex; }
.cta-banner h2 {
  font-family: var(--font-pirate);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  text-transform: uppercase;
  line-height: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 60ch;
}

/* ---------------- Footer ---------------- */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--cream-muted); margin-top: 1rem; max-width: 32ch; font-size: 0.95rem; }
.footer-col h5 {
  font-family: var(--font-block);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--cream-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

/* ---------------- FORM PAGES ---------------- */
.form-page {
  min-height: 100vh;
  padding: 7rem 0 4rem;
  background:
    radial-gradient(ellipse at top, rgba(245, 166, 35, 0.08), transparent 50%),
    var(--bg);
}
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.form-header { text-align: center; margin-bottom: 3rem; }
.form-header .eyebrow { justify-content: center; }
.form-header h1 {
  font-family: var(--font-pirate);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  margin-bottom: 1rem;
  line-height: 1;
}
.form-header h1 .gold { color: var(--gold-bright); }
.form-header h1 .red  { color: var(--red-bright); }
.form-header p { color: var(--cream-muted); max-width: 55ch; margin: 0 auto; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
}
.form-section { margin-bottom: 2rem; }
.form-section h3 {
  font-family: var(--font-block);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.three { grid-template-columns: 1fr 2fr 2fr; }
.form-row.two-one { grid-template-columns: 2fr 1fr; }
@media (max-width: 600px) {
  .form-row, .form-row.three, .form-row.two-one { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-stamp);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.field label .req { color: var(--red-bright); margin-left: 0.2rem; }
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: 0.8rem; color: var(--cream-muted); margin-top: 0.4rem; }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(239, 43, 61, 0.15);
}
.field .error-msg { color: var(--red-bright); font-size: 0.8rem; margin-top: 0.4rem; display: none; }
.field.error .error-msg { display: block; }

/* Checkbox / radio */
.checkbox-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.check-tile {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-family: var(--font-block);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.check-tile:hover { border-color: var(--border-strong); }
.check-tile input { accent-color: var(--gold); width: 18px; height: 18px; }
.check-tile.active { border-color: var(--gold); background: rgba(245, 166, 35, 0.08); }

.consent {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin: 1rem 0 1.5rem;
  align-items: flex-start;
  line-height: 1.5;
}
.consent input { accent-color: var(--gold); margin-top: 4px; flex-shrink: 0; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.form-submit .back { color: var(--cream-muted); font-size: 0.9rem; }
.form-submit .back:hover { color: var(--gold); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success .check {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 2.5rem;
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.5);
}
.form-success h2 {
  font-family: var(--font-pirate);
}

/* Legal pages */
.legal-page {
  padding: 8rem 0 5rem;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; color: var(--gold); }
.legal-page h3 { margin: 1.5rem 0 0.6rem; font-size: 1.2rem; }
.legal-page p, .legal-page li {
  color: var(--cream-muted);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page .placeholder {
  background: rgba(245, 166, 35, 0.1);
  border: 1px dashed var(--gold);
  color: var(--gold-bright);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-stamp);
}

/* ---------------- Reveal animations ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------- Cookie / Consent Banner ---------------- */
.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  max-width: calc(100vw - 2.4rem);
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 1240px;
  margin: 0 auto;
}
.cookie-text { flex: 1; min-width: 0; }
.cookie-text strong {
  display: block;
  font-family: var(--font-display, var(--font-block));
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.cookie-text p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cream-muted);
  margin: 0;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--gold-bright); }
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.btn.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-muted);
}
.btn.btn-ghost:hover {
  border-color: var(--cream-muted);
  color: var(--cream);
  background: rgba(245, 241, 232, 0.04);
}

@media (max-width: 760px) {
  .cookie-banner { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; padding: 1.1rem 1.2rem; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .cookie-text strong { font-size: 1.05rem; }
  .cookie-text p { font-size: 0.88rem; }
}
