/* ══════════ RESET & BASE ══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Championship Gold — richer, warmer */
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #F2DC9A;
  --gold-dark:   #8E6F28;
  --gold-glow:   rgba(201,168,76,0.45);
  --gold-subtle: rgba(201,168,76,0.10);

  /* Deep Navy */
  --black: #07101A;
  --dark:  #0C1A28;
  --dark2: #112030;
  --gray:  #1A2E48;

  /* Silver */
  --gray-light: #6A86A2;
  --silver:     #8BA4BC;

  /* Warm off-white (cream tint, not cold grey) */
  --white:     #FFFFFF;
  --off-white: #F6F3EE;
  --text:      #A8BDD4;

  --radius:    3px;
  --radius-lg: 10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: 120px 0; }

/* ══════════ TYPOGRAPHY ══════════ */

/* Section tag — refined capsule style */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.35rem 1.1rem 0.35rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  background: rgba(201,168,76,0.07);
  position: relative;
}
.section-tag::before {
  content: '◆';
  font-size: 0.4rem;
  line-height: 1;
  opacity: 0.8;
  flex-shrink: 0;
}
.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(232,201,106,0.35);
  background: rgba(232,201,106,0.06);
}

/* Section title — gradient gold on accent spans */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.section-title span { color: var(--gold); }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }

.section-intro {
  max-width: 650px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: var(--gray-light);
  font-size: 1.05rem;
}
.section-intro.light { color: var(--text); }

/* ══════════ BUTTONS ══════════ */
@keyframes btnShimmer {
  0%   { transform: translateX(-130%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 60%, #C9A84C 100%);
  background-size: 200% 100%;
  color: var(--black);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-130%) skewX(-20deg);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.45), 0 4px 12px rgba(201,168,76,0.25);
}
.btn-primary:hover::after {
  animation: btnShimmer 0.65s ease forwards;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn.full-width { width: 100%; text-align: center; }

/* ══════════ NAVBAR ══════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.75rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(7,16,26,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.12), 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color var(--transition);
  line-height: 1;
}
.lang-current:hover { color: rgba(255,255,255,0.85); }
.lang-arrow {
  width: 7px; height: 5px;
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
  flex-shrink: 0;
}
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); opacity: 1; }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(7,16,26,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  overflow: hidden;
  min-width: 60px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-opt {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 0.7rem 1rem;
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.lang-opt:hover { background: rgba(201,168,76,0.12); color: var(--gold-light); }
.lang-opt.active { color: var(--gold); }

/* Three dots */
.menu-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  transition: opacity var(--transition);
}
.menu-dots span {
  display: block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}
.menu-dots:hover span { background: var(--gold); }
.menu-dots:hover span:nth-child(1) { transform: translateY(-1.5px); }
.menu-dots:hover span:nth-child(3) { transform: translateY(1.5px); }

/* ══════════ OVERLAY MENU ══════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,14,24,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-close {
  position: absolute;
  top: 2rem; right: 2.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}
.menu-close:hover { color: var(--gold-light); transform: rotate(90deg); }

.menu-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-nav ul li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  letter-spacing: 0.06em;
  display: block;
  padding: 0.18rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s ease, opacity 0.45s ease, transform 0.45s ease;
}
.menu-overlay.open .menu-nav ul li:nth-child(1) a { opacity: 1; transform: none; transition-delay: 0.06s; }
.menu-overlay.open .menu-nav ul li:nth-child(2) a { opacity: 1; transform: none; transition-delay: 0.12s; }
.menu-overlay.open .menu-nav ul li:nth-child(3) a { opacity: 1; transform: none; transition-delay: 0.18s; }
.menu-overlay.open .menu-nav ul li:nth-child(4) a { opacity: 1; transform: none; transition-delay: 0.24s; }
.menu-overlay.open .menu-nav ul li:nth-child(5) a { opacity: 1; transform: none; transition-delay: 0.30s; }
.menu-overlay.open .menu-nav ul li:nth-child(6) a { opacity: 1; transform: none; transition-delay: 0.36s; }
.menu-nav ul li a:hover { color: var(--gold-light); }

.menu-nav ul li a::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  margin-top: -2px;
}
.menu-nav ul li a:hover::after { transform: scaleX(0.6); }

/* ══════════ HERO ══════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #07101A 0%, #0C2040 55%, #0C1E36 100%);
  z-index: 0;
}
.hero-bg::after { display: none; }

/* Decorative thin gold vertical accent line */
.hero-bg::before {
  content: '';
  position: absolute;
  left: clamp(3rem, 14vw, 17rem);
  top: 15%;
  height: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5) 30%, rgba(201,168,76,0.5) 70%, transparent);
  z-index: 4;
}

