/* ============================================
   VIP Steuerköpfe — Multi-Page Site
   ============================================ */

:root {
  --red:        #C8102E;
  --red-dark:   #9E0C23;
  --red-soft:   #FCE9EC;

  --yellow:     #F5C518;      /* satt — für Badges & Akzente */
  --yellow-bg:  #FFF6CC;      /* warmes Papier-Gelb für Section-Background */
  --yellow-dark:#C99800;

  --purple:      #6B2B91;     /* Coachy Steuerhelden-Plattform */
  --purple-dark: #4D1E6B;
  --purple-soft: #ECDDF5;

  --black:      #0F0F0F;
  --ink:        #1A1A1A;
  --grey-900:   #2A2A2A;
  --grey-700:   #555;
  --grey-500:   #8B8B8B;
  --grey-300:   #D9D9D9;
  --grey-100:   #F2F0EC;
  --bg:         #FAFAF7;
  --bg-warm:    #F5F2EC;
  --white:      #FFFFFF;

  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  22px;

  --shadow-sm:  0 2px 6px rgba(15,15,15,0.06);
  --shadow:     0 12px 32px -8px rgba(15,15,15,0.12);
  --shadow-lg:  0 24px 60px -12px rgba(15,15,15,0.18);

  --container:  1180px;
  --gap:        clamp(1rem, 2vw, 1.75rem);

  --font-body:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.12; }
h3 { font-size: 1.2rem; line-height: 1.3; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  background: rgba(250,250,247,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,15,15,0.06);
}

.logo-link { display: flex; align-items: center; }
.logo { height: 36px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey-900);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--red); }
.site-nav a.active {
  color: var(--red);
  position: relative;
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.site-nav a.active.nav-cta::after { display: none; }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }

/* Burger Menu Toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 60;
  margin-left: 0.5rem;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  /* Hide all nav items on mobile by default (except the always-visible CTA) */
  .site-nav a:not(.nav-cta) { display: none; }

  /* When burger toggled: yellow drop-down menu below header */
  .site-nav.open {
    display: block;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    height: calc(100vh - 65px);
    height: calc(100dvh - 65px);
    background: var(--yellow);
    z-index: 45;
    padding: 1rem 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: nav-slide-down 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .site-nav.open a {
    display: block;
    width: 100%;
    font-size: 1.02rem;
    font-weight: 600;
    padding: 0.9rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(15,15,15,0.15);
    color: var(--black);
  }
  .site-nav.open a:last-child { border-bottom: none; }
  .site-nav.open a.active { color: var(--red); }
  .site-nav.open a.active::after { display: none; }
  .site-nav.open a.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.9rem 1.5rem !important;
    border-radius: 100px;
    margin: 1rem auto 0;
    max-width: 280px;
    border-bottom: none;
  }
  .site-nav.open a.nav-cta:hover { background: var(--red); }

  @keyframes nav-slide-down {
    from { transform: translateY(-12px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  body.nav-open { overflow: hidden; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(200,16,46,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}
.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Push above cookie banner when cookie banner is visible */
.cookie-banner:not([hidden]) ~ .scroll-top { bottom: 6.5rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(200,16,46,0.4);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(200,16,46,0.55); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--grey-300);
}
.btn-ghost:hover { border-color: var(--black); background: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 6px 18px -4px rgba(245,197,24,0.55);
}
.btn-yellow strong { font-weight: 800; color: var(--black); }
.btn-yellow:hover {
  background: var(--yellow-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(245,197,24,0.7);
}
.btn-yellow:hover strong { color: var(--white); }

.btn-purple {
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 6px 18px -4px rgba(107,43,145,0.45);
}
.btn-purple:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(107,43,145,0.6);
}

/* ============================================
   EYEBROWS & SECTION HEADINGS
   ============================================ */
.eyebrow, .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.eyebrow-light { color: rgba(255,255,255,0.8); }
.upcoming-eyebrow { color: var(--yellow-dark); }

.section-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--grey-700);
  max-width: 720px;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.section-lede strong { color: var(--black); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--yellow-bg);
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 .accent {
  color: var(--red);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.28em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 2px;
}

.hero .lede {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--grey-700);
  max-width: 580px;
  line-height: 1.55;
  margin: 1.5rem 0 2rem;
}
.hero .lede strong { color: var(--black); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.92rem;
  color: var(--grey-700);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 560px;
  line-height: 1.5;
}
.hero-note-text { flex: 1; }
.hero-note strong { color: var(--black); font-weight: 700; }
.hero-note-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-pills li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: var(--white);
  color: var(--grey-700);
  border: 1px solid rgba(15,15,15,0.08);
}
.hero-pills .pill-price {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow-dark);
  font-weight: 600;
  box-shadow: 0 4px 14px -2px rgba(245,197,24,0.45);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-pills .pill-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -4px rgba(245,197,24,0.6);
}
.hero-pills .pill-price a {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  color: var(--black);
}
.hero-pills .pill-price strong { font-weight: 800; color: var(--black); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-cat {
  position: relative;
  z-index: 2;
  width: clamp(200px, 26vw, 280px);
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; min-height: 220px; }
  .hero-cat { width: clamp(180px, 50vw, 260px); }
}

