/* pakete.css (vollständig, gleiche Design-Sprache + edle Glow Boxen) */

/* ====== DESIGN-TOKENS ====== */
:root {
  /* ===== DARK BASE ===== */
  --bg: #020617;              /* Deep Navy */
  --text: #f8fafc;            /* Almost white */
  --muted: #94a3b8;           /* Muted gray-blue */
  --border-subtle: rgba(148,163,184,0.18);

  /* Brand */
  --accent-blue: #35d8e8;
  --accent-orange: #ffb339;

  /* Effects */
  --shadow-soft: 0 30px 80px rgba(0,0,0,0.55);

  /* Shape */
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1120px;

  /* Font */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "SF Pro Text", "Segoe UI", sans-serif;
}


/* ====== RESET ====== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  min-height: 100vh;
  background: radial-gradient(
      circle at 10% 15%,
      rgba(53, 216, 232, 0.14),
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 179, 57, 0.12),
      transparent 65%
    ),
    #020617;
  overflow-x: hidden;
}

/* GLOBALER GLOW-HINTERGRUND (über die ganze Seite) */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 15%, rgba(53, 216, 232, 0.26), transparent 60%),
    radial-gradient(circle at 85% 10%, rgba(255, 179, 57, 0.18), transparent 65%),
    radial-gradient(circle at 20% 90%, rgba(53, 216, 232, 0.20), transparent 60%),
    radial-gradient(circle at 95% 75%, rgba(148, 163, 184, 0.16), transparent 65%);
  animation: glowDrift 26s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate3d(0, -16px, 0) scale(1.02); opacity: 1; }
  100% { transform: translate3d(-12px, 12px, 0) scale(1.01); opacity: 0.95; }
}

/* ====== GLOBAL LAYOUT ====== */
.section {
  padding: 72px 16px 56px;
  position: relative;
  z-index: 1;
  background: transparent;
  scroll-margin-top: 96px; /* offset sticky nav */
}

.section-inner {
  margin: 0 auto;
  max-width: var(--container);
}

h1, h2, h3 { margin: 0; }

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.80),
    transparent
  );
  padding: 10px 16px 6px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.nav-inner {
  margin: 0 auto;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-img { height: 60px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-blue); /* Wunsch: Machn-Blau */
  color: #052b33 !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255,255,255,0.55);
}

.nav-cta:hover { filter: brightness(0.98); transform: translateY(-1px); }

/* Mobile-Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  color: #082f49;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 26px 45px rgba(15, 23, 42, 0.32); }

.btn.ghost {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(148, 163, 184, 0.40);
  color: var(--text);
}
.btn.ghost:hover { background: #f3f4f6; }

.btn-full { width: 100%; }

/* ====== TYPO ====== */
.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 10px;
}

.highlight {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  -webkit-background-clip: text;
  color: transparent;
}

/* ====== PAGE HERO ====== */
.page-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.page-sub {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.page-hero-cta {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero-badges {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* ====== PRICING ====== */
.pricing-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pricing-head { text-align: center; }
.pricing-head h2 {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}
.pricing-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border-radius: 28px;
  padding: 22px 22px 18px;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.12),
    0 0 50px rgba(53, 216, 232, 0.16);

  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(53, 216, 232, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255, 179, 57, 0.16), transparent 55%);
  opacity: 0.9;
}

.pricing-card > * { position: relative; z-index: 1; }

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 38px 80px rgba(15, 23, 42, 0.18),
    0 0 60px rgba(53, 216, 232, 0.26);
  border-color: rgba(53, 216, 232, 0.55);
}

.pricing-top h3 {
  font-size: 1.18rem;
  font-weight: 900;
  margin-top: 8px;
}

.pricing-tagline {
  margin: 8px 0 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.55;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.05);
  letter-spacing: 0.02em;
}

.badge-silver { color: rgba(15,23,42,0.82); }
.badge-gold { color: rgba(15,23,42,0.82); }
.badge-platin { color: rgba(15,23,42,0.82); }

.pricing-price {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 2.0rem;
  font-weight: 900;
  line-height: 1;
}

.price-meta {
  color: rgba(15, 23, 42, 0.60);
  font-weight: 700;
}

.pricing-kpi {
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kpi-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
}
.kpi-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-list li {
  padding-left: 22px;
  position: relative;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: rgba(53, 216, 232, 0.95);
}

.pricing-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-note {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.note-pill {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(53, 216, 232, 0.14);
  border: 1px solid rgba(53, 216, 232, 0.22);
  color: rgba(7, 71, 82, 0.95);
}

.note-pill strong {
  font-weight: 900;
}

.note-text {
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
}


/* Featured (Gold) */
.pricing-card.featured {
  border-color: rgba(53, 216, 232, 0.55);
  box-shadow:
    0 38px 90px rgba(15, 23, 42, 0.18),
    0 0 70px rgba(53, 216, 232, 0.28);
}

.featured-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  color: #082f49;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 16px 30px rgba(15,23,42,0.14);
}

/* CTA under pricing */
.pricing-cta {
  margin-top: 6px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.pricing-cta p { margin: 0; color: rgba(15, 23, 42, 0.70); }

/* ====== EXPLAINER ====== */
.explainer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explainer-head { text-align: center; }
.explainer-head h2 {
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.explainer-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  border-radius: 26px;
  padding: 20px 18px 18px;

  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.11),
    0 0 42px rgba(53, 216, 232, 0.14);

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 216, 232, 0.50);
  box-shadow:
    0 34px 72px rgba(15, 23, 42, 0.16),
    0 0 55px rgba(53, 216, 232, 0.22);
}

