/* =====================================================
   meinjobbi.de — Light Theme (Redesign 2026-05)
   Light-Pages laden NUR diese CSS-Datei.
   Pattern-Basis: Schulen-Broschüre (InDesign 2025-11).
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --orange:        #F39200;
  --orange-hover:  #E68500;
  --orange-soft:   #FFF4E0;
  --indigo:        #1F1A4D;
  --indigo-80:     #2B2566;
  --indigo-60:     #3E3786;
  --lavender:      #A8A0D9;
  --lavender-soft: #EDEBF7;
  --cream:         #FBF8F3;
  --white:         #FFFFFF;
  --ink:           #15132E;
  --ink-soft:      #3C3856;
  --ink-muted:     #6B6585;
  --border-soft:   rgba(31,26,77,0.08);
  --border-strong: rgba(31,26,77,0.16);
  --shadow-soft:   0 1px 2px rgba(31,26,77,0.04), 0 8px 24px rgba(31,26,77,0.06);
  --shadow-card:   0 2px 4px rgba(31,26,77,0.05), 0 14px 32px rgba(31,26,77,0.08);
  --shadow-lift:   0 8px 14px rgba(31,26,77,0.10), 0 24px 48px rgba(31,26,77,0.12);
  --radius:        20px;
  --radius-sm:     12px;
  --radius-pill:   999px;

  /* Legacy-Aliases (Compat für Pages die noch Old-Vars nutzen) */
  --accent:        var(--orange);
  --accent-hover:  var(--orange-hover);
  --bg-base:       var(--cream);
  --bg-alt:        var(--white);
  --text:          var(--ink);
  --text-heading:  var(--indigo);
  --text-body:     var(--ink);
  --text-muted:    var(--ink-muted);
  --card-bg:       var(--white);
  --card-border:   var(--border-soft);
  --card-hover:    var(--cream);
  --navy:          var(--indigo);
  --border:        var(--border-strong);
}

/* Legacy section-divider (used by old pages between sections) */
.section-divider { height: 1px; background: var(--border-soft); margin: 0; }
.section-alternate { background: var(--cream); }
.legal-content { padding: 56px 24px; max-width: 760px; margin: 0 auto; color: var(--ink); }
.legal-content h2 { color: var(--indigo); font-weight: 900; font-size: 24px; margin: 32px 0 12px; }
.legal-content h3 { color: var(--indigo); font-weight: 900; font-size: 18px; margin: 24px 0 8px; }
.legal-content p { color: var(--ink); margin: 0 0 12px; }
.legal-content a { color: var(--orange); }
.hero-content { padding: 60px 0; }
.hero-content h1 { font-weight: 900; font-size: clamp(32px, 3.5vw, 48px); color: var(--indigo); margin: 0; line-height: 1.05; letter-spacing: -0.015em; }
.hero-content .hero-sub { color: var(--ink-soft); font-size: 17px; margin: 16px 0 0; max-width: 720px; }
.landing-hero .hero-content { padding: 60px 0; }
.hero-bg-img { display: none; }
.reveal { opacity: 1; }
.berufs-section, .privacy-section, .schultraeger-section, .mission-section, .berufs-grid { /* Inherit defaults */ }
.locations-section { padding: 56px 0; background: var(--cream); }
.loc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border-soft);
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: var(--indigo); font-size: 13px; font-weight: 600; text-decoration: none;
}
.loc-tag:hover { background: var(--lavender-soft); border-color: var(--lavender); color: var(--indigo); }
.loc-tag.loc-live { background: var(--orange); color: var(--white); border-color: var(--orange); }
.loc-tag svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ====== Eyebrow / Section Titles ====== */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 700; font-size: 12px;
  color: var(--orange);
}
.s-title {
  font-weight: 900; letter-spacing: -0.015em;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  color: var(--indigo);
  margin: 0;
}
.s-sub {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 740px;
  margin: 16px auto 0;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 14px rgba(243,146,0,0.25);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(243,146,0,0.30); }
.btn-outline {
  background: var(--white); color: var(--indigo);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--lavender-soft); border-color: var(--lavender); color: var(--indigo); }
