/* ============================================================
   FEWO BUTLER – LANDING PAGE CSS
   Design: Dark Premium, Gold Accent, Inter Font
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-main:       #0d0d0d;
  --bg-dark:       #080808;
  --bg-card:       #161616;
  --bg-navy:       #090d1a;
  --bg-card-hover: #1e1e1e;

  --gold:          #f5c518;
  --gold-hover:    #d4a80e;
  --red:           #e63946;

  --text-white:    #f0f0f0;
  --text-mid:      #8a8a8a;
  --text-light:    #c0c0c0;

  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(245,197,24,0.35);

  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold:   0 0 0 3px rgba(245,197,24,0.55);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ---- Grain Noise Overlay ---- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ---- Container ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.3);
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: rgba(245,197,24,0.08);
  border-color: var(--gold);
}
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-gold);
}

.btn-full { width: 100%; font-size: 1.05rem; padding: 1rem 2rem; }
.btn-hero  { font-size: 1.1rem; padding: 1rem 2.25rem; }

/* ---- Typography Helpers ---- */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: rgba(245,197,24,0.7); }

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.highlight {
  color: var(--gold);
}

.underline-gold {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 100;
}

.live-dot, .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.badge-dot { background: var(--red); }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg-room.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.hero-content { max-width: 720px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: #ff6b75;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  min-width: 72px;
}

.countdown-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-mid);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.6rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

/* ============================================================
   LOGOS BAR
   ============================================================ */
.logos-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
}

.logos-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.logos-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-img {
  max-width: 720px;
  width: 100%;
  opacity: 0.65;
  filter: grayscale(1) brightness(1.4);
  transition: opacity var(--transition);
}
.logos-img:hover { opacity: 0.9; }

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-section {
  padding: 4rem 0;
  background: var(--bg-main);
}

.steps-section h2 { text-align: center; margin-bottom: 0.5rem; }
.steps-section .section-eyebrow {
  text-align: center;
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}
.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(245,197,24,0.1);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,197,24,0.18);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.step-card h3 { color: var(--text-white); margin-bottom: 0.75rem; }
.step-card p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   BEFORE / AFTER SECTION
   ============================================================ */
.before-after-section {
  padding: 3.5rem 0;
  background: var(--bg-dark);
}

.before-after-section h2 { text-align: center; max-width: 760px; margin: 0 auto 2rem; text-wrap: balance; }

