/* ==========================================================================
   Flüsterfeder Landing Page — Dark Fantasy / Multi-Genre Theme
   Mobile First, keine externen Abhängigkeiten, CSS Custom Properties
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --bg-primary: #0d0d1a;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --accent-primary: #e94560;
  --accent-hover: #ff6b81;
  --gold: #d4a574;
  --gold-light: #e8c89e;
  --text-primary: #eeeeee;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --border: #2a2a4a;
  --success: #4ade80;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --nav-height: 64px;
  --container-max: 1200px;
  --section-padding: 5rem 0;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gold); line-height: 1.2; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-padding); }
.section-header { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Alternating section backgrounds */
.how-it-works, .tafelrunde, .faq { background-color: var(--bg-secondary); }

/* --- Scroll Animations --- */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.9rem 2rem; border-radius: var(--radius-xs);
  font-size: 1.05rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background-color: var(--accent-primary); color: #fff;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}
.btn-primary:hover {
  background-color: var(--accent-hover); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(233, 69, 96, 0.4);
}
.btn-secondary { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-secondary:hover { background-color: var(--gold); color: var(--bg-primary); transform: translateY(-2px); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); transition: background-color 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background-color: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-size: 1.25rem; color: var(--gold);
  font-weight: 700; text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px; border-radius: 8px; }
.nav-logo:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger-line {
  display: block; width: 24px; height: 2px; background-color: var(--text-primary);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Menu */
.nav-menu {
  position: fixed; top: 0; right: -100%; width: min(300px, 80vw); height: 100vh; height: 100dvh;
  background-color: var(--bg-secondary); display: flex; flex-direction: column;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem; gap: 0.5rem;
  transition: right 0.3s ease; border-left: 1px solid var(--border); z-index: 999;
}
.nav-menu.open { right: 0; }
.nav-link {
  color: var(--text-secondary); font-size: 1.1rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border); text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem;
  background-color: var(--accent-primary); color: #fff; border-radius: var(--radius-xs);
  text-align: center; font-weight: 600; text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}
.nav-cta:hover { background-color: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-menu {
    position: static; width: auto; height: auto; background: none;
    flex-direction: row; align-items: center; padding: 0; gap: 0; border: none;
  }
  .nav-link { font-size: 0.95rem; padding: 0.5rem 0.85rem; border-bottom: none; }
  .nav-cta { margin-top: 0; margin-left: 0.5rem; padding: 0.5rem 1.25rem; font-size: 0.95rem; }
}

/* ==========================================================================
   HERO — Full-width background image with blur-up
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--nav-height); overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-bg-mini {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: blur(20px); transform: scale(1.1);
  transition: opacity 0.6s ease-out;
}
.hero-bg-full {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 0.6s ease-out;
}
.hero-bg-full.loaded { opacity: 1; }
.hero-bg-full.loaded + .hero-bg-mini,
.hero-bg-mini.hidden { opacity: 0; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,26,0.5) 0%, rgba(13,13,26,0.7) 50%, rgba(13,13,26,0.95) 100%);
}
.hero-bg-particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 720px; padding: 2rem 1.25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 1.25rem; line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 0 40px rgba(212, 165, 116, 0.15);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.hero-note { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   ABOUT — Two columns
   ========================================================================== */
.about-grid {
  display: flex; flex-direction: column; gap: 2.5rem; align-items: center;
}
.about-image {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow);
  max-width: 500px; width: 100%;
}
.about-image img { width: 100%; height: auto; }
.about-text { max-width: 560px; }
.about-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }

@media (min-width: 900px) {
  .about-grid { flex-direction: row; gap: 4rem; }
  .about-image { flex: 0 0 45%; max-width: none; }
  .about-text { flex: 1; }
}

/* ==========================================================================
   GENRE SHOWCASE
   ========================================================================== */