.btn-dark {
  background: var(--indigo); color: var(--white);
}
.btn-dark:hover { background: var(--indigo-80); transform: translateY(-1px); }

/* ====== Chevron Signature (aus Broschüre) ====== */
.chev { display: inline-flex; gap: 6px; align-items: center; }
.chev span {
  display: inline-block; width: 14px; height: 26px;
  background: currentColor;
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
  opacity: 0.85;
}
.chev span:nth-child(2) { opacity: 0.6; }
.chev span:nth-child(3) { opacity: 0.35; }

/* ====== Icon-Circle (Outline-Icon im gefüllten Kreis) ====== */
.icon-circle {
  width: 56px; height: 56px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.icon-circle.is-orange { background: var(--orange); }
.icon-circle.is-lavender { background: var(--lavender); }
.icon-circle.is-indigo { background: var(--indigo); }

/* ====== Cards ====== */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.card-cream { background: var(--cream); }
.card-lavender { background: var(--lavender-soft); }
.card-orange { background: var(--orange); color: var(--white); }
.card-orange p { color: rgba(255,255,255,0.92); }
.card-indigo { background: var(--indigo); color: var(--white); }
.card-indigo p { color: rgba(255,255,255,0.85); }

/* ====== Navigation ====== */
.main-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(120%) blur(8px);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 28px; margin-left: 16px; }
.nav-links a {
  color: var(--ink-soft); font-weight: 500; font-size: 15px;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--indigo); border-bottom-color: var(--orange); }
.nav-login-btn {
  margin-left: auto;
  background: var(--indigo); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: var(--radius-pill);
}
.nav-login-btn:hover { background: var(--indigo-80); color: var(--white); }
.nav-hamburger { display: none; background: none; border: 0; font-size: 22px; color: var(--indigo); cursor: pointer; }
.nav-mobile-menu { display: none; flex-direction: column; padding: 0 24px 18px; border-top: 1px solid var(--border-soft); }
.nav-mobile-menu a { padding: 12px 0; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--border-soft); }
.nav-mobile-menu a.active { color: var(--orange); }
.main-nav.is-open .nav-mobile-menu { display: flex; }

/* ====== Sub-Nav (Section anchors) ====== */
.sub-nav {
  background: var(--white); border-bottom: 1px solid var(--border-soft);
  position: sticky; top: 72px; z-index: 40;
}
.sub-nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; gap: 6px; overflow-x: auto;
  padding: 10px 24px;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-inner a {
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.sub-nav-inner a:hover { background: var(--lavender-soft); color: var(--indigo); }

/* ====== Hero ====== */
.landing-hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding: 60px 0 90px;
}
.landing-hero::after {
  content: ''; position: absolute;
  right: -180px; top: 30%;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(243,146,0,0.45), rgba(243,146,0,0) 70%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-grid .hero-copy h1 {
  font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98; color: var(--indigo); margin: 16px 0 0;
}
.hero-copy .hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  max-width: 540px;
}
.hero-cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 20px 26px;
  font-size: 14px; color: var(--ink-soft);
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; }
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--orange);
}

.hero-photo {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--indigo);
}
.hero-photo img, .hero-photo video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-photo::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,77,0.05) 0%, rgba(31,26,77,0.55) 60%, rgba(31,26,77,0.85) 100%);
  z-index: 1;
}
.hero-photo-caption {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2; color: var(--white);
  display: flex; align-items: end; justify-content: space-between; gap: 16px;
}
.hero-photo-caption .eyebrow { color: var(--orange); }
.hero-photo-caption strong { display: block; margin-top: 4px; font-size: 18px; line-height: 1.2; font-weight: 900; }
.hero-sticker {
  position: absolute; left: -16px; top: 40px;
  transform: rotate(-6deg);
  background: var(--indigo); color: var(--white);
  padding: 16px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 220px; z-index: 3;
}
.hero-sticker small { color: var(--orange); font-size: 12px; font-weight: 700; }
.hero-sticker strong { display: block; font-size: 14px; line-height: 1.25; font-weight: 700; margin-top: 2px; }
.hero-sticker .row { margin-top: 10px; }

