/* Sektionspolster: nur auf der Teams-LP enger als global (8vw → 5vw).
   Spart rund 900 px Höhe, ohne einen einzigen Inhalt zu streichen.
   Die Startseite bleibt unberührt (globale Variable in styles.css). */
.sturmfest-lp-teams { --section-padding: clamp(3rem, 5vw, 5rem); }

/* ============================================================
   teams.css – Sturmfest für Teams (B2B-Landingpage)
   Erbt alle Basis-Stile von sturmfest-lp/styles.css.
   Hier nur B2B-spezifische Erweiterungen & Overrides.
   ============================================================ */

/* ── NAV-OVERRIDE: B2B-CTA ──────────────────────────────── */
.sturmfest-lp-teams .site-nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
}
.sturmfest-lp-teams .site-nav-links .nav-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ── HERO B2B ────────────────────────────────────────────── */
.hero-b2b {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  color: var(--on-dark);
  padding: var(--section-padding) 1.5rem;
}
.hero-b2b .hero-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-b2b .hero-inner { max-width: 600px; }
.hero-b2b .eyebrow {
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-b2b h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--on-dark);
  margin-bottom: 0.75rem;
}
.hero-b2b .hero-subtitle {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--on-dark-muted);
  margin-bottom: 1rem;
  font-weight: 400;
  font-style: italic;
}
.hero-b2b .hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--on-dark-muted);
  margin-bottom: 2rem;
}
.hero-b2b .hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-right: 1rem;
  margin-bottom: 0.75rem;
}
.hero-b2b .hero-cta:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.hero-b2b .hero-cta-secondary {
  display: inline-block;
  color: var(--on-dark-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(242,237,227,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.hero-b2b .hero-cta-secondary:hover { color: var(--on-dark); border-color: var(--on-dark); }

/* Hero-Portrait (ersetzt das Song-Video – das sitzt jetzt beim USP-Block) */
.hero-portrait {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin-left: auto;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
@media (max-width: 900px) {
  .hero-portrait { max-width: 320px; margin: 0 auto; }
}

/* Song-Video im USP-Block – belegt „Live mit Gitarre, nicht PowerPoint“ */
.usp-video {
  max-width: 720px;
  margin: 3rem auto 0;
}
.usp-video-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(46, 74, 98, 0.18);
  aspect-ratio: 16 / 9;
  background: var(--storm);
}
.usp-video-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.usp-video-caption {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .hero-b2b .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-b2b .hero-inner { max-width: 100%; }
}

/* ── SECTION PADDING UTILITY ─────────────────────────────── */
.section-pad { padding: var(--section-padding) 1.5rem; }
.container-b2b { max-width: var(--content-max); margin: 0 auto; }

/* ── SECTION LABELS / EYEBROWS ──────────────────────────── */
.b2b-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.b2b-section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.b2b-section-title.on-dark { color: var(--on-dark); }

/* ── SECTION 2: TAB-SWITCHER (Vorher/Nachher) ────────────── */
.vs-tabs-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.vs-tabs-section .b2b-section-title { margin-bottom: 2rem; }

.vs-tabs-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.vs-tab-buttons {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  margin-bottom: 2rem;
}
.vs-tab-btn {
  flex: 1;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--bg-card);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.vs-tab-btn.active[data-tab="bad"] {
  background: #FFF3F3;
  color: #C0392B;
}
.vs-tab-btn.active[data-tab="good"] {
  background: #F0F7F0;
  color: var(--secondary);
}
.vs-tab-btn:not(.active):hover { background: var(--bg-warm); }

.vs-tab-pane { display: none; }
.vs-tab-pane.active { display: block; }

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.vs-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: var(--bg);
}
.vs-tab-pane[data-pane="bad"] .vs-list li {
  background: #FFF8F8;
  color: var(--text);
}
.vs-tab-pane[data-pane="good"] .vs-list li {
  background: #F4FBF4;
  color: var(--text);
}
.vs-list li .icon { flex-shrink: 0; font-size: 1.1rem; }

/* ── SECTION 3: PROBLEM (3 Spalten) ─────────────────────── */
.problem-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
  border-top: 1px solid var(--border);
}
.problem-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
}
.problem-card .problem-number {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.problem-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.problem-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.problem-footnote {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-faint);
  font-style: italic;
}
@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 4: WAS IST STURMFEST ───────────────────────── */
.what-b2b-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.what-b2b-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.what-b2b-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.stats-b2b {
  display: flex;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.stat-b2b { text-align: center; }
.stat-b2b .stat-number {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  display: block;
}
.stat-b2b .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── SECTION 5: USP (3 Spalten) ─────────────────────────── */
.usp-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.usp-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.usp-card {
  text-align: left;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.usp-icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.usp-icon svg {
  width: 100%; height: 100%; display: block;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.usp-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.usp-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 6: SELBST-CHECK ─────────────────────────────── */
.selfcheck-b2b-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.selfcheck-b2b-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(46,74,98,0.07);
}
.selfcheck-b2b-sub {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.selfcheck-b2b-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.selfcheck-b2b-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--text);
  user-select: none;
}
.selfcheck-b2b-list li:hover { background: var(--bg); border-color: var(--border-strong); }
.selfcheck-b2b-list li.checked {
  border-color: var(--secondary);
  background: #F4FBF4;
}
.selfcheck-b2b-list li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--secondary);
  cursor: pointer;
}