.genre-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.genre-card {
  border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--border); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  background: var(--bg-secondary);
}
.genre-card:hover {
  transform: translateY(-6px);
  border-color: var(--genre-color, var(--gold));
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px color-mix(in srgb, var(--genre-color, var(--gold)) 30%, transparent);
}
.genre-card-image {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.genre-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.genre-card:hover .genre-card-image img { transform: scale(1.05); }
.genre-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(13,13,26,0.95));
}
.genre-card-overlay h3 {
  font-size: 1.2rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.genre-card-text {
  padding: 0.75rem 1rem 1rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.genre-footer {
  text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-top: 2rem;
}

@media (min-width: 500px) { .genre-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .genre-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   HOW IT WORKS — 3 Steps
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step-card {
  background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-primary); color: #fff;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1.25rem;
}
.step-screenshot {
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.25rem;
  box-shadow: var(--card-shadow); border: 1px solid var(--border);
}
.step-screenshot img { width: 100%; height: auto; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   FEATURES — Alternating blocks
   ========================================================================== */
.feature-block {
  display: flex; flex-direction: column; gap: 2rem; align-items: center;
  margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.feature-block-image {
  width: 100%; max-width: 560px; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--card-shadow); border: 1px solid var(--border);
}
.feature-block-image img { width: 100%; height: auto; }
.feature-block-text h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-block-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; }

/* Collage for Völker/Klassen feature */
.feature-block-collage {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
  padding: 1rem; background: var(--bg-tertiary);
}
.feature-block-collage img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 2px solid var(--border); transition: border-color 0.3s, transform 0.3s;
}
.feature-block-collage img:hover { border-color: var(--gold); transform: scale(1.08); }

/* Icon-only feature block */
.feature-block--icon {
  flex-direction: row; gap: 2rem; text-align: left;
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem; margin-bottom: 0;
}
.feature-block-icon {
  flex-shrink: 0; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.feature-block-icon img { width: 80px; height: 80px; object-fit: contain; }

@media (min-width: 900px) {
  .feature-block { flex-direction: row; text-align: left; }
  .feature-block-image { flex: 0 0 50%; max-width: none; }
  .feature-block-text { flex: 1; }
  .feature-block--reverse { flex-direction: row-reverse; }
}

/* ==========================================================================
   TAFELRUNDE
   ========================================================================== */
.tafelrunde-layout {
  display: flex; flex-direction: column; gap: 2.5rem; align-items: center;
}
.tafelrunde-image {
  width: 100%; max-width: 500px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--card-shadow);
}
.tafelrunde-image img { width: 100%; height: auto; }
.tafelrunde-info { max-width: 560px; }
.tafelrunde-modes { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.tafelrunde-mode {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem; transition: border-color 0.3s;
}
.tafelrunde-mode:hover { border-color: var(--gold); }
.tafelrunde-mode-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.tafelrunde-mode strong { color: var(--gold); display: block; margin-bottom: 0.25rem; }
.tafelrunde-mode p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; margin: 0; }
.tafelrunde-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }

@media (min-width: 900px) {
  .tafelrunde-layout { flex-direction: row; gap: 4rem; }
  .tafelrunde-image { flex: 0 0 42%; max-width: none; }
  .tafelrunde-info { flex: 1; }
}

/* ==========================================================================
   CHARAKTERE
   ========================================================================== */
.char-showcase {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-bottom: 3rem;
}
.char-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.char-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.char-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.char-card-info { padding: 0.75rem 1rem 1rem; }
.char-card-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: 999px; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.35rem;
  background: color-mix(in srgb, var(--badge-color, var(--gold)) 20%, transparent);
  color: var(--badge-color, var(--gold)); border: 1px solid var(--badge-color, var(--gold));
}
.char-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.char-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

@media (min-width: 600px) { .char-showcase { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .char-showcase { grid-template-columns: repeat(6, 1fr); } }

/* Gallery Tabs & Scroll */
.gallery-tabs { margin-top: 2rem; }
.gallery-main-title {
  text-align: center; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.gallery-tab-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem;
}
.gallery-tab {
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.5rem 1.25rem; font-size: 0.85rem;
  color: var(--text-secondary); cursor: pointer; font-family: var(--font-body);
  transition: all 0.2s;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--text-primary); }
.gallery-tab.active {
  background: var(--gold); color: var(--bg-primary); border-color: var(--gold); font-weight: 600;
}

.gallery-section { margin-bottom: 2rem; }
.gallery-title { font-size: 1.1rem; margin-bottom: 1rem; color: var(--gold); }
.gallery-scroll {
  display: flex; gap: 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem; scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background-color: var(--border); border-radius: 3px; }
