/* =========================================================
   German Web Award – style.css
   Dunkles Theme, Gold-Akzent. Nach Projekt-Vorlage.
   ========================================================= */

:root {
  /* Farben */
  --bg:            #0c0c0e;   /* Seitenhintergrund tief schwarz */
  --bg-2:          #111114;   /* sekundärer Hintergrund */
  --bg-3:          #07070a;   /* sehr dunkel, Footer */
  --gold:          #c79a4b;   /* Hauptakzent */
  --gold-bright:   #e3c074;   /* helleres Gold für Hover/Glanz */
  --gold-deep:     #9a7530;   /* dunkleres Gold */
  --text:          #f4f1ea;   /* Primärtext hell */
  --muted:         #b9b4a8;   /* gedämpfter Text auf Dunkel (Kontrast > 4.5:1) */
  --line:          rgba(199,154,75,.18);
  --line-soft:     rgba(255,255,255,.08);

  /* Helle Karten */
  --card-bg:       #fbfaf6;
  --card-tint:     #f4ecdc;
  --card-text:     #1b1a17;
  --card-muted:    #565249;
  --card-line:     rgba(27,26,23,.10);

  /* Footer-Texte auf sehr dunklem Bg – Kontrast-sicher */
  --foot-text:     #cfc8ba;
  --foot-muted:    #8f897c;
  --foot-link:     #d9b772;

  /* Schatten */
  --shadow:        0 18px 50px rgba(0,0,0,.45);
  --shadow-card:   0 14px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(199,154,75,.12);
  --glow-gold:     0 0 40px rgba(199,154,75,.22);

  /* Layout */
  --nav-h:         88px;
  --max-w:         1240px;
  --pad-x:         clamp(1.25rem, 5vw, 2.75rem);
  --r:             14px;
  --r-lg:          22px;
  --t:             .25s ease;

  /* Schrift */
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.06rem);
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--f-display); line-height: 1.08; font-weight: 700; }

/* ---------- Hintergrund-Layer ---------- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -5%, rgba(199,154,75,.10), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(199,154,75,.06), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background-image: repeating-linear-gradient(
    115deg, rgba(255,255,255,.012) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
#bg-net { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: .76rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  letter-spacing: -.01em;
}
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; font-size: .82rem;
  padding: .95rem 1.6rem; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn-primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #1b140a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.22); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- Navigation ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(12,12,14,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--t), border-color var(--t);
}
.header.scrolled { background: rgba(8,8,10,.92); border-color: var(--line); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-link {
  font-family: var(--f-display); font-size: .9rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text); background: none; border: none;
  cursor: pointer; padding: .4rem 0; position: relative; transition: color var(--t);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--gold); transition: width var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta { padding: .7rem 1.3rem; }

/* Dropdown */
.nav-item { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.nav-trigger svg { width: 12px; height: 12px; stroke: currentColor; transition: transform var(--t); }
.nav-item:hover .nav-trigger svg { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: rgba(14,14,18,.97); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 14px; padding: .6rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t); box-shadow: var(--shadow);
}
.subnav::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .subnav, .nav-item:focus-within .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.subnav-link {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .7rem .9rem; border-radius: 9px; font-family: var(--f-display); font-size: .95rem;
  letter-spacing: .03em; color: var(--text); transition: background var(--t), color var(--t);
}
.subnav-link:hover { background: rgba(199,154,75,.12); color: var(--gold-bright); }
.subnav-link .tag { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); border-radius: 6px; padding: .12rem .45rem; }