.hero-photo {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: 72%;
  object-fit: cover;
  object-position: 42% 68%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.12) 4%,
    rgba(0,0,0,0.50) 9%,
    rgba(0,0,0,0.86) 15%,
    black 22%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.12) 4%,
    rgba(0,0,0,0.50) 9%,
    rgba(0,0,0,0.86) 15%,
    black 22%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(7,16,26,0.99)  0%,
      rgba(7,16,26,0.92) 12%,
      rgba(7,16,26,0.52) 22%,
      rgba(7,16,26,0.14) 34%,
      transparent        46%
    ),
    linear-gradient(to top, rgba(5,12,22,0.95) 0%, transparent 30%),
    rgba(7,14,24,0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 80px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 460px;
  width: 100%;
  margin-left: clamp(5rem, 18vw, 22rem);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.86;
  color: var(--white);
  letter-spacing: 0.015em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero-title span {
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: clamp(0.65rem, 0.9vw, 0.82rem);
  color: rgba(255,255,255,0.38);
  margin-bottom: 2.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

/* ── Countdown ── */
.hero-countdown {
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.75s forwards;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
}
.cd-unit {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
  display: block;
}
.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(201,168,76,0.35);
  line-height: 1;
  margin-bottom: 1.4rem;
  user-select: none;
}
.countdown-event {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.14em;
  margin-top: 1rem;
  font-style: italic;
}

.countdown-label { text-align: center; }
.countdown-grid  { justify-content: center; }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

/* ══════════ ÜBER BEHAR ══════════ */
#ueber { background: var(--off-white); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  margin-top: 2.5rem;
}
.ueber-image-wrap { position: relative; }
.ueber-video {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.08);
  background: #000;
}
.ueber-image-placeholder {
  aspect-ratio: 3/4;
  max-height: 560px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--gray) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-light);
  font-size: 0.9rem;
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  position: relative;
}
.ueber-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.placeholder-icon { font-size: 4rem; }
.ueber-image-placeholder p { font-style: italic; font-size: 0.85rem; opacity: 0.5; }
.ueber-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: var(--black);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
.badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; }
.badge-text { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; line-height: 1.3; }

.ueber-text p {
  color: var(--gray-light);
  margin-bottom: 1.35rem;
  font-size: 1.02rem;
  line-height: 1.8;
}
.ueber-lead {
  font-size: 1.22rem !important;
  font-weight: 700;
  color: var(--dark) !important;
  margin-bottom: 1.75rem !important;
  line-height: 1.6 !important;
}
.ueber-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  margin-top: 2.5rem !important;
}
.ueber-highlights { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.highlight { display: flex; gap: 1rem; align-items: flex-start; }
.highlight-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.highlight strong { display: block; font-weight: 700; margin-bottom: 0.15rem; color: var(--dark); }
.highlight p { margin: 0; font-size: 0.9rem; color: var(--gray-light); }

/* ══════════ REICHWEITE ══════════ */
.dark-section { background: var(--dark); }

.reichweite-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.reichweite-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}
.reichweite-stat { display: flex; flex-direction: column; gap: 0.75rem; }
.reichweite-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 11vw, 11rem);
  line-height: 0.88;
  color: var(--gold);
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.55));
}
.reichweite-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.ri-solo img,
.ri-community img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}
.ri-community img {
  height: 580px;
  object-position: center 30%;
}
.ri-solo img {
  height: 580px;
  object-position: center 15%;
}
.reichweite-compare {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
}

/* Editorial blockquote */
.reichweite-quote {
  border-left: 3px solid var(--gold);
  padding: 2rem 1.5rem 2rem 2.5rem;
  margin: 0;
  position: relative;
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  text-align: left;
}
.quote-mark { display: none; }
.reichweite-quote p,
.reichweite-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.reichweite-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1.25rem;
}