/* ====== Stats Bar (Indigo Akzent-Stripe) ====== */
.stats-bar {
  background: var(--indigo); color: var(--white);
  padding: 36px 0;
}
.stats-grid {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-weight: 900; font-size: clamp(28px, 3vw, 40px);
  color: var(--orange); letter-spacing: -0.02em; line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 8px;
}

/* ====== Generic Section Layout ====== */
.section {
  padding: 88px 0;
  position: relative;
}
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-indigo { background: var(--indigo); color: var(--white); position: relative; overflow: hidden; }
.section-indigo .s-title { color: var(--white); }
.section-indigo .s-sub { color: rgba(255,255,255,0.8); }
.section-indigo .eyebrow { color: var(--orange); }
.section-indigo .card { background: var(--indigo-80); color: var(--white); border-color: rgba(255,255,255,0.06); box-shadow: none; }
.section-indigo .card:hover { background: var(--indigo-60); }
.section-indigo .card p { color: rgba(255,255,255,0.78); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange .s-title { color: var(--white); }
.section-orange .s-sub { color: rgba(255,255,255,0.92); }
.section-header { text-align: center; margin-bottom: 56px; }

/* ====== Image-Text Grid (Z-Pattern) ====== */
.image-text-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  margin-top: 56px;
}
.image-text-grid.reverse { grid-template-columns: 1fr 1fr; }
.image-text-grid.reverse .image-text-img { order: 2; }
.image-text-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.image-text-img img { width: 100%; height: 100%; object-fit: cover; }
.image-text-content h2 {
  font-weight: 900; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.015em;
  color: var(--indigo); margin: 0 0 16px;
}
.image-text-content p { color: var(--ink-soft); font-size: 16px; }

/* ====== Channels Cards ====== */
.channels-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 32px;
}
.channel-card { padding: 0; overflow: hidden; }
.channel-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.channel-card-img img { width: 100%; height: 100%; object-fit: cover; }
.channel-card-body { padding: 24px 26px 28px; }
.channel-card h3 { color: var(--indigo); font-weight: 900; font-size: 20px; margin: 12px 0 8px; }
.channel-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ====== Förderverein Box ====== */
.fv-box {
  background: var(--orange); color: var(--white);
  border-radius: var(--radius); padding: 56px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.fv-box::after {
  content:''; position: absolute; right: -60px; bottom: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.25), transparent 70%);
}
.fv-big { font-size: clamp(80px, 12vw, 160px); font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
.fv-label { font-size: 18px; font-weight: 700; margin: 8px 0 20px; }
.fv-box p { color: rgba(255,255,255,0.92); max-width: 620px; margin: 0 auto; position: relative; z-index: 2; }
.fv-photo { margin-top: 32px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card); position: relative; z-index: 2; }

/* ====== Mission ====== */
.mission-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 40px 0;
}
.mission-stat {
  background: var(--lavender-soft); border-radius: var(--radius-sm);
  padding: 24px 16px; text-align: center;
}
.mission-stat-num {
  font-weight: 900; font-size: clamp(28px, 3vw, 36px); color: var(--indigo);
  line-height: 1; letter-spacing: -0.02em;
}
.mission-stat-label { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.3; }
.mission-logo-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.mission-logo-badge {
  background: var(--cream); border: 1px solid var(--border-soft);
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.mission-quote {
  background: var(--cream); border-left: 4px solid var(--orange);
  padding: 24px 28px; border-radius: var(--radius-sm); margin-top: 32px;
}
.mission-quote blockquote { margin: 0; font-size: 18px; font-weight: 500; color: var(--indigo); font-style: italic; }
.mission-quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--ink-soft); }

