/* ═══════════════════════════════════════════════════════════════
   SpielKlar.at — Austrian Alpine Modernism
   Palette:
     Creme     #F7F3EE   (Hintergrund)
     Grün      #1B4332   (Primär)
     Kupfer    #C07D3A   (Akzent)
     Anthrazit #2D2D2D   (Text)
     Terrakot  #C85A3A   (Highlight)
     Hellgrün  #D4EBD9   (Fläche)
     Sand      #EDE8E0   (Fläche 2)
   Fonts: Fraunces (Schrift) + Nunito (Fließtext)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --creme:     #F7F3EE;
  --gruen:     #1B4332;
  --gruen2:    #2D6A4F;
  --kupfer:    #C07D3A;
  --kupfer2:   #E09A50;
  --anthrazit: #2D2D2D;
  --terrakot:  #C85A3A;
  --hellgruen: #D4EBD9;
  --sand:      #EDE8E0;
  --weiss:     #FFFFFF;
  --grau:      #7A7A6E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;

  --shadow-sm: 0 2px 8px rgba(27,67,50,0.08);
  --shadow-md: 0 6px 24px rgba(27,67,50,0.12);
  --shadow-lg: 0 16px 48px rgba(27,67,50,0.16);

  --container: 1200px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--anthrazit);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--anthrazit);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }

.display-italic { font-style: italic; color: var(--kupfer); }
.display-green  { color: var(--gruen); }

p { margin-bottom: 1.1rem; color: var(--anthrazit); }
p:last-child { margin-bottom: 0; }
a { color: var(--gruen); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--kupfer); }
strong { font-weight: 700; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 88px 0; }
.section--creme  { background: var(--creme); }
.section--sand   { background: var(--sand); }
.section--gruen  { background: var(--gruen); }
.section--hellgruen { background: var(--hellgruen); }
.section--weiss  { background: var(--weiss); }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,238,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--sand);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 44px; height: 44px;
  background: var(--gruen);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--anthrazit);
  letter-spacing: -0.02em;
}
.nav__logo-text span { color: var(--kupfer); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  height: 100%;
  align-items: center;
}
.nav__links a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--anthrazit);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background .18s, color .18s;
  letter-spacing: 0.01em;
}
.nav__links a:hover  { background: var(--hellgruen); color: var(--gruen); }
.nav__links a.active { background: var(--gruen); color: var(--weiss); }

.nav__cta {
  margin-left: 16px;
}

.nav__hamburger {
  display: none;
  background: none;
  border: 2px solid var(--sand);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  cursor: pointer;
  margin-left: 16px;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span { width: 20px; height: 2px; background: var(--anthrazit); display: block; border-radius: 2px; }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--creme);
  border-bottom: 2px solid var(--sand);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--anthrazit);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-sm);
}
.nav__mobile a:hover { background: var(--hellgruen); color: var(--gruen); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .18s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.btn--gruen    { background: var(--gruen); color: var(--weiss); }
.btn--gruen:hover { background: var(--gruen2); color: var(--weiss); }
.btn--kupfer   { background: var(--kupfer); color: var(--weiss); }
.btn--kupfer:hover { background: var(--kupfer2); color: var(--weiss); }
.btn--outline  { background: transparent; color: var(--gruen); border: 2px solid var(--gruen); }
.btn--outline:hover { background: var(--gruen); color: var(--weiss); }
.btn--outline-kupfer { background: transparent; color: var(--kupfer); border: 2px solid var(--kupfer); }
.btn--outline-kupfer:hover { background: var(--kupfer); color: var(--weiss); }
.btn--weiss    { background: var(--weiss); color: var(--gruen); }
.btn--weiss:hover { background: var(--hellgruen); color: var(--gruen); }
.btn--sm { font-size: 0.85rem; padding: 10px 20px; }
.btn--lg { font-size: 1.05rem; padding: 18px 36px; border-radius: var(--r-lg); }

/* ── HERO (Homepage) ──────────────────────────────────────────── */
.hero {
  background: var(--gruen);
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}
.hero__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 600px;
}
.hero__left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__left .container-inner {
  max-width: 560px;
  margin-left: auto;
  padding-right: 40px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--hellgruen);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero h1 {
  color: var(--weiss);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero h1 .italic-line {
  display: block;
  font-style: italic;
  color: var(--kupfer2);
  font-weight: 400;
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 46ch;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--weiss);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 2px solid rgba(255,255,255,0.1);
}
.hero__right-top {
  background: rgba(255,255,255,0.05);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.hero__right-bot {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__mini-card {
  padding: 28px 24px;
  border-right: 2px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__mini-card:last-child { border-right: none; }
.hero__mini-card .emoji { font-size: 2rem; line-height: 1; }
.hero__mini-card h5 {
  color: var(--weiss);
  font-size: 0.95rem;
}
.hero__mini-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin: 0;
}

/* Decorative circles */
.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__deco--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,125,58,0.15), transparent 70%);
  top: -100px; right: -100px;
}
.hero__deco--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,235,217,0.1), transparent 70%);
  bottom: 100px; left: 200px;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--gruen);
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.page-hero__content {
  padding: 60px 48px 60px clamp(32px, calc((100vw - 1200px)/2 + 32px), 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero__img {
  display: flex;
  align-items: stretch;
  border-left: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 360px;
  display: block;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--kupfer2); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,125,58,0.25);
  color: var(--kupfer2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid rgba(192,125,58,0.3);
}
.page-hero h1 { color: var(--weiss); font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 14px; }
.page-hero__sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 50ch; margin: 0; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kupfer);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--kupfer);
  border-radius: 2px;
  display: block;
}
.section--gruen .section-label { color: var(--kupfer2); }
.section--gruen .section-label::before { background: var(--kupfer2); }