/* ============================================
   STATS / ACHIEVEMENTS
   ============================================ */
.stats {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--white);
  border-top: 1px solid rgba(15,15,15,0.05);
  border-bottom: 1px solid rgba(15,15,15,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-bottom: 3rem;
}

.stat-card {
  padding: 2rem 1.75rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.stat-num-word {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.stat-desc {
  font-size: 0.92rem;
  color: var(--grey-700);
  line-height: 1.5;
}

/* Themen-Auszug */
.themen-recent {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--yellow);
}
.themen-recent h3 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.themen-recent ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0.5rem 1.5rem;
}
.themen-recent li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.96rem;
  color: var(--grey-900);
  line-height: 1.5;
}
.themen-recent .dot {
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.themen-recent strong {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}
.speaker-topic strong {
  color: var(--black);
  font-weight: 700;
}

/* ============================================
   LINEUP / SPEAKER GRID
   ============================================ */
.lineup {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

/* Founders block */
.founders {
  margin: 1rem 0 3.5rem;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  background:
    linear-gradient(155deg, rgba(245,197,24,0.08), rgba(245,197,24,0.02) 60%),
    var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,15,15,0.06);
  border-left: 4px solid var(--yellow);
}

.founders-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.founders-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.founders-intro h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 1rem;
}
.founders-intro p {
  color: var(--grey-700);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.founder-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,15,15,0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.founder-card .speaker-photo { aspect-ratio: 1 / 1; }
.founder-card .speaker-info { padding: 1.4rem 1.5rem 1.6rem; }
.founder-card .speaker-name { font-size: 1.25rem; }
.founder-card .speaker-topic { font-size: 0.95rem; }

@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card .speaker-photo { aspect-ratio: 4 / 3; }
}

/* Subheading between founders and regular speakers */
.lineup-subheading {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-700);
  text-align: center;
  margin: 0 0 2rem;
}
.lineup-subheading::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(15,15,15,0.1);
  z-index: 0;
}
.lineup-subheading span {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0 1.2rem;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.speaker {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,15,15,0.06);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.speaker:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.speaker-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey-100);
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.95);
}
.speaker:hover .speaker-photo img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

/* Yellow corner accent on hover */
.speaker-photo::after {
  content: '';
  position: absolute;
  inset: auto -20% -20% auto;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  transform: rotate(45deg) translate(40%, 60%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.speaker:hover .speaker-photo::after {
  opacity: 1;
  transform: rotate(45deg) translate(20%, 50%);
}

/* Placeholder for speakers without photo */
.speaker-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(155deg, var(--grey-900), var(--black));
  color: var(--white);
}
.placeholder-initials {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--yellow);
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* Founder badge */
.speaker-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(245,197,24,0.45);
}