.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 120;
}
.nav-toggle .bar { width: 26px; height: 2px; background: var(--text); transition: var(--t); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--nav-h) + clamp(2rem,5vw,4.5rem)); padding-bottom: 0; }
.hero-bg { position: relative; overflow: hidden; }
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
}
/* Schwarzer Verlauf von links: Text-Seite voll deckend, rechts gibt die Trophäe frei */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 26%, rgba(8,8,8,.78) 46%, rgba(8,8,8,.25) 66%, rgba(8,8,8,0) 82%),
    linear-gradient(180deg, rgba(8,8,8,0) 60%, var(--bg) 100%);
}
.hero-bg .container { position: relative; z-index: 3; }
/* Dezente Lichtspots von oben, ruhig und edel. Liegen ueber dem Verlauf (z-index 2). */
.hero-bg .hero-light {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-bg .hero-light::before,
.hero-bg .hero-light::after {
  content: ""; position: absolute; border-radius: 50%;
  mix-blend-mode: screen; filter: blur(50px);
}
/* Hauptspot ueber der Trophaee rechts */
.hero-bg .hero-light::before {
  top: -25%; right: 6%; width: 50%; height: 95%;
  background: radial-gradient(ellipse at 50% 0%, rgba(227,192,116,.55), rgba(199,154,75,.2) 45%, transparent 70%);
  opacity: .7;
  animation: heroSpotA 9s ease-in-out infinite;
}
/* Zweiter, kuehlerer Spot fuer Tiefe */
.hero-bg .hero-light::after {
  top: -30%; right: 22%; width: 40%; height: 85%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.28), transparent 62%);
  opacity: .5;
  animation: heroSpotB 12s ease-in-out infinite;
}
@keyframes heroSpotA {
  0%, 100% { opacity: .45; transform: translateY(-6px) scale(1); }
  50%      { opacity: .85; transform: translateY(0) scale(1.04); }
}
@keyframes heroSpotB {
  0%, 100% { opacity: .3; transform: translateX(6px); }
  50%      { opacity: .65; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg .hero-light::before { opacity: .6; animation: none; }
  .hero-bg .hero-light::after { opacity: .4; animation: none; }
}

/* Dezente schwebende Goldpartikel hinter dem Text */
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-particles span {
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-bright); opacity: 0;
  box-shadow: 0 0 6px 1px rgba(227,192,116,.6);
  animation: floatUp linear infinite;
}
.hero-particles span:nth-child(1)  { left: 6%;  animation-duration: 17s; animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 13%; animation-duration: 21s; animation-delay: 4s;   width:2px;height:2px; }
.hero-particles span:nth-child(3)  { left: 19%; animation-duration: 15s; animation-delay: 8s;   }
.hero-particles span:nth-child(4)  { left: 27%; animation-duration: 23s; animation-delay: 2s;   width:2px;height:2px; }
.hero-particles span:nth-child(5)  { left: 34%; animation-duration: 19s; animation-delay: 11s;  }
.hero-particles span:nth-child(6)  { left: 41%; animation-duration: 25s; animation-delay: 6s;   width:4px;height:4px; }
.hero-particles span:nth-child(7)  { left: 9%;  animation-duration: 20s; animation-delay: 13s;  width:2px;height:2px; }
.hero-particles span:nth-child(8)  { left: 23%; animation-duration: 18s; animation-delay: 9s;   }
.hero-particles span:nth-child(9)  { left: 30%; animation-duration: 22s; animation-delay: 15s;  width:2px;height:2px; }
.hero-particles span:nth-child(10) { left: 16%; animation-duration: 16s; animation-delay: 3s;   }
.hero-particles span:nth-child(11) { left: 38%; animation-duration: 24s; animation-delay: 18s;  width:2px;height:2px; }
.hero-particles span:nth-child(12) { left: 4%;  animation-duration: 19s; animation-delay: 7s;   }
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .7; }
  50%  { transform: translateY(-46vh) translateX(12px); opacity: .5; }
  90%  { opacity: .35; }
  100% { transform: translateY(-88vh) translateX(-6px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-particles { display: none; }
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 640px);
  gap: clamp(2rem,4vw,3.5rem); align-items: end;
}
.hero-text { padding-top: clamp(2rem,6vw,5rem); padding-bottom: clamp(7rem,16vw,14rem); }
.hero-h1 {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.2rem);
  letter-spacing: -.02em; text-transform: uppercase;
}
.hero-h1 .gold {
  display: block;
  background: linear-gradient(100deg, var(--gold-bright) 0%, var(--gold) 38%, var(--gold-deep) 70%, var(--gold-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { color: var(--muted); font-size: clamp(1.05rem,1rem+.4vw,1.25rem); margin: 1.6rem 0 2.2rem; max-width: 48ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Feature-Streifen (USPs) ---------- */
.usps { background: #f5f1e9; border: none; }
.usps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.4rem,3vw,2.5rem); padding-block: clamp(2.2rem,4vw,3.2rem); }
.usp { display: flex; gap: .9rem; align-items: flex-start; }
.usp svg { flex: 0 0 auto; width: 30px; height: 30px; stroke: var(--gold-deep); }
.usp-title { font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: #1a1407; margin-bottom: .35rem; }
.usp p { font-size: .92rem; color: #5a5040; line-height: 1.5; }

/* ---------- Karten-Grid (Kategorien) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.card {
  position: relative; background: linear-gradient(160deg, var(--card-bg), var(--card-tint));
  color: var(--card-text); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem);
  border-left: 5px solid var(--gold); box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card), var(--glow-gold); }
.card .card-num { font-family: var(--f-display); font-size: 2.4rem; color: var(--gold-deep); opacity: .35; line-height: 1; }
.card h3 { font-size: 1.4rem; margin: .4rem 0 .7rem; color: var(--card-text); }
.card p { color: var(--card-muted); font-size: .98rem; }
.card ul.check { margin-top: 1rem; display: grid; gap: .5rem; }
.card ul.check li { position: relative; padding-left: 1.5rem; color: var(--card-muted); font-size: .94rem; }
.card ul.check li::before { content: "→"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }

/* ---------- Prozess / Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); counter-reset: step; }
.step { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); }
.step-num {
  font-family: var(--f-display); font-weight: 700; font-size: 1.1rem;
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #1b140a; margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Prosa-Block ---------- */
.prose h2 { font-size: clamp(1.7rem,1.3rem+2vw,2.6rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .7rem; color: var(--gold-bright); }
.prose p { color: #ddd8cd; margin-bottom: 1.1rem; }
.prose p strong { color: var(--text); }
.prose-float {
  float: right; width: clamp(160px, 26%, 280px); height: auto;
  margin: .3rem 0 1.4rem 2rem; border-radius: var(--r-lg);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.6));
  shape-outside: inset(0 round var(--r-lg));
}
@media (max-width: 640px) {
  .prose-float { float: none; display: block; width: min(70%, 240px); margin: .5rem auto 1.8rem; }
}

/* ---------- Jury / Trust ---------- */
.jury-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.jury-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-2); }
.jury-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(199,154,75,.25), rgba(199,154,75,.05));
  border: 1px solid var(--line); font-family: var(--f-display); font-size: 1.6rem; color: var(--gold-bright);
}
.jury-card h3 { font-size: 1.15rem; }
.jury-card .role { color: var(--gold); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: .3rem 0 .8rem; }
.jury-card p { color: var(--muted); font-size: .92rem; }

/* ---------- Stat-Band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--f-display); font-size: clamp(2.2rem,1.5rem+2.5vw,3.4rem); color: var(--gold-bright); font-weight: 700; }
.stat .lbl { color: var(--muted); font-size: .9rem; letter-spacing: .05em; margin-top: .3rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; margin-inline: auto; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 0 clamp(1.3rem,2.5vw,2rem); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.3rem 2.5rem 1.3rem 0; font-family: var(--f-display); font-weight: 600;
  font-size: 1.08rem; color: var(--text); position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; transition: var(--t); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); padding-bottom: 1.3rem; }

/* ---------- CTA-Band ---------- */
.cta-box {
  position: relative; text-align: center; border-radius: var(--r-lg); overflow: hidden;
  padding: clamp(2.5rem,5vw,4.5rem); border: 1px solid var(--line);
  background: linear-gradient(160deg, #15130d, #0b0a07);
}
.cta-box::before {
  content: ""; position: absolute; inset: -40% 30% auto; height: 300px; z-index: 0;
  background: radial-gradient(circle, rgba(199,154,75,.30), transparent 60%); filter: blur(30px);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.8rem,1.3rem+2.4vw,2.9rem); }
.cta-box p { color: var(--muted); max-width: 56ch; margin: 1rem auto 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-3); border-top: 1px solid var(--line); padding-block: clamp(3rem,5vw,4rem) 2rem; color: var(--foot-text); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); }
.footer .foot-h { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer a { color: var(--foot-text); font-size: .94rem; transition: color var(--t); }
.footer a:hover { color: var(--foot-link); }
.footer ul { display: grid; gap: .6rem; }
.footer .brand-line { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer .brand-line img { height: 42px; width: auto; }
.footer .blurb { color: var(--foot-muted); font-size: .92rem; max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(2rem,4vw,3rem); padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  color: var(--foot-muted); font-size: .86rem;
}
.footer-bottom a { color: var(--foot-muted); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .nav-menu {
    position: fixed; inset: 0; top: 0; z-index: 110;
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: rgba(8,8,10,.98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-menu.open { transform: none; }
  .nav-link { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  /* Dropdown auf Mobile: statisch aufgeklappt, zentriert */
  .nav-item { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
  .subnav {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: none; border: none; box-shadow: none; backdrop-filter: none;
    padding: 0; min-width: 0; display: flex; flex-direction: column; gap: .5rem; text-align: center;
  }
  .subnav-link { justify-content: center; font-size: 1rem; color: var(--muted); }
  .nav-item:hover .nav-trigger svg { transform: none; }
}
@media (max-width: 980px) {
  .hero { padding-bottom: clamp(2rem,4vw,3rem); }
  /* Trophäe oben als Banner, Text darunter auf vollflächigem Schwarz */
  .hero-bg { padding-top: 0; }
  .hero-bg-img {
    height: clamp(220px, 48vw, 360px); inset: 0 0 auto 0;
    object-position: center top;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,.4) 55%, var(--bg) 80%, var(--bg) 100%);
  }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-text { padding-top: clamp(190px, 44vw, 320px); padding-bottom: clamp(2rem,6vw,4rem); }
  .hero-sub { margin-inline: 0; }
  .hero-ctas { justify-content: flex-start; }
  .usps-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .jury-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .usps-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

/* Formular */
.form-card {
  background: linear-gradient(160deg, var(--card-bg), var(--card-tint));
  color: var(--card-text); border-radius: var(--r-lg); padding: clamp(1.8rem,4vw,2.8rem);
  border-left: 5px solid var(--gold); box-shadow: var(--shadow-card);
}
.form-card h2 { color: var(--card-text); font-size: clamp(1.5rem,1.2rem+1.4vw,2.1rem); margin-bottom: .4rem; }
.form-card .form-intro { color: var(--card-muted); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--f-display); font-size: .82rem; letter-spacing: .04em; color: var(--card-text); font-weight: 600; }
.form-field input, .form-field textarea {
  font-family: var(--f-body); font-size: .98rem; padding: .8rem .95rem;
  border: 1px solid var(--card-line); border-radius: 10px; background: #fff; color: var(--card-text);
  transition: border-color var(--t), box-shadow var(--t); width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,75,.18);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: .3rem; }
.form-note { font-size: .82rem; color: var(--card-muted); }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* Award-Teilnahme: Service-Sektionen */
.svc-head { margin-bottom: 2rem; }
.svc-badge {
  display: inline-block; font-family: var(--f-display); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bg); background: var(--gold); padding: .35rem .8rem;
  border-radius: 999px; margin-bottom: 1rem; font-weight: 600;
}
.svc-head h2 { font-size: clamp(1.7rem,1.3rem+2vw,2.6rem); margin-bottom: .6rem; }
.svc-lead { color: var(--muted); font-size: 1.1rem; max-width: 70ch; }

.siegel-card {
  display: grid; grid-template-columns: minmax(220px,300px) 1fr; gap: clamp(1.8rem,4vw,3.5rem);
  align-items: center; background: linear-gradient(160deg, var(--bg-2), #15110a);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem,4vw,3rem);
}
.siegel-card-media img { width: 100%; max-width: 300px; filter: drop-shadow(0 24px 50px rgba(199,154,75,.28)); }
.siegel-card-media.has-watermark { position: relative; display: inline-block; max-width: 300px; -webkit-user-select: none; user-select: none; }
.siegel-card-media.has-watermark img { pointer-events: none; -webkit-user-drag: none; }
.siegel-card-media .watermark {
  position: absolute; inset: 0; pointer-events: none; border-radius: 12px; overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='120'%3E%3Ctext x='0' y='60' transform='rotate(-30 90 60)' font-family='Arial,sans-serif' font-size='20' font-weight='700' letter-spacing='2' fill='rgba(255,255,255,0.16)'%3EMUSTER MUSTER%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}
.siegel-card-body h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.siegel-card-body p { color: #ddd8cd; margin-bottom: 1.2rem; }
.siegel-price { display: flex; align-items: baseline; gap: .6rem; margin: 1.4rem 0; flex-wrap: wrap; }
.siegel-price-num { font-family: var(--f-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.siegel-price-lbl { color: var(--muted); font-size: .95rem; }
.btn-lg { font-size: 1.05rem; padding: .9rem 2rem; }

.svc-divider { display: flex; align-items: center; justify-content: center; margin: clamp(2.5rem,6vw,4.5rem) 0; }
.svc-divider span { width: min(60%, 600px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.aoty-card {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 5px solid var(--gold);
  border-radius: var(--r-lg); padding: clamp(1.8rem,4vw,3rem); max-width: 820px;
}
.aoty-card h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.aoty-card p { color: #ddd8cd; margin-bottom: 1.2rem; }
.aoty-note { font-size: .9rem; color: var(--muted); margin-top: 1rem; margin-bottom: 0; }
@media (max-width: 720px) { .siegel-card { grid-template-columns: 1fr; text-align: center; } .siegel-card-media img { margin-inline: auto; max-width: 220px; } .siegel-price { justify-content: center; } }

/* Mehrstufiges Formular */
.step-bar { display: flex; align-items: center; gap: .8rem; margin-bottom: 2rem; }
.step-dot {
  position: relative; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 700;
  background: var(--bg); border: 1px solid var(--line); color: var(--muted); transition: all var(--t);
}
.step-dot i { position: absolute; top: calc(100% + .4rem); left: 50%; transform: translateX(-50%); font-style: normal; font-size: .72rem; letter-spacing: .05em; white-space: nowrap; color: var(--muted); font-weight: 400; }
.step-dot.is-active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); border-color: var(--gold); color: #1b140a; }
.step-dot.is-active i { color: var(--gold-bright); }
.step-line { flex: 1 1 auto; height: 1px; background: var(--line); }
.form-step .form-actions { margin-top: 1.4rem; }
.form-consent { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; }
.consent-row { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--muted); line-height: 1.45; cursor: pointer; }
.consent-row input { width: auto; margin-top: .25rem; flex: 0 0 auto; accent-color: var(--gold); }

/* Kategorien im Mockup-Stil */
.gold-text {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.catx-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.catx-card {
  position: relative; background: linear-gradient(155deg, rgba(30,24,14,.55), rgba(12,12,12,.6));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem,3vw,2.4rem); transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.catx-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.catx-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.catx-hex {
  display: grid; place-items: center; width: 64px; height: 70px; color: var(--gold-bright);
  background: linear-gradient(160deg, rgba(199,154,75,.16), rgba(199,154,75,.04));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: none;
}
.catx-hex::before {
  content: ""; position: absolute; width: 64px; height: 70px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, var(--gold), var(--gold-deep)); z-index: -1; padding: 1px;
}
.catx-hex svg { width: 28px; height: 28px; }
.catx-num { font-family: var(--f-display); font-size: 2rem; font-weight: 700; color: var(--gold); opacity: .85; }
.catx-card h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.catx-card > p { color: var(--muted); line-height: 1.6; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line-soft); }
.catx-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.catx-list li { position: relative; padding-left: 1.6rem; color: var(--text); font-size: .96rem; }
.catx-list li::before {
  content: "›"; position: absolute; left: 0; top: -1px; color: var(--gold-bright);
  font-family: var(--f-display); font-size: 1.2rem; line-height: 1.2;
}
@media (max-width: 760px) { .catx-grid { grid-template-columns: 1fr; } }

/* Weg zum Siegel: helle Karten mit Pfeilen */
.stepx-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.stepx-card {
  position: relative; background: #f5f1e9; border-radius: var(--r-lg);
  padding: clamp(2.4rem,3vw,3rem) clamp(1.3rem,2vw,1.8rem) clamp(1.6rem,2.5vw,2.2rem);
  text-align: center; box-shadow: 0 0 40px rgba(199,154,75,.12);
}
.stepx-badge {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #1b140a;
  font-family: var(--f-display); font-weight: 700; font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(199,154,75,.4);
}
.stepx-icon {
  display: grid; place-items: center; width: 84px; height: 84px; margin: .6rem auto 1.2rem;
  border-radius: 50%; background: rgba(199,154,75,.1); color: var(--gold-deep);
}
.stepx-icon svg { width: 38px; height: 38px; }
.stepx-card h3 { color: #1a1407; font-size: 1.3rem; margin-bottom: .8rem; position: relative; padding-bottom: .9rem; }
.stepx-card h3::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.stepx-card p { color: #5a5040; font-size: .95rem; line-height: 1.6; }
.stepx-arrow {
  display: grid; place-items: center; align-self: center; width: 38px; height: 38px; flex: 0 0 auto;
  border-radius: 50%; background: var(--bg); border: 1px solid var(--gold); color: var(--gold-bright);
  font-size: 1.3rem; font-family: var(--f-display); line-height: 1; z-index: 2;
}
@media (max-width: 900px) {
  .stepx-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.2rem; }
  .stepx-arrow { display: none; }
}
@media (max-width: 520px) {
  .stepx-grid { grid-template-columns: 1fr; }
}

/* Experten-Section: helle Variante */
.experts-section { background: #f5f1e9; }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,1.8rem); }
.exp-card {
  background: #fffdf9; border: 1px solid rgba(199,154,75,.2); border-radius: var(--r-lg);
  padding: clamp(1.8rem,3vw,2.6rem); box-shadow: 0 10px 30px rgba(120,90,40,.06);
}
.exp-icon {
  display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 1.3rem;
  border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep);
  background: rgba(199,154,75,.06);
}
.exp-icon svg { width: 34px; height: 34px; }
.exp-card h3 { color: #1a1407; text-align: center; font-size: 1.3rem; margin-bottom: .9rem; position: relative; padding-bottom: .9rem; }
.exp-card h3::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.exp-list li { position: relative; padding-left: 1.9rem; color: #4a4234; font-size: .95rem; line-height: 1.45; }
.exp-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--gold); background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a7530' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.exp-banner {
  display: flex; align-items: center; gap: 1.5rem; margin-top: clamp(1.5rem,3vw,2.2rem);
  background: #fffdf9; border: 1px solid rgba(199,154,75,.25); border-radius: var(--r-lg);
  padding: clamp(1.4rem,2.5vw,2rem) clamp(1.6rem,3vw,2.4rem);
}
.exp-banner-icon { display: grid; place-items: center; width: 64px; height: 64px; flex: 0 0 auto; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); }
.exp-banner-icon svg { width: 30px; height: 30px; }
.exp-banner h3 { color: #1a1407; font-size: 1.25rem; margin-bottom: .3rem; }
.exp-banner p { color: #5a5040; margin: 0; }
@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-banner { flex-direction: column; text-align: center; }
}

/* CTA-Banner nach Mockup */
.cta-banner {
  display: flex; align-items: center; gap: clamp(1.4rem,3vw,2.4rem);
  background: linear-gradient(135deg, #1a1305, #0e0c08); position: relative;
  border: 1px solid var(--gold); border-radius: var(--r-lg);
  padding: clamp(1.8rem,3.5vw,2.8rem) clamp(1.8rem,4vw,3.2rem);
  box-shadow: 0 0 50px rgba(199,154,75,.18);
}
.cta-banner-icon {
  display: grid; place-items: center; width: 90px; height: 90px; flex: 0 0 auto; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(199,154,75,.3), inset 0 0 20px rgba(199,154,75,.12);
}
.cta-banner-icon svg { width: 42px; height: 42px; }
.cta-banner-text { flex: 1 1 auto; }
.cta-banner-text h2 { font-size: clamp(1.5rem,1.2rem+1.4vw,2.1rem); margin-bottom: .5rem; }
.cta-banner-text p { color: var(--muted); margin: 0; max-width: 46ch; }
.cta-banner-actions { display: flex; gap: .8rem; flex: 0 0 auto; }
@media (max-width: 820px) {
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner-text p { margin-inline: auto; }
  .cta-banner-actions { flex-wrap: wrap; justify-content: center; }
}

/* Agenturen-Verzeichnis */
.dir-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.1rem,2.4vw,1.7rem); }
.dir-item {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--r-lg); padding: clamp(1.4rem,2.6vw,2rem); display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.dir-item:hover { transform: translateY(-3px); box-shadow: var(--glow-gold); }
.dir-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.dir-head h3 { font-size: 1.3rem; margin: 0; }
.dir-ort { font-family: var(--f-display); font-size: .8rem; letter-spacing: .04em; color: var(--gold-bright); white-space: nowrap; }
.dir-item p { color: #ddd8cd; font-size: .96rem; margin: 0 0 1.1rem; flex: 1 1 auto; }
.dir-link { color: var(--gold-bright); font-weight: 600; align-self: flex-start; border-bottom: 1px solid transparent; transition: border-color var(--t); }
.dir-link:hover { border-color: var(--gold-bright); }
@media (max-width: 680px) { .dir-grid { grid-template-columns: 1fr; } }

/* Gewinner-Detailseite */
.winner-hero { position: relative; }

/* Header-Karte: Logo + Info links, Siegel rechts */
.winner-card {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(1.5rem,4vw,3rem); align-items: center;
  background: linear-gradient(160deg, var(--bg-2), #15110a);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem,3.5vw,2.6rem);
}
.winner-card-main { display: flex; align-items: center; gap: clamp(1.2rem,3vw,2rem); flex-wrap: wrap; }
.winner-logo {
  display: inline-flex; align-items: center; justify-content: center; background: #fff;
  border-radius: 12px; padding: 1rem 1.3rem; width: 190px; height: 96px; flex: 0 0 auto;
}
.winner-logo img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; }
.winner-card-info { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.winner-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-family: var(--f-display); font-size: .78rem; letter-spacing: .04em; color: var(--gold-bright);
  border: 1px solid var(--line); border-radius: 999px; padding: .32rem .85rem; background: rgba(0,0,0,.25);
}
.winner-card-seal { flex: 0 0 auto; }
.winner-card-seal img { width: clamp(110px,12vw,150px); height: auto; filter: drop-shadow(0 16px 34px rgba(199,154,75,.3)); border-radius: 10px; }

/* Eckdaten-Leiste */
.winner-facts {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 1.5rem;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.wfact { background: var(--bg); padding: 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; }
.wfact-k { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.wfact-v { font-family: var(--f-display); font-size: 1.15rem; color: var(--gold-bright); font-weight: 600; }

/* Zitat */
.winner-quote {
  font-family: var(--f-display); font-size: clamp(1.4rem,1.1rem+1.4vw,2rem); line-height: 1.35;
  color: var(--text); max-width: 60ch; margin: 0; padding-left: 1.4rem;
  border-left: 4px solid var(--gold); font-style: italic;
}

/* Fliesstext nutzt die volle Containerbreite (Fluchtpunkt Logo bis Button) */
.winner-prose { max-width: 100%; }
.winner-lead { font-size: 1.2rem; color: var(--text); line-height: 1.6; margin-bottom: 1.6rem; }

@media (max-width: 820px) {
  .winner-facts { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .winner-card { grid-template-columns: 1fr; text-align: left; }
  .winner-card-seal { order: -1; }
  .winner-card-seal img { width: 120px; }
}