/* ── EDITORIAL SPLIT LAYOUT ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split--3-2 { grid-template-columns: 3fr 2fr; }
.split--2-3 { grid-template-columns: 2fr 3fr; }
.split--wide { gap: 88px; }

.split__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}
.split__visual--accent {
  background: var(--hellgruen);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--weiss);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(27,67,50,0.06);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--gruen { background: var(--gruen); color: var(--weiss); }
.card--gruen h4 { color: var(--weiss); }
.card--gruen p { color: rgba(255,255,255,0.7); }
.card--sand { background: var(--sand); }
.card--hellgruen { background: var(--hellgruen); }
.card--kupfer { background: var(--kupfer); color: var(--weiss); }
.card--kupfer h4 { color: var(--weiss); }
.card--kupfer p { color: rgba(255,255,255,0.75); }

.card__emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.card__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gruen);
  line-height: 1;
  margin-bottom: 8px;
}
.card--gruen .card__num { color: var(--kupfer2); }
.card h4 { margin-bottom: 10px; }
.card p { font-size: 0.92rem; }
.card__accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--kupfer);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.card__accent-line--gruen { background: var(--gruen); }
.card__accent-line--terrakot { background: var(--terrakot); }

/* ── GAME CARDS (magazine style) ────────────────────────────── */
.game-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--weiss);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(27,67,50,0.06);
  transition: transform .22s, box-shadow .22s;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.game-card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.game-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.game-card:hover .game-card__img img { transform: scale(1.04); }
.game-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gruen);
  color: var(--weiss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.game-card__body {
  padding: 24px 24px 28px;
}
.game-card__body h4 { margin-bottom: 8px; font-size: 1.15rem; }
.game-card__body p { font-size: 0.88rem; color: var(--grau); margin-bottom: 16px; }
.game-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game-card__auszahlung {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.game-card__auszahlung span { font-size: 0.7rem; color: var(--grau); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.game-card__auszahlung strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--gruen); }

/* ── RTP BAR ─────────────────────────────────────────────────── */
.rtp-bar-wrap { margin: 16px 0; }
.rtp-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; }
.rtp-bar-track { height: 10px; background: var(--sand); border-radius: 100px; overflow: hidden; }
.rtp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gruen), var(--kupfer)); border-radius: 100px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* ── ARTICLE LAYOUT ──────────────────────────────────────────── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-body h2 {
  font-size: 1.9rem;
  margin: 40px 0 14px;
  color: var(--gruen);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 28px 0 10px; font-size: 1.35rem; }