.speaker-info {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.speaker-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.speaker-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.speaker-role {
  font-size: 0.78rem;
  color: var(--grey-700);
  font-weight: 500;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.speaker-topic {
  font-size: 0.92rem;
  color: var(--grey-900);
  line-height: 1.45;
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(15,15,15,0.07);
}

/* Action buttons: LinkedIn + Webseite (always at the bottom of the card) */
.speaker-links {
  display: flex;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.7rem;
  border-radius: 100px;
  background: var(--grey-100);
  color: var(--grey-900);
  border: 1px solid rgba(15,15,15,0.06);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.sp-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sp-btn-linkedin:hover {
  background: #0A66C2;
  color: var(--white);
  border-color: #0A66C2;
  transform: translateY(-1px);
}
.sp-btn-web:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .speaker-links { flex-direction: column; gap: 0.4rem; }
}
@media (max-width: 480px) {
  .sp-btn { font-size: 0.78rem; padding: 0.5rem 0.7rem; gap: 0.35rem; }
  .sp-btn svg { width: 13px; height: 13px; }
}

@media (max-width: 480px) {
  .speaker-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .speaker-info { padding: 0.9rem; }
  .speaker-name { font-size: 0.95rem; }
  .speaker-company { font-size: 0.75rem; }
  .speaker-role { font-size: 0.68rem; }
  .speaker-topic { font-size: 0.82rem; padding-top: 0.5rem; }
  .placeholder-initials { font-size: 3rem; }
  .speaker-badge { font-size: 0.6rem; padding: 0.25rem 0.55rem; }
}

/* ============================================
   UPCOMING WEBINARS (YELLOW SECTION)
   ============================================ */
.upcoming {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--yellow-bg);
  position: relative;
  overflow: hidden;
}
.upcoming::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}
.upcoming .container { position: relative; z-index: 1; }

.upcoming-list {
  display: grid;
  gap: 0.85rem;
}

.upcoming-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.upcoming-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}

.upcoming-item-highlight {
  background: linear-gradient(135deg, var(--black) 0%, var(--grey-900) 100%);
  color: var(--white);
  border-color: var(--yellow);
}
.upcoming-item-highlight h3 { color: var(--white); }
.upcoming-item-highlight p { color: rgba(255,255,255,0.75); }
.upcoming-item-highlight .upcoming-speaker { color: var(--yellow); }
.upcoming-item-highlight .upcoming-date {
  background: var(--yellow);
  color: var(--black);
}
.upcoming-item-highlight .ud-day,
.upcoming-item-highlight .ud-month,
.upcoming-item-highlight .ud-time { color: var(--black); }
.upcoming-item-highlight .upcoming-cta {
  background: var(--yellow);
  color: var(--black);
}
.upcoming-item-highlight .upcoming-cta:hover {
  background: var(--white);
}

.upcoming-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1;
}
.ud-day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.04em;
}
.ud-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-top: 0.25rem;
}
.ud-time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.45rem;
}

.upcoming-content { min-width: 0; }
.upcoming-speaker {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.upcoming-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.upcoming-content p {
  font-size: 0.92rem;
  color: var(--grey-700);
  line-height: 1.45;
  margin: 0;
}
.upcoming-flag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.upcoming-cta {
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.upcoming-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .upcoming-item {
    grid-template-columns: 86px 1fr;
    gap: 1rem;
  }
  .upcoming-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
  }
  .ud-day { font-size: 1.4rem; }
}

/* Sub-headings within webinar sections */
.section-sub {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-700);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.section-sub-past {
  margin-top: 3rem;
  border-bottom-color: var(--grey-300);
}
.section-sub-past + .upcoming-list .upcoming-item { opacity: 0.92; }

/* Past webinar item visual differentiation */
.section-sth { background: var(--white); border-top: 1px solid rgba(15,15,15,0.05); }
.section-sth::before { display: none; }
.section-sth .section-eyebrow { color: var(--grey-700); }