.selfcheck-b2b-reveal {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  text-align: center;
}
.selfcheck-b2b-reveal.visible { display: block; }
.selfcheck-b2b-reveal p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.selfcheck-b2b-reveal .selfcheck-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.2s;
}
.selfcheck-b2b-reveal .selfcheck-cta-btn:hover { background: var(--accent-hover); color: #fff; }

/* ── SECTION 7: ABLAUF ───────────────────────────────────── */
.ablauf-section {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  color: var(--on-dark);
  padding: var(--section-padding) 1.5rem;
}
.ablauf-steps {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ablauf-step {
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.ablauf-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.ablauf-step h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 0.5rem;
}
.ablauf-step p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--on-dark-muted);
}
@media (max-width: 900px) {
  .ablauf-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ablauf-steps { grid-template-columns: 1fr; }
}

/* ── SECTION 8: STEUERVORTEIL ────────────────────────────── */
.tax-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.tax-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  color: var(--on-dark);
  border-radius: 18px;
  padding: 3rem 3rem 2.5rem;
  box-shadow: 0 12px 48px rgba(46,74,98,0.22);
  text-align: center;
}
.tax-box h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 1rem;
}
.tax-box h2 .marker {
  color: var(--accent);
  font-style: italic;
}
.tax-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--on-dark-muted);
  margin-bottom: 1rem;
}
.tax-box .tax-footnote {
  font-size: 0.8rem;
  color: rgba(180,188,197,0.8);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: left;
}
@media (max-width: 600px) {
  .tax-box { padding: 2rem 1.5rem 1.75rem; }
}