/* ====== Timeline (für Steps) ====== */
.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 40px;
}
.timeline-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border-soft); padding: 28px;
  box-shadow: var(--shadow-soft); position: relative;
}
.timeline-card .step-no { font-weight: 900; color: var(--indigo); font-size: 14px; letter-spacing: 0.06em; }
.timeline-card h3 { margin: 14px 0 8px; color: var(--indigo); font-weight: 900; font-size: 19px; }
.timeline-card p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* ====== Pricing ====== */
.pricing-banner {
  background: linear-gradient(135deg, rgba(243,146,0,0.16), rgba(243,146,0,0.06));
  border: 1px solid rgba(243,146,0,0.3);
  padding: 20px 28px; border-radius: var(--radius-sm);
  max-width: 600px; margin: 0 auto 32px;
}
.pricing-banner-title { color: var(--orange); font-weight: 800; font-size: 18px; }
.pricing-banner-sub { color: var(--ink-soft); font-size: 14px; }
.pricing-table {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden;
  max-width: 760px; margin: 0 auto;
}
.pricing-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-soft);
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.pricing-header {
  background: var(--indigo); color: var(--white);
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.pricing-tier { color: var(--ink); font-weight: 500; text-align: left; }
.pricing-tier small { color: var(--ink-soft); font-weight: 400; }
.pricing-price { color: var(--indigo); font-weight: 900; text-align: right; }
.pricing-price small { color: var(--ink-soft); font-weight: 500; font-size: 13px; display: block; }
.pricing-note { color: var(--ink-soft); font-size: 13px; margin-top: 16px; text-align: center; }

.price-compare { margin-top: 48px; }
.price-compare h3 { color: var(--indigo); text-align: center; font-weight: 900; font-size: 22px; margin-bottom: 24px; }
.price-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.price-compare-item {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 22px; text-align: left;
}
.price-compare-item.jobbi {
  background: var(--lavender-soft); border-color: var(--lavender);
  position: relative;
}
.price-compare-name { font-weight: 700; color: var(--indigo); font-size: 14px; }
.price-compare-cost { font-weight: 900; color: var(--orange); font-size: 22px; margin: 6px 0; }
.price-compare-cost small { color: var(--ink-soft); font-weight: 500; font-size: 13px; }
.price-compare-note { color: var(--ink-soft); font-size: 13px; }

/* ====== Accordion (Datenschutz, Quellen) ====== */
details {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  padding: 18px 22px;
}
details[open] { box-shadow: var(--shadow-soft); }
details > summary {
  cursor: pointer; font-weight: 700; color: var(--indigo);
  font-size: 15px; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: '+'; color: var(--orange); font-weight: 900; font-size: 22px; line-height: 1;
}
details[open] > summary::after { content: '−'; }
.accordion-content { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }

/* ====== FAQ ====== */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft); padding: 22px 24px;
  text-align: left;
}
.faq-item h3 { color: var(--indigo); margin: 0 0 8px; font-weight: 900; font-size: 16px; }
.faq-item p { color: var(--ink-soft); margin: 0; font-size: 14px; }

/* ====== Testimonials ====== */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.testimonial-card { text-align: left; }
.testimonial-card .stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .quote { color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.5; }
.testimonial-card .author { color: var(--indigo); font-weight: 700; margin-top: 16px; }
.testimonial-card .role { color: var(--ink-soft); font-size: 13px; }

/* ====== Statement ====== */
.statement {
  text-align: center; padding: 56px 24px;
}
.statement blockquote {
  font-size: clamp(22px, 2.6vw, 36px); font-weight: 900; letter-spacing: -0.015em;
  line-height: 1.15; color: var(--indigo);
  max-width: 880px; margin: 0 auto;
}
.statement blockquote::before { content:'„'; color: var(--orange); font-size: 1.2em; line-height: 0; }
.statement blockquote::after { content:'"'; color: var(--orange); }

/* ====== Schulträger Stützpfeiler ====== */
.pillar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 1100px; margin: 40px auto 0;
}
.pillar-card { background: var(--white); }
.pillar-card .pillar-id {
  font-weight: 900; letter-spacing: 0.16em; font-size: 11px;
  color: var(--orange); text-transform: uppercase; margin-bottom: 6px;
}
.pillar-card h3 { color: var(--indigo); font-weight: 900; font-size: 17px; margin: 0 0 8px; }
.pillar-card p { color: var(--ink-soft); margin: 0; font-size: 14px; }

/* Quellen-Tabelle innerhalb details */
.legal-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 16px; }
.legal-table th {
  text-align: left; padding: 10px 8px; color: var(--orange);
  font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-strong);
}
.legal-table td { padding: 10px 8px; border-bottom: 1px solid var(--border-soft); color: var(--ink); }
.legal-table tr:last-child td { border-bottom: 0; }