.upcoming-item.past {
  opacity: 0.92;
}
.upcoming-item.past:hover {
  opacity: 1;
}
.upcoming-item.past .upcoming-date {
  background: var(--grey-900);
}
.upcoming-item.past .ud-day {
  color: var(--grey-300);
}
.upcoming-item.past .upcoming-speaker {
  color: var(--grey-700);
}

/* Steuerhelden Series Grid */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 1rem;
}
.series-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.series-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.series-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.series-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}
.series-card:hover .series-photo img {
  transform: scale(1.04);
}
.series-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--grey-900) 100%);
  color: var(--yellow);
}
.series-photo-placeholder svg {
  width: 64px;
  height: 64px;
}
.series-info {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.series-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.series-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.series-speaker {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.series-meta {
  font-size: 0.85rem;
  color: var(--grey-700);
  margin: 0 0 1rem;
  line-height: 1.45;
  flex: 1;
}
.series-link {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(15,15,15,0.08);
  width: 100%;
  transition: color 0.2s ease;
}
.series-card:hover .series-link { color: var(--yellow-dark); }

.series-note {
  text-align: center;
  margin: 2.5rem 0 0;
  font-size: 0.95rem;
  color: var(--grey-700);
}
.series-note strong { color: var(--black); }
.series-note a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* Steuerhelden Upcoming List (compact) */
.section-sub-sth {
  margin-top: 3rem;
  border-bottom-color: var(--yellow);
}
.sth-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid rgba(15,15,15,0.08);
}
.sth-item {
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.sth-item a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, padding-left 0.2s ease;
}
.sth-item a:hover {
  background: rgba(245,197,24,0.1);
  padding-left: 1.25rem;
}
.sth-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sth-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.sth-speaker {
  font-size: 0.74rem;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.sth-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.3;
}
.sth-cta {
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.sth-item a:hover .sth-cta { color: var(--red); }
.sth-empty {
  padding: 1.4rem 0.5rem;
  text-align: center;
  color: var(--grey-500);
  font-size: 0.92rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .sth-item a {
    grid-template-columns: 80px 1fr;
    gap: 0.8rem;
    padding: 0.85rem 0.5rem;
  }
  .sth-item a:hover { padding-left: 0.8rem; }
  .sth-cta {
    grid-column: 1 / -1;
    text-align: right;
    font-size: 0.78rem;
    margin-top: -0.3rem;
  }
  .sth-date { font-size: 0.85rem; }
  .sth-title { font-size: 0.95rem; }
}

/* Empty-state message for no upcoming webinars */
.upcoming-empty {
  text-align: center;
  font-size: 1.05rem;
  color: var(--grey-700);
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px dashed rgba(15,15,15,0.15);
  border-radius: var(--radius);
  margin: 0;
}

/* Recording link on past webinars */
.recording-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  padding: 0.55rem 1rem;
  background: rgba(200,16,46,0.08);
  border-radius: 100px;
  border: 1px solid rgba(200,16,46,0.25);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.recording-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
}
.upcoming-item.past:hover .recording-link {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Registration link on upcoming webinars (Zoom) */
.register-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 0.6rem 1.15rem;
  background: var(--yellow);
  border-radius: 100px;
  border: 1.5px solid var(--yellow-dark);
  box-shadow: 0 4px 12px -3px rgba(245,197,24,0.4);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.register-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-1px);
}

/* ============================================
   CLUB POSITIONING
   ============================================ */
.club {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.club::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.club h2, .club h3 { color: var(--white); }
.club-eyebrow { color: var(--yellow); }

.club-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.club-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}
.club-text strong { color: var(--white); font-weight: 700; }

.club-claim {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--yellow);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white) !important;
  line-height: 1.4;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.claim-quote { color: var(--yellow); font-size: 1.6rem; vertical-align: -0.15em; }