.gallery-item {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; cursor: default; transition: opacity 0.3s;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover img {
  border-color: var(--gold); transform: scale(1.08);
  box-shadow: 0 0 16px rgba(212, 165, 116, 0.25);
}
.gallery-name {
  font-size: 0.75rem; color: var(--text-muted); text-align: center;
  max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color 0.3s;
}
.gallery-item:hover .gallery-name { color: var(--gold-light); }

@media (min-width: 600px) {
  .gallery-item img { width: 100px; height: 100px; }
  .gallery-name { max-width: 100px; }
}

/* ==========================================================================
   PREISE
   ========================================================================== */
.free-banner {
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, rgba(212,165,116,0.08), rgba(212,165,116,0.03));
  border: 1px solid var(--gold); border-radius: var(--radius); padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.free-banner-icon { font-size: 2rem; flex-shrink: 0; }
.free-banner-content { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.free-banner-content strong { color: var(--gold); }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.pricing-card {
  position: relative; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,165,116,0.06) 0%, var(--bg-secondary) 100%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-primary); font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-name { font-size: 1.2rem; margin-bottom: 0.75rem; }
.pricing-price { font-family: var(--font-heading); font-size: 2.4rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.pricing-coins { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.pricing-per-coin { font-size: 0.85rem; color: var(--text-muted); }

@media (min-width: 500px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-card--featured { transform: scale(1.04); }
  .pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
}

/* Cost Details Toggle */
.cost-details { margin-bottom: 2rem; }
.cost-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-primary); font-size: 1rem;
  font-family: var(--font-body); cursor: pointer; transition: border-color 0.2s;
}
.cost-toggle:hover { border-color: var(--gold); }
.cost-toggle-icon { font-size: 0.75rem; transition: transform 0.3s; }
.cost-toggle[aria-expanded="true"] .cost-toggle-icon { transform: rotate(180deg); }
.cost-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cost-panel.open { max-height: 2000px; }
.cost-table-group { padding: 1.5rem 0 0; }
.cost-table-group h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.75rem; }
.cost-table-wrapper { overflow-x: auto; }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.cost-table th, .cost-table td { padding: 0.6rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.cost-table th { color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cost-table td { color: var(--text-secondary); }
.cost-payment { padding-top: 1.25rem; font-size: 0.9rem; color: var(--text-muted); }
.pricing-disclaimer {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
  max-width: 800px; margin: 2rem auto 0; text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover, .faq-item[open] { border-color: var(--gold); }
.faq-question {
  padding: 1.25rem 1.5rem; font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--gold); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; font-family: var(--font-body); font-size: 1.4rem;
  color: var(--text-muted); flex-shrink: 0; transition: transform 0.3s;
}
.faq-item[open] .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.faq-answer a { color: var(--gold); }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.kontakt { text-align: center; }
.kontakt-options {
  margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.kontakt-oder { font-size: 0.9rem; color: var(--text-muted); }
.kontakt-email {
  display: inline-block; font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--gold);
  padding: 0.75rem 1.5rem; border: 2px solid var(--gold); border-radius: var(--radius-sm);
  transition: background-color 0.2s, color 0.2s;
}
.kontakt-email:hover { background-color: var(--gold); color: var(--bg-primary); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; text-align: center; margin-bottom: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold);
}
.footer-brand img { width: 32px; height: 32px; border-radius: 6px; }
.footer-copy { color: var(--text-muted); font-family: var(--font-body); font-size: 0.85rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.footer-nav a { color: var(--text-secondary); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }
.footer-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); }

@media (min-width: 768px) {
  .footer-grid { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4); padding: 1.25rem;
  animation: cookie-slide-up 0.4s ease-out;
}
@keyframes cookie-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner[hidden] { display: none; }
.cookie-banner-content {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center;
}
.cookie-banner-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; max-width: 680px; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.cookie-btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; border: none; cursor: pointer; font-family: var(--font-body); }
.cookie-btn.btn-secondary { font-size: 0.9rem; padding: 0.6rem 1.5rem; }
.cookie-link { font-size: 0.8rem; color: var(--text-muted); }

@media (min-width: 768px) {
  .cookie-banner-content { flex-direction: row; text-align: left; gap: 1.5rem; }
  .cookie-banner-content p { flex: 1; }
  .cookie-banner-actions { flex-shrink: 0; }
  .cookie-link { flex-shrink: 0; align-self: center; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
}
