/* ===== JOBBI SHARED STYLES ===== */
/* Extracted from index.html — shared across all pages */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #060a16;
  color: #e8eaf0;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}
:root {
  --navy: #080b1a;
  --accent: #e8862d;
  --accent-hover: #f59942;
  --text: #e8eaf0;
  --text-muted: #8892a8;
  --card-bg: rgba(10,15,35,0.55);
  --card-border: rgba(255,255,255,0.1);
  --card-hover: rgba(15,20,45,0.65);
}

/* ===== SPACE BACKGROUND ===== */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.space-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% 30%, rgba(60,30,120,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 600px 800px at 85% 60%, rgba(20,50,120,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 50% 80%, rgba(80,40,100,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 900px 400px at 70% 15%, rgba(15,30,80,0.3) 0%, transparent 70%),
    #060a16;
}
.stars-1 {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 5% 8%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 12% 25%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 18% 52%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 25% 78%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 32% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 38% 42%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 68%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 52% 5%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 58% 88%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 65% 35%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 72% 62%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 85% 45%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 92% 72%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 97% 92%, rgba(255,255,255,0.3), transparent);
  background-size: 200px 200px;
}
.stars-2 {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 22% 68%, rgba(200,210,255,0.6), transparent),
    radial-gradient(2px 2px at 35% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 48% 85%, rgba(220,200,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 62% 22%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 75% 55%, rgba(200,220,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 88% 38%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 95% 78%, rgba(220,210,255,0.5), transparent);
  background-size: 350px 350px;
}
.stars-3 {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 45%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2.5px 2.5px at 42% 20%, rgba(255,240,200,0.8), transparent),
    radial-gradient(2px 2px at 68% 72%, rgba(200,220,255,0.9), transparent),
    radial-gradient(2.5px 2.5px at 88% 15%, rgba(255,255,255,0.7), transparent);
  background-size: 500px 500px;
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { 0% { opacity: 0.6; } 100% { opacity: 1; } }

/* ===== NAVIGATION ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  background: rgba(6,10,22,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.main-nav.nav-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-login-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-login-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(6,10,22,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child {
  border-bottom: none;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-login-btn {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
}

/* ===== SUB-NAVIGATION (Section Shortcuts) ===== */
.sub-nav {
  position: sticky;
  top: 64px;
  z-index: 99;
  background: rgba(6,10,22,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.sub-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-inner a {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, box-shadow 0.2s;
  border-bottom: 2px solid transparent;
}
.sub-nav-inner a:hover {
  color: rgba(255,255,255,0.85);
}
.sub-nav-inner a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 768px) {
  .sub-nav { top: 64px; }
  .sub-nav-inner { padding: 0 16px; gap: 0; }
  .sub-nav-inner a { padding: 10px 12px; font-size: 12px; }
}

/* ===== LAYOUT ===== */
section, footer, .section-divider { position: relative; z-index: 1; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ===== SPLASH SECTION ===== */
.splash-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
.splash-panels {
  display: flex;
  flex: 1;
  width: 100%;
  position: relative;
}
.splash-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px 60px;
  text-decoration: none;
  cursor: pointer;
}
.splash-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease;
}
.splash-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.splash-panel:hover .splash-panel-bg {
  transform: scale(1.03);
}
.splash-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6,10,22,0.6) 0%, rgba(6,10,22,0.15) 40%, rgba(6,10,22,0.1) 100%);
}
.splash-panel:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 5;
}
.splash-panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.splash-panel-btn {
  display: block;
  padding: 20px 40px;
  border-radius: 50px;
  background: rgba(10,12,25,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.splash-panel-btn:hover {
  background: rgba(10,12,25,0.8);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.splash-panel-btn-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.splash-panel-btn-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.splash-panel-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.splash-panel-link:hover {
  color: var(--accent);
}
.splash-panel-desc {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 440px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.splash-panel:hover .splash-panel-desc {
  opacity: 1;
  transform: translateY(0);
}
.splash-panel-desc-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.splash-panel-desc-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.splash-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding-top: 80px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.splash-logo {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}
.splash-headline {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.splash-footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(6,10,22,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.splash-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.splash-footer a:hover {
  color: rgba(255,255,255,0.85);
}
.scroll-hint {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 30;
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
}
.scroll-hint span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-hint .arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .splash-section { height: auto; min-height: 100vh; min-height: 100dvh; }
  .splash-panels { flex-direction: column; }
  .splash-panel { min-height: 45vh; padding: 0 24px 32px; }
  .splash-panel:first-child::after { display: none; }
  .splash-center {
    position: relative;
    padding: 80px 20px 24px;
    pointer-events: none;
  }
  .splash-headline { font-size: 24px; }
  .splash-logo { width: 50px; margin-bottom: 12px; }
  .splash-panel-desc { opacity: 1; transform: none; margin-bottom: 16px; }
  .splash-panel-desc-title { font-size: 16px; }
  .splash-panel-desc-text { font-size: 13px; line-height: 1.5; }
  .splash-panel-btn { padding: 14px 24px; }
  .splash-panel-btn-title { font-size: 15px; }
  .splash-panel-btn-sub { font-size: 11px; }
  .splash-panel-link { font-size: 13px; }
  .splash-footer { flex-direction: column; gap: 8px; text-align: center; padding: 16px; }
  .splash-footer a { margin-left: 12px; }
  .scroll-hint { display: none; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,134,45,0.25), transparent);
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
.s-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.s-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.s-text {
  font-size: 16px;
  color: #b0b8cc;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 10px;
  margin-bottom: 8px;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: rgba(232,134,45,0.1); }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover { background: var(--card-hover); border-color: rgba(232,134,45,0.2); }

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 50px 24px;
  background: transparent;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { padding: 20px 10px; }
.stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ===== PATH SECTION ===== */
.path-section { padding: 70px 0 60px; background: transparent; text-align: center; }
.path-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path-card { padding: 36px 28px; text-align: left; }
.path-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.path-card:hover::after { opacity: 1; }
.pc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(232,134,45,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.path-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.path-card .desc { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.7; }
.trust-list { list-style: none; margin-bottom: 26px; }
.trust-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #b8c0d4; margin-bottom: 10px; line-height: 1.5;
}
.trust-list li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; }
.check-svg { stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== WAS IST JOBBI ===== */
.about-section { padding: 80px 0; background: transparent; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 20px; font-weight: 500; }
.about-text p { font-size: 16px; color: #b0b8cc; line-height: 1.8; margin-bottom: 16px; }
.about-text .highlight { color: var(--accent); font-weight: 500; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-visual-card {
  padding: 24px 18px; text-align: center; border-radius: 12px;
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
}
.about-visual-card .av-num { font-size: 28px; font-weight: 700; color: var(--accent); }
.about-visual-card .av-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== CHANNELS ===== */
.channels-section { padding: 80px 0; background: transparent; text-align: center; }
.channels-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.channel-card { padding: 32px 22px; border-radius: 12px; }
.channel-card-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.channel-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,10,22,0.15) 0%,
    rgba(6,10,22,0.02) 40%,
    rgba(6,10,22,0.02) 60%,
    rgba(6,10,22,0.2) 100%
  );
  pointer-events: none;
  border-radius: 10px;
}
.channel-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: saturate(0.95) brightness(0.95);
  transition: filter 0.3s, transform 0.3s;
}
.channel-card:hover .channel-card-img {
  filter: saturate(1) brightness(1.0);
  transform: scale(1.03);
}
.ch-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(232,134,45,0.08);
  border: 1px solid rgba(232,134,45,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ch-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.channel-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.channel-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== NULL ZUSATZAUFWAND ===== */
.noeffort-section { padding: 80px 0; background: transparent; text-align: center; }
.noeffort-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 40px; }
.noeffort-card { padding: 30px 24px; border-radius: 12px; text-align: left; }
.noeffort-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,134,45,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.noeffort-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.noeffort-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.noeffort-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== BUNDLING SECTION ===== */
.bundling-section { padding: 80px 0; background: transparent; text-align: center; }
.bundling-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 50px auto 50px;
  max-width: 800px;
  flex-wrap: wrap;
}
.bundling-col {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bundling-col-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bundling-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
}
.bundling-hub {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,134,45,0.2), rgba(232,134,45,0.05));
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.bundling-hub img {
  width: 50px;
  height: 50px;
}
.bundling-hub-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}
.bundling-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  min-width: 60px;
}
.bundling-arrow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--card-border), var(--accent));
}
.bundling-arrow-head {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--accent);
}
.bundling-school {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232,134,45,0.08);
  border: 1px solid rgba(232,134,45,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.bundling-school svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.bundling-school-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.bundling-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.bundling-benefit-card { padding: 28px 22px; border-radius: 12px; text-align: left; }
.bundling-benefit-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.bundling-benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== VORTEILE (Benefit Grid) ===== */
.benefits-section { padding: 80px 0; background: transparent; text-align: center; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.benefit-card { padding: 30px 26px; text-align: left; border-radius: 12px; }
.benefit-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.benefit-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(232,134,45,0.12);
  color: var(--accent); font-size: 15px; font-weight: 600; margin-bottom: 14px;
}

/* ===== BERUFSORIENTIERUNG ===== */
.berufs-section { padding: 80px 0; background: transparent; }
.berufs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.berufs-text h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 20px; font-weight: 500; }
.berufs-text p { font-size: 16px; color: #b0b8cc; line-height: 1.8; margin-bottom: 20px; }
.berufs-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.berufs-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--card-border);
}
.berufs-badge-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(232,134,45,0.1);
  display: flex; align-items: center; justify-content: center;
}
.berufs-badge-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.berufs-badge span { font-size: 15px; color: var(--text); }
.berufs-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.berufs-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,10,22,0.15) 0%,
    rgba(6,10,22,0.02) 50%,
    rgba(6,10,22,0.15) 100%
  );
  pointer-events: none;
  border-radius: 14px;
}
.berufs-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 420px;
  display: block;
  filter: saturate(0.95) brightness(0.92);
}