.club-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(6px);
}
.club-cat {
  position: absolute;
  top: -55px;
  right: -30px;
  width: 100px;
  filter: invert(1) brightness(1.5);
  opacity: 0.85;
}
.club-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-right: 90px;
}
.club-card ul { list-style: none; padding: 0; margin: 0; }
.club-card li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
}
.club-card li:last-child { border-bottom: none; }
.club-card li span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
  font-size: 0.78rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 880px) {
  .club-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.advantage {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.advantage::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.advantage:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.advantage:hover::before { border-color: var(--yellow); }

.adv-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.advantage h3 {
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.advantage p {
  color: var(--grey-700);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   PRICE STRIPE
   ============================================ */
.price-stripe {
  background: var(--black);
  color: var(--white);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.price-stripe::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 380px; height: 380px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
  pointer-events: none;
}
.price-stripe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.price-stripe-text { min-width: 0; }
.price-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.price-stripe h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.price-amount {
  color: var(--yellow);
  font-size: 1.2em;
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 0.55em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0;
}
.price-stripe-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.55;
}
.price-stripe-text p strong { color: var(--white); }

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  padding: 0.25rem 0;
}
.price-includes .check {
  flex-shrink: 0;
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .price-stripe-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .price-includes { grid-template-columns: 1fr; }
}

/* ============================================
   CTA CLOSER (light, warm, inviting)
   ============================================ */
.cta-closer {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg);
}

.cta-box {
  position: relative;
  background: var(--yellow-bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(245,197,24,0.4);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(40px);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px;
  height: 260px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(30px);
  pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }
.cta-box .section-eyebrow,
.cta-box .eyebrow-light { color: var(--red); }
.cta-box h2 {
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-box p {
  color: var(--grey-900);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

/* Price callout inside CTA — white card with yellow border */
.cta-price {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin-bottom: 1.75rem !important;
  font-size: 1rem !important;
  color: var(--black) !important;
  max-width: 560px;
  box-shadow: 0 8px 24px -8px rgba(245,197,24,0.4);
}
.cta-price strong { color: var(--red); font-weight: 800; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Override ghost-light on a light bg → make it dark outlined */
.cta-box .btn-ghost-light {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}
.cta-box .btn-ghost-light:hover {
  background: var(--black);
  color: var(--white);
}

.cta-cat {
  width: clamp(140px, 18vw, 220px);
  margin-left: auto;
  position: relative;
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 720px) {
  .cta-box { grid-template-columns: 1fr; text-align: left; }
  .cta-cat { margin: 0 auto; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo { height: 32px; margin-bottom: 0.8rem; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a, .footer-contact a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact p { color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-size: 0.85rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.footer-bottom-left a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-bottom-left a:hover { color: var(--yellow); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   SCROLL REVEAL (subtle entrance)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .speaker, .stat-card, .advantage, .upcoming-item {
    animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}


/* ============================================
   MULTI-PAGE: PAGE HEROES (sub-pages)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: var(--yellow-bg);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 1rem;
  max-width: 800px;
}
.page-hero h1 .accent {
  color: var(--red);
  position: relative;
}
.page-hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.25em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 2px;
}
.page-hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--grey-700);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 0 2rem;
}
.page-hero-lede strong { color: var(--black); font-weight: 700; }
.page-hero .hero-cta { margin-bottom: 0; }

.page-hero-yellow {
  background: linear-gradient(155deg, var(--yellow-bg) 0%, var(--bg) 70%);
}
.page-hero-yellow::before { display: none; }

/* ============================================
   SPEAKER STRIP (Home social proof)
   ============================================ */
.speaker-strip {
  padding: 2rem 0 3.5rem;
  background: var(--bg);
}
.strip-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-500);
  margin: 0 0 1.5rem;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--grey-700);
  transition: transform 0.25s ease, color 0.2s ease;
}
.strip-item img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px -2px rgba(15,15,15,0.15);
  transition: border-color 0.2s ease;
}
.strip-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.strip-item:hover { transform: translateY(-3px); color: var(--red); }
.strip-item:hover img { border-color: var(--yellow); }
.strip-cta {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.95rem;
}
.strip-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
@media (max-width: 880px) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-item img { width: 60px; height: 60px; }
}

/* ============================================
   LINEAGE / SCHWESTER-INITIATIVE DE
   ============================================ */
.lineage {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--yellow-bg);
  position: relative;
  overflow: hidden;
}
.lineage::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
  pointer-events: none;
}
.lineage .container { position: relative; z-index: 1; }
.lineage h2 {
  max-width: 720px;
  margin-bottom: 2rem;
}
.lineage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.lineage-stat {
  text-align: left;
}
.lineage-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.lineage-lbl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}
.lineage-sub {
  font-size: 0.85rem;
  color: var(--grey-700);
  font-weight: 500;
  line-height: 1.25;
}
.lineage-text {
  max-width: 820px;
}
.lineage-text p {
  color: var(--grey-900);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 0.9rem;
}
.lineage-text p:last-child { margin-bottom: 0; }
.lineage-text strong { color: var(--black); font-weight: 700; }
.lineage-text a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}
@media (max-width: 720px) {
  .lineage-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Testimonial profile link (XING / LinkedIn etc) */
.t-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}
.t-link:hover { color: var(--yellow-dark); }

/* ============================================
   SCHMERZPUNKT
   ============================================ */
.pain {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--white);
  border-top: 1px solid rgba(15,15,15,0.05);
  border-bottom: 1px solid rgba(15,15,15,0.05);
}
.pain h2 {
  max-width: 880px;
  margin-bottom: 2.5rem;
}
.pain h2 .accent-italic {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-bottom: 2rem;
}
.pain-item {
  padding: 1.75rem 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.05);
}
.pain-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.pain-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.pain-item p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.pain-close {
  text-align: center;
  font-size: 1.15rem;
  color: var(--grey-900);
  margin: 2rem 0 0;
}
.pain-close strong { color: var(--red); }

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.pillar-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.06);
  border-top: 3px solid var(--yellow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.pillar-card p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   PRICING CARD (standalone)
   ============================================ */
.pricing-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  box-shadow: 0 24px 50px -12px rgba(245,197,24,0.3);
}
.pricing-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-period {
  font-size: 1.1rem;
  color: var(--grey-700);
  font-weight: 600;
}
.pricing-sub {
  font-size: 1.05rem;
  color: var(--grey-700);
  margin-bottom: 2rem;
}
.pricing-sub strong { color: var(--black); }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  text-align: left;
  max-width: 380px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.98rem;
  color: var(--grey-900);
  border-bottom: 1px solid rgba(15,15,15,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  color: var(--yellow-dark);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-cta { width: 100%; max-width: 380px; }
.pricing-fineprint {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ============================================
   SIGNUP / PIPEDRIVE FORM
   ============================================ */
.signup-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-warm);
  scroll-margin-top: 80px;
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.signup-text p {
  color: var(--grey-700);
  font-size: 1.05rem;
  line-height: 1.6;
}
.signup-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.signup-bullets li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-900);
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.signup-bullets li:last-child { border-bottom: none; }
.bullet-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.signup-trust {
  font-size: 0.92rem;
  color: var(--grey-700);
  background: rgba(255,255,255,0.6);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--yellow);
  margin-top: 1.5rem;
}
.signup-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(15,15,15,0.08);
  box-shadow: var(--shadow);
  min-height: 400px;
}
.pipedriveWebForms { width: 100%; }
@media (max-width: 880px) {
  .signup-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
  text-align: center;
}
.faq-section h2,
.faq-section .section-lede {
  margin-left: auto;
  margin-right: auto;
}
.faq-section .section-lede { max-width: 720px; }
.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--yellow); }
.faq-item[open] {
  border-color: var(--yellow);
  box-shadow: 0 8px 20px -8px rgba(245,197,24,0.25);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin: 0;
}
.faq-item p a { color: var(--red); border-bottom: 1px solid currentColor; }
.faq-more {
  text-align: center;
  margin-top: 2rem;
}
.faq-more a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-warm);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}
.testimonial {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.t-quote {
  font-size: 1rem;
  color: var(--grey-900);
  line-height: 1.55;
  margin: 0.5rem 0 1.5rem;
  font-style: italic;
  flex: 1;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15,15,15,0.08);
}
.t-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  background: var(--grey-100);
}
.t-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--grey-900), var(--black));
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
}
.t-meta { min-width: 0; }
.t-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.t-firm {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
}