/* ══════════ ERFOLGE ══════════ */
#erfolge { background: var(--off-white); }
.erfolge-timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 3rem;
}
.erfolge-timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-marker {
  position: absolute;
  left: -2.4rem; top: 0.4rem;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.timeline-content:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.2);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.timeline-content p { color: var(--gray-light); font-size: 0.95rem; }
.timeline-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline-tag.win  { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.timeline-tag.ko   { background: rgba(200,50,50,0.1);   color: #c03030; }
.timeline-tag.feat { background: rgba(50,130,200,0.1);  color: #2a6aaa; }

/* ══════════ SPONSOR WERDEN ══════════ */
.sponsor-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.sponsor-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.sponsor-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,16,26,0.65) 0%, rgba(7,16,26,0.82) 100%),
    rgba(7,16,26,0.2);
  z-index: 1;
}
.sponsor-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 2.5rem;
}
.sponsor-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.sponsor-title span { color: var(--gold); }
.sponsor-body {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sponsor-body p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.85;
}
.sponsor-body p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.sponsor-btns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.sponsor-presskit-note {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(255,255,255,0.32);
  font-size: 0.85rem;
  line-height: 1.75;
}
.sponsor-text {
  max-width: 680px;
  margin: 0 auto 4rem;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}
.sponsor-pakete {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  align-items: start;
}
.paket {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  transition: all var(--transition);
}
.paket:hover { border-color: rgba(201,168,76,0.35); background: rgba(255,255,255,0.06); }
.paket.featured {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.6);
  transform: scale(1.04);
}
.paket-badge {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.paket-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.paket h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.paket ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.paket ul li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.paket ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.sponsor-note { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-top: 1rem; }
.sponsor-note a { color: var(--gold); text-decoration: underline; }

/* ══════════ INSTAGRAM / SOCIAL ══════════ */
.social-section {
  padding: 8rem 0 7rem;
  text-align: center;
}
.social-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  margin: 1.25rem 0 4rem;
  letter-spacing: 0.01em;
}
.social-title span { color: var(--gold); }
.ig-feed-wrap {
  width: 100%;
  margin-bottom: 3.5rem;
}
.ig-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  color: var(--silver);
  font-size: 1rem;
}

/* Social Follow Buttons */
.social-btns-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.social-follow-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.ig-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 6px 24px rgba(253,29,29,0.3);
}
.tt-btn {
  background: #010101;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

/* ══════════ EBOOK ══════════ */
.ebook-section { padding: 8rem 0; }
.ebook-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7rem;
  align-items: center;
}

.ebook-cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ebook-cover-img {
  width: 300px;
  border-radius: 6px;
  /* Book-style shadow: left/bottom depth + gold ambient glow */
  box-shadow:
    -18px 24px 60px rgba(0,0,0,0.7),
    -4px 6px 16px rgba(0,0,0,0.5),
    8px -6px 30px rgba(201,168,76,0.12),
    0 0 0 1px rgba(201,168,76,0.18),
    inset -2px 0 6px rgba(0,0,0,0.2);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s cubic-bezier(0.23,1,0.32,1);
}
.ebook-cover-img:hover {
  transform: translateY(-8px) rotateY(-3deg) scale(1.02);
  box-shadow:
    -24px 32px 70px rgba(0,0,0,0.75),
    -4px 6px 16px rgba(0,0,0,0.5),
    12px -8px 40px rgba(201,168,76,0.2),
    0 0 0 1px rgba(201,168,76,0.3),
    inset -2px 0 6px rgba(0,0,0,0.2);
}