/* ── SECTION 9: PAKETE ───────────────────────────────────── */
.pakete-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.pakete-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.paket-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--bg-card);
  position: relative;
}
.paket-card.featured {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(200,134,10,0.15);
}
.pakete-grid { padding-top: 12px; }
.paket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--storm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.28rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(200,134,10,0.28);
}
.paket-card h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.paket-card .paket-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.paket-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.paket-features li {
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  line-height: 1.5;
}
.paket-features li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.paket-price {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.paket-example {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}
.paket-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.2s;
}
.paket-cta:hover { background: var(--accent-hover); color: #fff; }
.paket-cta.secondary-cta {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.paket-cta.secondary-cta:hover { background: var(--primary); color: #fff; }

.pakete-volumen {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background: var(--bg);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
}
.pakete-volumen h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pakete-volumen table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.pakete-volumen th {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.pakete-volumen td {
  padding: 0.4rem 0.5rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pakete-volumen tr:last-child td { border-bottom: none; }

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

/* ── SECTION 10: ÜBER NILS ───────────────────────────────── */
.about-b2b-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.about-b2b-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-b2b-grid .about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(46,74,98,0.15);
}
.about-b2b-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.about-b2b-grid h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.about-b2b-grid .about-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.about-b2b-grid p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-referenzen {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.about-referenzen .ref-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}
.about-referenzen p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .about-b2b-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-b2b-grid .about-image { order: -1; }
}

/* ── SECTION 11: FAQ ─────────────────────────────────────── */
.faq-b2b-section {
  background: var(--bg);
  padding: var(--section-padding) 1.5rem;
}
.faq-b2b-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-b2b-item {
  border-bottom: 1px solid var(--border);
}
.faq-b2b-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-b2b-question:hover { color: var(--primary); }
.faq-b2b-icon {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-b2b-question[aria-expanded="true"] .faq-b2b-icon { transform: rotate(45deg); }
.faq-b2b-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.faq-b2b-answer.open { display: block; }

/* ── SECTION 12: FINALE CTA ──────────────────────────────── */
.final-b2b {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  color: var(--on-dark);
  padding: var(--section-padding) 1.5rem;
  text-align: center;
}
.final-b2b h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 1rem;
}
.final-b2b .final-b2b-sub {
  font-size: 1.05rem;
  color: var(--on-dark-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.final-b2b-cta-wrap {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.final-b2b-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1.1rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.final-b2b-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); color: #fff; }

/* Kontaktformular */
.b2b-form {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}
.b2b-form-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 1.25rem;
  text-align: center;
}
.b2b-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.b2b-form .form-field {
  margin-bottom: 0.75rem;
}
.b2b-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}
.b2b-form input,
.b2b-form select,
.b2b-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--on-dark);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.b2b-form input::placeholder,
.b2b-form textarea::placeholder { color: rgba(180,188,197,0.6); }
.b2b-form input:focus,
.b2b-form select:focus,
.b2b-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}
.b2b-form select option { color: var(--text); background: #fff; }
.b2b-form textarea { resize: vertical; min-height: 90px; }
.b2b-form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.b2b-form-submit:hover { background: var(--accent-hover); }
.b2b-form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--on-dark);
  font-size: 1rem;
  line-height: 1.6;
}
.b2b-form-error {
  display: none;
  color: #FFB4B4;
  font-size: 0.87rem;
  margin-top: 0.5rem;
  text-align: center;
}
.b2b-form-legal {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.b2b-form-legal a { color: var(--on-dark-muted); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer-b2b {
  background: var(--storm);
  color: var(--on-dark-muted);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.87rem;
}
.site-footer-b2b a {
  color: var(--on-dark-muted);
  text-decoration: none;
  margin: 0 0.5rem;
}
.site-footer-b2b a:hover { color: var(--on-dark); }
.site-footer-b2b-links { margin-bottom: 0.5rem; }

/* ============================================================
   ANGLEICHUNG AN B2C-LP (styles.css)
   Buttons: Bernstein-BG + dunkler --storm-Text + 6px Radius.
   Shine-Sweep auf Konversions-Buttons (nutzt sfShine aus styles.css).
   ============================================================ */

/* Alle Bernstein-CTAs: dunkler Text statt weiß, B2C-Radius 6px */
.sturmfest-lp-teams .hero-b2b .hero-cta,
.sturmfest-lp-teams .paket-cta:not(.secondary-cta),
.sturmfest-lp-teams .final-b2b-btn-primary,
.sturmfest-lp-teams .b2b-form-submit,
.sturmfest-lp-teams .selfcheck-b2b-reveal .selfcheck-cta-btn,
.sturmfest-lp-teams .site-nav-links .nav-cta {
  color: var(--storm) !important;
  border-radius: 6px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sturmfest-lp-teams .hero-b2b .hero-cta:hover,
.sturmfest-lp-teams .paket-cta:not(.secondary-cta):hover,
.sturmfest-lp-teams .final-b2b-btn-primary:hover,
.sturmfest-lp-teams .b2b-form-submit:hover,
.sturmfest-lp-teams .selfcheck-b2b-reveal .selfcheck-cta-btn:hover,
.sturmfest-lp-teams .site-nav-links .nav-cta:hover {
  color: var(--storm) !important;
}

/* Glanz-Sweep – identisch zu styles.css, auf die Konversions-Buttons */
.sturmfest-lp-teams .hero-b2b .hero-cta,
.sturmfest-lp-teams .paket-cta:not(.secondary-cta),
.sturmfest-lp-teams .final-b2b-btn-primary,
.sturmfest-lp-teams .b2b-form-submit {
  position: relative;
  overflow: hidden;
}
.sturmfest-lp-teams .hero-b2b .hero-cta::after,
.sturmfest-lp-teams .paket-cta:not(.secondary-cta)::after,
.sturmfest-lp-teams .final-b2b-btn-primary::after,
.sturmfest-lp-teams .b2b-form-submit::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform: translateX(-180%) skewX(-20deg);
  animation: sfShine 6s ease-in-out 2s infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .sturmfest-lp-teams .hero-b2b .hero-cta::after,
  .sturmfest-lp-teams .paket-cta:not(.secondary-cta)::after,
  .sturmfest-lp-teams .final-b2b-btn-primary::after,
  .sturmfest-lp-teams .b2b-form-submit::after { animation: none; }
}


/* ── REFERENZ-STREIFEN (unter der Kassen-Leiste) ─────────── */
.ref-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 26px 1.5rem 30px;
  text-align: center;
}
.ref-bar-label {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px;
}
.ref-bar-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.ref-bar-names {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
  line-height: 1.9;
}
@media (max-width: 720px) {
  .ref-bar-label { font-size: 1.05rem; }
  .ref-bar-names { letter-spacing: 0.08em; }
}

/* Kassen-Leiste: hier nur Anzeige, nicht klickbar (kein Rechner auf dieser Seite) */
.sturmfest-lp-teams .kassen-logo { cursor: default; }
.sturmfest-lp-teams .kassen-logo:hover { transform: none; opacity: 1; }
@media (max-width: 900px) {
  .sturmfest-lp-teams .kassen-logos { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
@media (max-width: 480px) {
  .sturmfest-lp-teams .kassen-logos { grid-template-columns: repeat(3, 1fr); }
}


/* ── Hero-Notiz unter dem CTA (v2, 2026-09-15) ─────────── */
.hero-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  opacity: 0.85;
}
/* Wiedererkennungs-Karten ohne Überschrift: Text etwas größer */
#kennst-headline ~ .problem-grid .problem-card p {
  font-size: 1.02rem;
  color: var(--text);
}
.problem-footnote a { color: var(--accent); }

/* ── KONTRASTANKER (2026-09-15) ─────────────────────────── */
.anker-section { background: var(--bg-alt, var(--bg)); padding: var(--section-padding) 1.5rem; border-top: 1px solid var(--border); }
.anker-input { max-width: 560px; margin: 2.5rem auto 3rem; text-align: center; }
.anker-input label { display: block; font-size: 1rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.anker-input input[type=range] { width: 100%; accent-color: var(--accent); height: 6px; cursor: pointer; }
.anker-input output { display: block; margin-top: 1rem; font-family: var(--font-headline); font-size: 1.35rem; color: var(--text); }
.anker-input output strong { color: var(--accent); font-weight: 400; }
.anker-grid { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.anker-card { background: var(--bg-card); border-radius: 14px; padding: 2rem 1.75rem; border: 1px solid var(--border); display: flex; flex-direction: column; }
.anker-card-highlight { border-color: var(--accent); }
.anker-label { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.anker-zahl { font-family: var(--font-headline); font-size: 2.4rem; font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 0.9rem; font-variant-numeric: tabular-nums; }
.anker-card-highlight .anker-zahl { color: var(--accent); }
.anker-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
.anker-fazit { max-width: 700px; margin: 2.5rem auto 0; text-align: center; font-family: var(--font-headline); font-size: 1.25rem; line-height: 1.5; color: var(--text); }
.anker-fussnote { max-width: 700px; margin: 1.5rem auto 0; text-align: center; font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }
.anker-fussnote a { color: var(--accent); }
.anker-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 860px) { .anker-grid { grid-template-columns: 1fr; } .anker-zahl { font-size: 2rem; } }