.info-card h3 {
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.info-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-weight: 550;
}

/* ====== FINAL CTA ====== */
.section-final-cta { padding-bottom: 86px; }

.final-cta-card {
  border-radius: 30px;
  padding: 28px 22px;

  background: linear-gradient(
    135deg,
    rgba(53, 216, 232, 0.14),
    rgba(255, 255, 255, 0.78)
  );
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 34px 78px rgba(15, 23, 42, 0.14),
    0 0 60px rgba(53, 216, 232, 0.18);
  text-align: center;
}

.final-cta-card h2 {
  font-size: 2.0rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}

.final-cta-card p {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(15, 23, 42, 0.68);
  line-height: 1.6;
}

.final-cta-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.footer {
  padding: 18px 16px;
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover { color: #ffffff; }

/* ====== SCROLL REVEAL ====== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .explainer-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 56px 12px auto;
    padding: 12px 16px;
    border-radius: 18px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }
  .nav-links.nav-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle { display: flex; }
}
/* Alles im TOP-Bereich zentrieren */
.pricing-top{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge/Tag mittig */
.pricing-badge{
  justify-content: center;
}

/* Preiszeile mittig */
.pricing-price{
  justify-content: center;
}
/* =========================================
   DARK MODE COLOR OVERRIDES (SAFE FIX)
   ÄNDERT NUR FARBEN – KEINE FORMEN
   ========================================= */

/* Base Text */
body {
  color: #f8fafc;
}

/* Headings */
h1, h2, h3 {
  color: #f8fafc;
}

/* Muted Text */
.page-sub,
.pricing-head p,
.explainer-head p,
.note-text,
.final-cta-card p {
  color: rgba(203, 213, 225, 0.75);
}

/* NAV */
.nav {
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.92),
    rgba(2,6,23,0.75),
    rgba(2,6,23,0.15)
  );
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.nav-links a {
  color: rgba(203,213,225,0.7);
}
.nav-links a:hover {
  color: #ffffff;
}

/* PRICING CARDS */
.pricing-card {
  background: rgba(15,23,42,0.72);
  border: 1px solid rgba(148,163,184,0.18);
}

/* Pricing Badge */
.pricing-badge {
  background: rgba(2,6,23,0.65);
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.22);
}

/* Price Meta */
.price-meta {
  color: rgba(203,213,225,0.65);
}

/* KPI Box */
.pricing-kpi {
  background: rgba(2,6,23,0.65);
  border-color: rgba(148,163,184,0.22);
}

.kpi-label {
  color: rgba(203,213,225,0.55);
}
.kpi-value {
  color: #ffffff;
}

/* Pricing List */
.pricing-list {
  color: rgba(248,250,252,0.9);
}

/* INFO / EXPLAINER CARDS */
.info-card {
  background: rgba(15,23,42,0.72);
  border-color: rgba(148,163,184,0.18);
}

.info-card p {
  color: rgba(203,213,225,0.75);
}

/* FINAL CTA */
.final-cta-card {
  background: linear-gradient(
    135deg,
    rgba(53,216,232,0.18),
    rgba(2,6,23,0.85)
  );
  border-color: rgba(148,163,184,0.22);
}

/* FOOTER */
.footer {
  background: #020617;
  border-top: 1px solid rgba(148,163,184,0.22);
}
/* ===== FIX: rote Pfeile -> alles weiß ===== */

/* 1) Nav CTA Button (oben rechts) Text */
.nav-cta{
  color:#fff !important;
}

/* 2) CTA Button unten ("Kostenloses Erstgespräch") Text */
.pricing-cta .btn.primary{
  color:#fff !important;
}

/* 3) Textzeilen unter den Karten (Mindestens ... / Effektiv ...) */
.pricing-note,
.pricing-note *{
  color: rgba(255,255,255,0.82) !important;
}

/* Falls du die Pill selbst auch weiß willst (Text in der Pill) */
.note-pill,
.note-pill *{
  color:#fff !important;
}

/* 4) Der Satz über dem Button ("Unsicher, welches Paket passt?...") */
.pricing-cta p{
  color: rgba(255,255,255,0.70) !important;
}

/* 5) Der zweite Satz darunter ("Du brauchst nur jemanden...") – ist bei dir normaler Text in pricing-cta */
.pricing-cta{
  color: rgba(255,255,255,0.82) !important;
}
/* ===== FINAL CTA Buttons wie Index (Hero) ===== */

/* Primary: "Kostenloses Erstgespräch" -> weißer Text + mehr Glow */
.section-final-cta .btn.primary{
  color:#fff !important;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    0 0 40px rgba(53,216,232,0.30) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
}

.section-final-cta .btn.primary:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 55px rgba(0,0,0,0.45),
    0 0 60px rgba(53,216,232,0.45) !important;
}

/* Ghost: "Förderung prüfen" -> dunkler Glass Button + weiße Schrift + glow */
.section-final-cta .btn.ghost{
  color: rgba(255,255,255,0.92) !important;

  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(148,163,184,0.22) !important;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.35),
    0 0 22px rgba(53,216,232,0.18) !important;
}

.section-final-cta .btn.ghost:hover{
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(53,216,232,0.35) !important;
  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 40px rgba(53,216,232,0.28) !important;
}