.ebook-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.0;
  color: var(--white);
  margin: 1.25rem 0 1.75rem;
  letter-spacing: 0.01em;
}
.ebook-title span { color: var(--gold); }
.ebook-lead {
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.ebook-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 2.75rem;
  font-style: italic;
  border-left: 2px solid rgba(201,168,76,0.45);
  padding-left: 1.25rem;
}
.ebook-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════ KONTAKT ══════════ */
#kontakt { background: var(--white); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}
.kontakt-intro {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.kontakt-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.kontakt-item { display: flex; gap: 1rem; align-items: flex-start; }
.k-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.kontakt-item strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.kontakt-item a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.kontakt-item a:hover { color: var(--gold-light); }
.kontakt-item p { margin: 0; font-size: 0.95rem; color: var(--gray-light); }

.social-links { display: flex; gap: 0.75rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--off-white);
  color: var(--gray);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* FORM */
.kontakt-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-success {
  display: none;
  background: rgba(50,180,100,0.08);
  border: 1px solid rgba(50,180,100,0.28);
  color: #1a7a40;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}

/* ══════════ SPOTLIGHT CURSOR ══════════ */
.spotlight-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle at center,
    rgba(201,168,76,0.09) 0%,
    rgba(201,168,76,0.04) 38%,
    transparent 68%
  );
  will-change: transform;
  transition: width 0.4s ease, height 0.4s ease;
}
.spotlight-cursor.spotlight-hover {
  width: 260px; height: 260px;
  background: radial-gradient(circle at center,
    rgba(201,168,76,0.20) 0%,
    rgba(201,168,76,0.08) 50%,
    transparent 75%
  );
}

/* ══════════ 3D TILT ══════════ */
.tilt-el {
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  transition: background 0.15s ease;
}

/* ══════════ SCROLL ANIMATIONEN ══════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
[data-animate="up"]    { transform: translateY(44px); }
[data-animate="up-sm"] { transform: translateY(22px); }
[data-animate="left"]  { transform: translateX(-52px); }
[data-animate="right"] { transform: translateX(52px); }
[data-animate="scale"] { transform: scale(0.92); }
[data-animate="fade"]  { transform: none; }
[data-animate].in-view { opacity: 1; transform: none; }

/* Safety-Fallback */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate="up"],
  [data-animate="left"],
  [data-animate="right"],
  [data-animate="scale"],
  [data-animate="fade"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ══════════ FOOTER ══════════ */
footer {
  background: #05090F;
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-logo span { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

/* ══════════ KEYFRAME ANIMATIONS ══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .ueber-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .ueber-image-wrap { max-width: 520px; }

  .reichweite-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ri-community, .ri-solo { display: none; }

  .ebook-container { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .ebook-cover-wrap { justify-content: center; }
  .ebook-cover-img { width: 240px; }
  .ebook-btns { justify-content: center; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 1.5rem; }
  .warum-grid { grid-template-columns: 1fr; }
  .sponsor-pakete { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .paket.featured { transform: none; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .erfolge-timeline { padding-left: 1.75rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .menu-close { top: 1.5rem; right: 1.5rem; }

  .social-section { padding: 6rem 0 5rem; }
  .social-btns-row { flex-direction: column; align-items: center; }
  .social-follow-btn { width: 100%; max-width: 320px; justify-content: center; }
  .ig-feed-wrap { margin-bottom: 2.5rem; }

  .reichweite-num { font-size: clamp(4.5rem, 18vw, 7.5rem); }
  .reichweite-compare { font-size: 1rem; }
  .reichweite-quote { padding: 1.5rem 1rem 1.5rem 1.75rem; }

  .sponsor-content { padding: 5rem 1.75rem; }
  .ebook-section { padding: 6rem 0; }
  .ebook-cover-img { width: 210px; }
  .ebook-title { font-size: clamp(2.4rem, 7vw, 3.5rem); }
}

@media (max-width: 768px) {
  .hero-bg::before { display: none; }
  .hero-photo {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.28;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(7,16,26,0.62) 0%,
      rgba(7,16,26,0.28) 40%,
      rgba(7,16,26,0.78) 100%
    );
  }
  .hero-content {
    text-align: center;
    padding: 0 1.5rem;
    max-width: 100%;
    margin-left: 0 !important;
  }
  .countdown-label { text-align: center; }
  .countdown-grid  { justify-content: center; gap: 0.5rem; }
  .hero-btns { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .lang-switcher { gap: 0.35rem; }
  .cd-num { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .ebook-container { gap: 2.5rem; }
  .ebook-cover-img { width: 180px; }
  .social-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .reichweite-stat { padding: 0 1rem; }
  .hero-title { font-size: clamp(4.5rem, 18vw, 7rem); }
}