.ba-content {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.ba-img {
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.ba-cta { text-align: center; }

/* ============================================================
   REVEAL SECTION
   ============================================================ */
.reveal-section {
  padding: 4rem 0;
  background: var(--bg-navy);
  position: relative;
  overflow: hidden;
}

.reveal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.reveal-section h2 { text-align: center; max-width: 780px; margin: 0 auto 0.75rem; text-wrap: balance; }
.reveal-sub { text-align: center; color: var(--text-light); margin-bottom: 2rem; font-size: 1.05rem; }

.reveal-eyebrow {
  text-align: center;
  display: block;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.75rem;
}

.reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reveal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.reveal-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(245,197,24,0.08);
}

.reveal-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.reveal-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.reveal-card:hover .reveal-card-img-wrap img { transform: scale(1.04); }

.reveal-card-body {
  padding: 1.5rem;
}
.reveal-card-body h3 { color: var(--text-white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.reveal-card-body p  { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 4rem 0;
  background: var(--bg-main);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-header h2 { margin-bottom: 1rem; }

.testimonials-faces-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.testimonials-faces-img {
  max-width: 220px;
  height: auto;
}

.badge-participants {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  color: #ff6b75;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.testimonial-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.testimonial-row.reverse { direction: rtl; }
.testimonial-row.reverse > * { direction: ltr; }

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.testimonial-meta strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
}
.testimonial-result {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.testimonial-text p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   SIGNUP SECTION
   ============================================================ */
.signup-section {
  padding: 0 0 4rem;
  background: var(--bg-dark);
}

.signup-community-img {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
  margin-bottom: 1.5rem;   /* Abstand reduziert */
}

.signup-community-full-img {
  width: 100%;
  height: auto;            /* Nicht abschneiden auf Mobile */
  max-height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Mobile: Bild vollständig zeigen */
@media (max-width: 600px) {
  .signup-community-img {
    max-height: none;
    margin-bottom: 1rem;
  }
  .signup-community-full-img {
    height: auto;
    max-height: none;
    object-fit: contain;
    background: var(--bg-dark);
  }
}

/* Community full-width image */
.community-img-wrap {
  margin: 2rem 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.community-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.signup-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.signup-box h2 { margin-bottom: 0.75rem; }
.signup-sub {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* Forms */
.signup-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.form-group input {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.97rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder { color: var(--text-mid); }
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group input:focus-visible { box-shadow: var(--shadow-gold); }
.form-group input[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}

.field-error {
  font-size: 0.78rem;
  color: #ff6b75;
  font-weight: 500;
  min-height: 1em;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
}

.form-error-global {
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius);
  color: #ff6b75;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 2rem 0 10rem; /* Genug Abstand damit Links über Sticky-Button sichtbar sind */
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-mid);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text-white); }
.footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   STICKY CTA (Mobile only)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, var(--bg-dark) 60%, transparent);
  z-index: 500;
}
.btn-sticky { width: 100%; font-size: 1rem; padding: 0.9rem; }

.sticky-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0 0.2rem;
}
.sticky-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.sticky-legal a:hover { color: var(--text-white); }
.sticky-legal span { color: rgba(255,255,255,0.3); font-size: 0.72rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-mid);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text-white); background: rgba(255,255,255,0.07); }
.modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-bullets {
  list-style: none;
  margin-bottom: 1.75rem;
}
.modal-bullets li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.modal-bullets li:last-child { border-bottom: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .hero-img { max-width: 380px; }

  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .reveal-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .testimonial-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .testimonial-row.reverse { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero { padding: 3rem 0 2.5rem; min-height: auto; }
  h1 { font-size: 2.1rem; line-height: 1.2; }
  h2 { font-size: 1.85rem; line-height: 1.25; }

  /* Sektions-Headlines explizit vergrößern */
  .steps-section h2,
  .forwho-section h2,
  .reveal-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .signup-section h2 { font-size: 1.85rem; }

  .steps-section,
  .reveal-section,
  .testimonials-section,
  .signup-section { padding: 3rem 0; }

  .forwho-section { padding: 3rem 0; }

  .countdown-item { min-width: 58px; padding: 0.6rem 0.8rem; }
  .countdown-num  { font-size: 1.6rem; }

  .sticky-cta { display: block; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 4rem 0 5rem;
  background: var(--bg-main);
}

.faq-section .section-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-section h2 {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1rem;
  text-wrap: balance;
}

.faq-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active,
.faq-item:focus-within {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }
.faq-question:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: border-color var(--transition), color var(--transition), transform 0.25s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
  animation: faqOpen 0.25s ease;
}

.faq-answer p { margin: 0; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-question { font-size: 0.95rem; padding: 1rem 1.1rem; }
  .faq-answer   { padding: 0 1.1rem 1.2rem; }
}

/* ============================================================
   FÜR WEN SECTION
   ============================================================ */
.forwho-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.forwho-section .section-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

.forwho-section h2 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
  text-wrap: balance;
}

.forwho-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.forwho-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem;
}

.forwho-yes { border-color: rgba(245,197,24,0.25); }
.forwho-no  { opacity: 0.72; }

.forwho-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.forwho-yes .forwho-label { color: var(--gold); }
.forwho-no  .forwho-label { color: var(--text-mid); }

.forwho-check {
  font-size: 1rem;
  color: var(--gold);
}

.forwho-x {
  font-size: 1.1rem;
  color: var(--text-mid);
}

.forwho-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forwho-yes .forwho-list li {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.forwho-yes .forwho-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.forwho-no .forwho-list li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.forwho-no .forwho-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-mid);
}

@media (max-width: 700px) {
  .forwho-grid { grid-template-columns: 1fr; }
  .forwho-no   { opacity: 1; }
}