/* ===== DATENSCHUTZ ACCORDION ===== */
.privacy-section { padding: 80px 0; background: transparent; text-align: center; }
.privacy-accordion { max-width: 720px; margin: 40px auto 0; text-align: left; }
.privacy-accordion details {
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.privacy-accordion details[open] {
  border-color: rgba(232,134,45,0.25);
}
.privacy-accordion summary {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.privacy-accordion summary::-webkit-details-marker { display: none; }
.privacy-accordion summary::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-right: 4px;
}
.privacy-accordion details[open] summary::before {
  transform: rotate(45deg);
}
.privacy-accordion summary:hover { color: var(--accent); }
.privacy-accordion .accordion-content {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.privacy-shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232,134,45,0.08);
  border: 1px solid rgba(232,134,45,0.18);
  margin: 0 auto 20px;
}
.privacy-shield-icon svg {
  width: 26px; height: 26px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== STEPS ===== */
.steps-section { padding: 80px 0; background: transparent; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step { position: relative; padding: 20px 12px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  color: white; font-size: 18px; font-weight: 600; margin-bottom: 16px;
}
.step h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 39px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(232,134,45,0.15));
}

/* ===== FOERDERVEREIN ===== */
.foerderverein-section { padding: 80px 0; background: transparent; text-align: center; }
.foerderverein-box {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 40px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,134,45,0.08), rgba(232,134,45,0.02));
  border: 1px solid rgba(232,134,45,0.2);
  text-align: center;
}
.foerderverein-box .fv-big {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.1;
}
.foerderverein-box .fv-label {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}
.foerderverein-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: transparent; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 40px; }
.testimonial-card { padding: 30px 24px; text-align: left; border-radius: 14px; }
.testimonial-card .quote {
  font-size: 15px; color: #c0c8d8; line-height: 1.7; font-style: italic;
  margin-bottom: 20px; position: relative; padding-left: 20px;
  border-left: 3px solid rgba(232,134,45,0.3);
}
.testimonial-card .author { font-size: 14px; font-weight: 500; color: var(--text); }
.testimonial-card .role { font-size: 13px; color: var(--text-muted); }
.stars-rating { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

/* ===== MISSION / ÜBER UNS ===== */
.mission-section { padding: 80px 0; background: transparent; }
.mission-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-top: 40px;
}
.mission-text p {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.mission-text p:last-child { margin-bottom: 0; }
.mission-text strong { color: var(--text); font-weight: 500; }
.mission-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.mission-stat {
  padding: 24px 20px; border-radius: 14px; text-align: center;
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
}
.mission-stat-num {
  font-size: 32px; font-weight: 700; color: var(--accent); margin-bottom: 4px;
}
.mission-stat-label {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}
.mission-quote {
  grid-column: 1 / -1; margin-top: 12px;
  padding: 24px 28px; border-radius: 14px;
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-left: 3px solid rgba(232,134,45,0.4);
}
.mission-quote blockquote {
  font-size: 15px; color: #c0c8d8; font-style: italic; line-height: 1.7; margin-bottom: 10px;
}
.mission-quote cite {
  font-size: 13px; color: var(--text-muted); font-style: normal;
}
.mission-logo-row {
  display: flex; align-items: center; gap: 24px; margin-top: 20px; flex-wrap: wrap;
}
.mission-logo-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  font-size: 13px; color: var(--text-muted);
}
.mission-logo-badge strong { color: var(--text); font-weight: 500; }
@media (max-width: 768px) {
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
  .mission-quote { grid-column: 1; }
}

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: transparent; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.faq-item {
  padding: 24px; border-radius: 12px;
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
}
.faq-item h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== LOCATIONS ===== */
.locations-section { padding: 60px 0; background: transparent; text-align: center; }
.loc-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.loc-tag {
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 10px 22px; border-radius: 22px; font-size: 14px; color: #b8c0d4;
  display: flex; align-items: center; gap: 6px;
}
.loc-tag svg {
  width: 14px; height: 14px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Expansion phases */
.expansion-phase { margin-bottom: 24px; }
.expansion-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.expansion-label.live {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}
.expansion-label.soon {
  background: rgba(232,134,45,0.12);
  color: var(--accent);
  border: 1px solid rgba(232,134,45,0.25);
}
.expansion-label.planned {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.loc-tag.loc-live {
  border-color: rgba(34,197,94,0.4);
  color: #22c55e;
  font-weight: 600;
}
.loc-tag.loc-live svg { stroke: #22c55e; }
.loc-tag.loc-soon {
  border-color: rgba(232,134,45,0.25);
  color: var(--accent);
}
.loc-tag.loc-planned {
  opacity: 0.6;
  border-style: dashed;
}

/* ===== CONTACT FORM ===== */
.contact-form-section { padding: 80px 0; background: transparent; }
.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 18px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
}
.contact-form-wrapper h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.contact-form-wrapper .form-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}
.pill-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 4px;
  border: 1px solid var(--card-border);
}
.pill-toggle input[type="radio"] { display: none; }
.pill-toggle label {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 22px;
  transition: all 0.3s;
}
.pill-toggle input[type="radio"]:checked + label {
  background: var(--accent);
  color: white;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .req {
  color: var(--accent);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,146,168,0.5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit-btn {
  display: block;
  width: 100%;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  transition: all 0.3s;
  margin-top: 10px;
}
.form-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  border: 2px solid rgba(74,222,128,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .success-icon svg {
  width: 32px; height: 32px;
  stroke: #4ade80; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  padding: 50px 0;
  background: rgba(10,15,30,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; text-align: center; }
.contact-item h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.contact-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-item a { color: var(--accent); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 20px;
  background: rgba(5,8,18,0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 13px;
  color: #5a6478;
}
.footer a { color: var(--text-muted); text-decoration: none; margin: 0 12px; }
.footer a:hover { color: white; }
.footer .copy { margin-top: 12px; font-size: 12px; color: #3a4458; }

/* ===== HERO (Landing Pages) ===== */
.landing-hero {
  position: relative;
  padding: 100px 0 60px;
  background: transparent;
  text-align: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,10,22,0.55) 0%,
    rgba(6,10,22,0.7) 50%,
    rgba(6,10,22,0.85) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.landing-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.landing-hero .hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.landing-hero .hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.landing-hero .hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  font-size: 14px;
  color: #b8c0d4;
}
.landing-hero .hero-badge svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .splash-panel { min-height: 260px; }
  .path-cards,
  .about-grid,
  .benefits-grid,
  .faq-grid,
  .berufs-grid { grid-template-columns: 1fr; }
  .channels-grid,
  .testimonials-grid,
  .noeffort-grid,
  .bundling-benefits { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bundling-diagram { flex-direction: column; gap: 20px; }
  .bundling-arrow { transform: rotate(90deg); min-width: unset; padding: 8px 0; }
  .contact-form-wrapper { padding: 28px 20px; }
  .landing-hero { padding: 80px 0 40px; }
  .landing-hero .hero-badges { gap: 10px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .splash-logo { width: 150px; }
}

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 80px 0; }
.pricing-table {
  max-width: 720px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 28px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(232,134,45,0.06); }
.pricing-row.pricing-header {
  background: rgba(232,134,45,0.1);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 12px 28px;
}
.pricing-tier {
  font-size: 15px;
  color: var(--text);
}
.pricing-tier small {
  color: var(--text-muted);
  font-size: 13px;
}
.pricing-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}
.pricing-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
}
.pricing-note strong { color: var(--accent); }
.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

/* Price Comparison */
.price-compare {
  max-width: 720px;
  margin: 48px auto 0;
}
.price-compare-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.price-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.price-compare-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 24px;
  border-radius: 10px;
  gap: 16px;
}
.price-compare-item.competitor {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0.65;
}
.price-compare-item.jobbi {
  background: rgba(232,134,45,0.1);
  border: 2px solid rgba(232,134,45,0.35);
}
.price-compare-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.price-compare-item.competitor .price-compare-name { color: var(--text-muted); }
.price-compare-item.jobbi .price-compare-name { color: var(--accent); font-size: 16px; }
.price-compare-cost {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.price-compare-item.competitor .price-compare-cost { color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(255,100,100,0.4); }
.price-compare-item.jobbi .price-compare-cost { color: var(--accent); font-size: 22px; }
.price-compare-cost small { font-size: 12px; font-weight: 400; }
.price-compare-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}
.price-compare-item.jobbi .price-compare-note { color: var(--text); font-weight: 500; }

/* Proof Grid (Social Proof) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.proof-card:hover { border-color: rgba(232,134,45,0.3); }
.proof-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.proof-stat {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.proof-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MEDIADATEN / REICHWEITE ===== */
.reach-section { padding: 80px 0; }
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.reach-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.reach-card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.reach-card-school {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.reach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reach-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.reach-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.reach-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px;
  background: rgba(232,134,45,0.06);
  border: 1px solid rgba(232,134,45,0.15);
  border-radius: 16px;
  text-align: center;
}
.reach-summary-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.reach-summary-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .reach-grid { grid-template-columns: 1fr; }
  .reach-summary { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .pricing-row { padding: 14px 20px; }
  .pricing-price { font-size: 18px; }
  .price-compare-item { grid-template-columns: 1fr; gap: 4px; text-align: center; padding: 12px 16px; }
  .price-compare-note { text-align: center; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside reveal containers */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-children.visible > * { opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-children > * { opacity: 1; transform: none; transition: none; }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.floating-cta a,
.floating-cta button {
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.floating-cta a.show,
.floating-cta button.show {
  opacity: 1;
  transform: translateY(0);
}
.btn-floating-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 30px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(232,134,45,0.35);
  border: none;
  cursor: pointer;
}
.btn-floating-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(232,134,45,0.45);
}
.btn-floating-cta svg {
  width: 16px; height: 16px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.btn-back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,10,22,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-back-to-top:hover {
  background: rgba(20,25,50,0.95);
  border-color: rgba(255,255,255,0.2);
}
.btn-back-to-top svg {
  width: 18px; height: 18px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 768px) {
  .floating-cta { bottom: 16px; right: 16px; }
  .btn-floating-cta { padding: 12px 18px; font-size: 13px; }
  .btn-floating-cta span { display: none; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(6,10,22,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: var(--accent);
  color: white;
}
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-decline {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