/* ============================================
   FORMAT-INFO (webinare page)
   ============================================ */
.format-info {
  padding: 3rem 0 4rem;
  background: var(--white);
  border-top: 1px solid rgba(15,15,15,0.05);
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.format-item {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.05);
  text-align: center;
}
.format-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.format-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.format-item p {
  color: var(--grey-700);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   THEMEN MORE LINK
   ============================================ */
.themen-more {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--grey-700);
}
.themen-more a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}

/* ============================================
   INDEPENDENCE (Unabhängigkeit)
   ============================================ */
.independence {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.independence::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.independence .container { position: relative; z-index: 1; }
.independence h2 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.indep-eyebrow { color: var(--yellow); }
.indep-accent { color: var(--yellow); }
.indep-strike {
  position: relative;
  white-space: nowrap;
}
.indep-strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 5px;
  background: var(--red);
  transform: rotate(-3deg);
  border-radius: 3px;
}

.indep-lede {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 0 3rem;
}
.indep-lede strong { color: var(--white); font-weight: 700; }

.independence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.indep-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  backdrop-filter: blur(6px);
}
.indep-not { border-left: 3px solid var(--red); }
.indep-are { border-left: 3px solid var(--yellow); }

.indep-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.indep-not h3 strong { color: var(--red); font-weight: 900; }
.indep-are h3 strong { color: var(--yellow); font-weight: 900; }