/* ====== Forms ====== */
.contact-form-wrapper {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 40px 32px;
  max-width: 760px; margin: 0 auto;
}
.contact-form-wrapper h2 { color: var(--indigo); font-weight: 900; font-size: 28px; margin: 0; letter-spacing: -0.015em; }
.contact-form-wrapper .form-sub { color: var(--ink-soft); margin: 8px 0 24px; }
.pill-toggle {
  display: inline-flex; background: var(--lavender-soft); padding: 4px;
  border-radius: var(--radius-pill); margin-bottom: 24px;
}
.pill-toggle input { display: none; }
.pill-toggle label {
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; color: var(--ink-soft); cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pill-toggle input:checked + label {
  background: var(--orange); color: var(--white);
  box-shadow: 0 2px 6px rgba(243,146,0,0.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 600; font-size: 14px; }
.req { color: var(--orange); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--cream); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus {
  outline: 0; border-color: var(--orange);
  background: var(--white); box-shadow: 0 0 0 4px rgba(243,146,0,0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit-btn {
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 15px;
  padding: 14px 28px; border: 0; border-radius: var(--radius-pill);
  cursor: pointer; transition: all 0.15s ease;
}
.form-submit-btn:hover { background: var(--orange-hover); }
.form-submit-btn:disabled { opacity: 0.7; cursor: wait; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success.is-visible { display: block; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 3; }

/* ====== Contact Bar + Footer ====== */
.contact-bar {
  background: var(--cream); border-top: 1px solid var(--border-soft);
  padding: 56px 0;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.contact-item h3 { color: var(--indigo); font-weight: 900; font-size: 16px; margin: 0 0 10px; }
.contact-item p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.contact-item a { color: var(--orange); }

.footer {
  background: var(--indigo); color: rgba(255,255,255,0.7);
  padding: 36px 24px; text-align: center; font-size: 14px;
}
.footer a { color: rgba(255,255,255,0.85); margin: 0 12px; }
.footer a:hover { color: var(--orange); }
.footer .copy { margin-top: 12px; color: rgba(255,255,255,0.4); font-size: 12px; }

/* ====== Floating CTA ====== */
.floating-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px; align-items: end;
}
.btn-floating-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white); font-weight: 700;
  padding: 14px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(243,146,0,0.35);
}
.btn-floating-cta:hover { background: var(--orange-hover); color: var(--white); }
.btn-floating-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-back-to-top {
  background: var(--white); border: 1px solid var(--border-soft);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: none; align-items: center; justify-content: center;
}
.btn-back-to-top.is-visible { display: inline-flex; }
.btn-back-to-top svg { width: 18px; height: 18px; stroke: var(--indigo); fill: none; stroke-width: 2.5; }

/* ====== Cookie ====== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); border: 1px solid var(--border-soft);
  padding: 18px 22px; z-index: 70;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-text { color: var(--ink-soft); font-size: 14px; flex: 1; min-width: 220px; }
.cookie-buttons { display: flex; gap: 8px; }
.cookie-btn {
  border: 0; padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 13px; cursor: pointer;
}
.cookie-btn-accept { background: var(--indigo); color: var(--white); }
.cookie-btn-accept:hover { background: var(--indigo-80); }
.cookie-btn-decline { background: var(--cream); color: var(--ink-soft); border: 1px solid var(--border-soft); }

/* ====== Reveal Animation (re-uses old class .reveal) ====== */
.reveal { opacity: 1; transition: none; } /* sichtbar by default — kein JS-Block */

/* ====== Mobile ====== */
@media (max-width: 900px) {
  .nav-links, .nav-login-btn { display: none; }
  .nav-hamburger { display: inline-flex; margin-left: auto; }
  .sub-nav { top: 64px; }
  .nav-inner { height: 64px; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-sticker { left: 8px; top: 12px; transform: rotate(-6deg) scale(0.85); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .image-text-grid, .image-text-grid.reverse { grid-template-columns: 1fr; gap: 24px; }
  .image-text-grid.reverse .image-text-img { order: 0; }
  .channels-pair { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .testimonials-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-price { text-align: left; }
  .section { padding: 60px 0; }
}