.article-body p { font-size: 0.97rem; }
.article-body figure {
  margin: 32px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.article-body figure img { width: 100%; display: block; }
.article-body figcaption {
  font-size: 0.78rem;
  color: var(--grau);
  padding: 10px 16px;
  background: var(--sand);
  font-style: italic;
}
.callout {
  background: var(--hellgruen);
  border-left: 5px solid var(--gruen);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { font-size: 0.95rem; font-weight: 600; color: var(--gruen); margin: 0; }
.callout--kupfer { background: #FFF3E0; border-color: var(--kupfer); }
.callout--kupfer p { color: #7A4A1A; }
.callout--terrakot { background: #FDF0EE; border-color: var(--terrakot); }
.callout--terrakot p { color: #7A2A10; }

.emoji-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0;
}
.emoji-row .emoji-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.emoji-row p { margin: 0; font-size: 0.95rem; }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--weiss);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(27,67,50,0.06);
}
.sidebar-widget h5 {
  margin-bottom: 14px;
  color: var(--gruen);
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hellgruen);
}
.sidebar-widget ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-widget ul li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--anthrazit);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color .15s;
}
.sidebar-widget ul li a::before { content: '→'; color: var(--kupfer); font-size: 0.85rem; }
.sidebar-widget ul li a:hover { color: var(--gruen); }
.sidebar-widget--gruen { background: var(--gruen); }
.sidebar-widget--gruen h5 { color: var(--kupfer2); border-color: rgba(255,255,255,0.15); }
.sidebar-widget--gruen p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* ── TABLE ───────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--weiss);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
}
.data-table th {
  background: var(--gruen);
  color: var(--weiss);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--sand);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--hellgruen); }
.data-table .highlight-cell { font-family: var(--font-display); font-size: 1.1rem; color: var(--gruen); font-weight: 700; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
}
.badge--gruen { background: var(--hellgruen); color: var(--gruen); }
.badge--orange { background: #FFF3E0; color: var(--kupfer); }
.badge--rot { background: #FDF0EE; color: var(--terrakot); }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 44px; left: 0; right: 0;
  height: 2px;
  background: var(--hellgruen);
  z-index: 0;
}
.step-item {
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
}
.step-item__num {
  width: 48px; height: 48px;
  background: var(--gruen);
  color: var(--weiss);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 4px solid var(--creme);
}
.section--sand .steps-list::before { background: var(--sand); }
.section--sand .step-item__num { border-color: var(--sand); }
.step-item h4 { font-size: 1rem; margin-bottom: 6px; }
.step-item p { font-size: 0.87rem; color: var(--grau); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--weiss);
  border-radius: var(--r-md);
  border: 1.5px solid rgba(27,67,50,0.08);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(27,67,50,0.15); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--anthrazit);
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--hellgruen);
  color: var(--gruen);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.faq-item.open .faq-icon { background: var(--gruen); color: var(--weiss); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--grau);
  border-top: 1px solid var(--sand);
}
.faq-item.open .faq-answer { display: block; }

/* ── BIG STAT ─────────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-item__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gruen);
  line-height: 1;
  margin-bottom: 6px;
}
.section--gruen .stat-item__num { color: var(--kupfer2); }
.stat-item__label {
  font-size: 0.85rem;
  color: var(--grau);
  font-weight: 600;
}
.section--gruen .stat-item__label { color: rgba(255,255,255,0.5); }

/* ── CHIP TAGS ────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--hellgruen);
  color: var(--gruen);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(27,67,50,0.12);
}
.chip--kupfer { background: #FFF3E0; color: var(--kupfer); border-color: rgba(192,125,58,0.2); }
.chip--sand { background: var(--sand); color: var(--anthrazit); border-color: rgba(0,0,0,0.06); }

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }

/* ── DISCLAIMER ───────────────────────────────────────────────── */
.disclaimer {
  background: var(--sand);
  border-top: 2px solid rgba(27,67,50,0.1);
  border-bottom: 2px solid rgba(27,67,50,0.1);
  padding: 20px 0;
}
.disclaimer__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.disclaimer__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.disclaimer p {
  font-size: 0.8rem;
  color: var(--grau);
  margin: 0;
  line-height: 1.6;
}
.disclaimer strong { color: var(--anthrazit); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--anthrazit);
  color: var(--weiss);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--weiss);
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--kupfer2); }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: 32ch;
  margin-bottom: 20px;
}
.footer__eighteen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--terrakot);
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--weiss);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kupfer2);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .15s;
}
.footer__col a:hover { color: var(--kupfer2); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── REVEAL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__main { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: 60px 0; }
  .hero__left .container-inner { max-width: 100%; padding: 0 32px; margin: 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero__img { display: none; }
  .page-hero__content { padding: 52px 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .game-strip { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__col:first-child { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .steps-list { grid-template-columns: 1fr; }
  .steps-list::before { display: none; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 20px; }
}