.indep-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.indep-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}
.indep-card li:last-child { border-bottom: none; }
.indep-card .x {
  color: var(--red);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.3;
}
.indep-card .tick {
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.3;
}

@media (max-width: 720px) {
  .independence-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ÜBER UNS (Founders + Partners + Network)
   ============================================ */
.ueber-uns {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(15,15,15,0.05);
}
.ueber-uns h2 { max-width: 820px; }

.founders-row,
.partners-row {
  margin: 2.5rem 0;
}
.founders-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--yellow);
}

.founders-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.founder-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.08);
  border-left: 4px solid var(--yellow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.founder-mini img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

/* Larger variants for prominent founders block */
.founders-cards-lg {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.founders-cards-lg .founder-mini {
  padding: 1.4rem 1.5rem;
  gap: 1.2rem;
}
.founders-cards-lg .founder-mini img {
  width: 92px; height: 92px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px -4px rgba(15,15,15,0.18);
}
.founders-cards-lg .founder-mini-name {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.founders-cards-lg .founder-mini-role {
  font-size: 0.9rem;
}

.partners-cards-lg {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.partners-cards-lg .partner-mini {
  padding: 1.05rem 1.2rem;
  gap: 1rem;
}
.partners-cards-lg .partner-mini img {
  width: 64px; height: 64px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px -3px rgba(15,15,15,0.15);
}
.partners-cards-lg .partner-mini-name {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.partners-cards-lg .partner-mini-role {
  font-size: 0.82rem;
}
.founder-mini-info { min-width: 0; }
.founder-mini-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.founder-mini-role {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
}

.partners-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.partner-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15,15,15,0.08);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.partner-mini:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}
.partner-mini img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}
.partner-mini-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.partner-mini-role {
  font-size: 0.74rem;
  color: var(--grey-700);
  font-weight: 500;
}

.ueber-uns-network {
  margin: 2.5rem 0 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--yellow-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--yellow);
  font-size: 1.02rem;
  color: var(--grey-900);
}
.ueber-uns-network strong { color: var(--black); font-weight: 700; }

/* Marquee row — wachsendes Netzwerk */
.marquee-row { margin: 2.75rem 0 1rem; }

.speaker-marquee {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.speaker-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 75s linear infinite;
}
.speaker-marquee:hover .speaker-marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--grey-700);
  min-width: 96px;
  max-width: 110px;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.marquee-item img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px -2px rgba(15,15,15,0.15);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.marquee-item span {
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.marquee-item:hover { color: var(--red); transform: translateY(-2px); }
.marquee-item:hover img { border-color: var(--yellow); }

@media (prefers-reduced-motion: reduce) {
  .speaker-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

.ueber-uns-cta {
  text-align: right;
  margin: 0;
  font-size: 0.95rem;
}
.ueber-uns-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}

/* ============================================
   SIGNUP HERO (Form integrated in hero)
   ============================================ */
.page-hero-with-form { padding-bottom: clamp(3rem, 5vw, 4rem); }
.signup-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.signup-hero-text h1 { margin-bottom: 1.2rem; }
.signup-hero-text .page-hero-lede { margin-bottom: 1.5rem; }

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.98rem;
  color: var(--grey-900);
  font-weight: 500;
}
.check-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}

.signup-hero-form {
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.08);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 24px 50px -12px rgba(15,15,15,0.12);
  position: sticky;
  top: 90px;
}
.signup-hero-form-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--yellow);
}

@media (max-width: 880px) {
  .signup-hero-grid { grid-template-columns: 1fr; }
  .signup-hero-form { position: static; }
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--bg);
}
.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 4rem;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.login-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.login-card-team {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--purple-soft) 0%, var(--white) 25%);
}
.login-card-leader {
  border-color: var(--yellow);
  background: linear-gradient(180deg, var(--yellow-bg) 0%, var(--white) 25%);
}
.login-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.login-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}
.login-card-team .login-tag { color: var(--purple); }
.login-card-leader .login-tag { color: var(--yellow-dark); }

.login-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.8rem;
}
.login-lede {
  color: var(--grey-900);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.login-lede strong { color: var(--black); }

.login-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.login-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--grey-900);
}

.login-cta {
  width: 100%;
  margin-bottom: 0.7rem;
}

.login-fineprint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--grey-500);
  text-align: center;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.login-explain {
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 2rem 2.25rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
}
.login-explain h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.login-explain p {
  color: var(--grey-700);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.8rem;
}
.login-explain p:last-child { margin-bottom: 0; }
.login-explain strong { color: var(--black); }

.login-help {
  text-align: center;
  font-size: 0.95rem;
  color: var(--grey-700);
}
.login-help p { margin: 0.4rem 0; }
.login-help a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 720px) {
  .login-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.legal-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--bg);
}
.legal-section .container {
  max-width: 800px;
}
.legal-section h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--black);
  margin: 2.2rem 0 0.8rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--yellow);
  display: inline-block;
  padding-right: 1rem;
}
.legal-section h2:first-of-type { margin-top: 0; }
.legal-section h3 {
  font-size: 1.05rem;
  color: var(--black);
  margin: 1.4rem 0 0.5rem;
}
.legal-section p {
  color: var(--grey-900);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 0.9rem;
}
.legal-section p strong { color: var(--black); font-weight: 700; }
.legal-section a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}
.legal-section a:hover { color: var(--yellow-dark); }
.legal-section ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  color: var(--grey-900);
  font-size: 0.98rem;
  line-height: 1.65;
}
.legal-section li { margin-bottom: 0.4rem; }
.legal-section li strong { color: var(--black); }
.legal-meta {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--grey-500);
  font-style: italic;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -12px 40px -8px rgba(0,0,0,0.25);
  animation: cookie-slide-up 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
}
.cookie-text { min-width: 0; }
.cookie-text h3 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 0.3rem;
  letter-spacing: 0;
}
.cookie-text p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 720px;
}
.cookie-text a {
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-cookie-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-cookie-primary:hover {
  background: var(--yellow-dark);
  color: var(--white);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}
.btn-cookie-secondary {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.3);
}
.btn-cookie-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
  }
  .cookie-actions { justify-content: stretch; }
  .btn-cookie { flex: 1; }
}
