/* ============================================================
   NEOCORE — Beamten-Guide LP
   Creme + Navy Palette wie Memmingen Rübezahlplatz
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS — Creme/Navy
   ============================================================ */
:root {
  /* Farben — Basis */
  --nc-bg:           #F5EDE1;  /* Creme-Hauptfläche */
  --nc-bg-2:         #EDE3D4;  /* Creme-tiefer (Stat-Bar, alternierend) */
  --nc-bg-frame:     #DDD5C7;  /* Creme-Rahmen außen */
  --nc-card:         #FFFFFF;
  --nc-card-2:       #FAF6EE;

  /* Farben — Linien */
  --nc-line:         rgba(28, 31, 42, 0.12);
  --nc-line-strong:  rgba(28, 31, 42, 0.28);

  /* Farben — Akzent (Navy) */
  --nc-accent:       #1f273e;
  --nc-accent-2:     #2c3756;
  --nc-accent-3:     #58A6FF;  /* NeoCore-Hellblau für seltene Highlights */

  /* Farben — Text */
  --nc-text:         #1C1F2A;
  --nc-muted:        #4B4D57;

  /* Signal */
  --nc-ok:           #2E7D5B;
  --nc-warn:         #B47A2C;

  /* Typo */
  --nc-font:         'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --nc-font-display: 'Playfair Display', Georgia, serif;

  /* Radien */
  --nc-radius-sm: 8px;
  --nc-radius:    14px;
  --nc-radius-lg: 18px;

  /* Schatten */
  --nc-shadow:    0 12px 40px -16px rgba(28, 31, 42, 0.25);
  --nc-shadow-lg: 0 30px 80px -30px rgba(28, 31, 42, 0.35);
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--nc-font);
  background: var(--nc-bg-frame);
  color: var(--nc-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--nc-accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--nc-accent-2); }
button { font-family: inherit; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.nc-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.nc-container--narrow { max-width: 820px; }

.nc-section { padding: 96px 0; }
.nc-section--compact { padding: 56px 0; }
.nc-section--bg { background: var(--nc-bg); }
.nc-section--bg-alt { background: var(--nc-bg-2); }
.nc-section--dark {
  background: var(--nc-accent);
  color: #F5EDE1;
}
.nc-section--dark h2,
.nc-section--dark h3 { color: #F5EDE1; }
.nc-section--dark .nc-eyebrow { color: var(--nc-accent-3); }
.nc-section--dark .nc-lead { color: rgba(245, 237, 225, 0.78); }

@media (max-width: 720px) {
  .nc-section { padding: 64px 0; }
  .nc-container { padding: 0 20px; }
}

/* ============================================================
   4. TYPOGRAFIE
   ============================================================ */
.nc-eyebrow {
  display: inline-block;
  color: var(--nc-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, .nc-h1 {
  font-family: var(--nc-font);
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--nc-text);
  margin-bottom: 18px;
}

h2, .nc-h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--nc-text);
  margin-bottom: 14px;
}

h3, .nc-h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--nc-text);
  margin-bottom: 10px;
}

.nc-display {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 600;
}

.nc-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--nc-muted);
  max-width: 720px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.nc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--nc-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.nc-btn:hover { transform: translateY(-2px); }

.nc-btn--primary {
  background: var(--nc-accent);
  color: #FFFFFF;
  box-shadow: 0 12px 28px -10px rgba(31, 39, 62, 0.35);
}
.nc-btn--primary:hover {
  background: var(--nc-accent-2);
  color: #FFFFFF;
  box-shadow: 0 16px 36px -10px rgba(31, 39, 62, 0.45);
}

.nc-btn--ghost {
  background: transparent;
  color: var(--nc-text);
  border: 1px solid var(--nc-line-strong);
}
.nc-btn--ghost:hover { background: rgba(31, 39, 62, 0.06); }

.nc-btn--lg { padding: 18px 36px; font-size: 15px; }
.nc-btn--xl { padding: 22px 44px; font-size: 16px; }

.nc-btn__arrow { display: inline-block; transition: transform 0.18s; }
.nc-btn:hover .nc-btn__arrow { transform: translateX(3px); }

/* ============================================================
   6. NAV (Sticky-Header)
   ============================================================ */
.nc-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 237, 225, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nc-line);
}
.nc-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nc-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--nc-text);
  margin-right: auto;
}
.nc-nav__logo { width: 24px; height: 24px; }
.nc-nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--nc-accent);
  color: #FFFFFF;
  transition: background 0.18s;
}
.nc-nav__cta:hover { background: var(--nc-accent-2); color: #FFFFFF; }

@media (max-width: 720px) {
  .nc-nav__inner { padding: 12px 20px; }
  .nc-nav__brand { font-size: 13px; }
  .nc-nav__cta { padding: 8px 14px; font-size: 12px; }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  background: var(--nc-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% 0%, rgba(31, 39, 62, 0.06) 0%, transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(31, 39, 62, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 84px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 39, 62, 0.08);
  border: 1px solid var(--nc-line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nc-accent);
  margin-bottom: 22px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--nc-accent);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 18px;
}
.hero h1 em {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--nc-accent);
}
.hero__subline {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--nc-muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--nc-text);
  line-height: 1.45;
}
.hero__bullets li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--nc-accent);
}
.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--nc-muted);
}
.hero__trust-dot {
  width: 8px; height: 8px;
  background: var(--nc-ok);
  border-radius: 50%;
  animation: nc-pulse-soft 2.4s ease-in-out infinite;
}
@keyframes nc-pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero Mockup (rechte Spalte) */
.hero__mockup {
  position: relative;
  perspective: 1800px;
}
.hero__mockup-inner {
  position: relative;
  transform: rotateY(-12deg) rotateX(4deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 50px 60px rgba(28, 31, 42, 0.35));
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.hero__mockup:hover .hero__mockup-inner {
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(-1deg);
}
.hero__mockup-cover {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(28, 31, 42, 0.18);
  background: #FFFFFF;
  overflow: hidden;
}
.hero__mockup-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__mockup-pages {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg,
    rgba(28, 31, 42, 0.18) 0%,
    rgba(28, 31, 42, 0) 4%,
    rgba(28, 31, 42, 0) 96%,
    rgba(28, 31, 42, 0.08) 100%);
  pointer-events: none;
}
.hero__mockup-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 70%);
  border-radius: 8px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero__mockup-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--nc-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  transform: translateZ(40px);
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 64px;
  }
  .hero__mockup-inner {
    max-width: 360px;
    margin: 0 auto;
    transform: rotateY(-8deg) rotateX(2deg);
  }
}

/* ============================================================
   8. STATS-BAR
   ============================================================ */
.stats-bar {
  background: var(--nc-accent);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-bar__cell {
  padding: 38px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stats-bar__cell:last-child { border-right: 0; }
.stats-bar__value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: #FFFFFF;
}
.stats-bar__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 225, 0.7);
}
@media (max-width: 720px) {
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stats-bar__cell { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 24px; }
  .stats-bar__cell:last-child { border-bottom: 0; }
}

/* ============================================================
   9. BENEFIT-GRID (Was du im Guide lernst)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--nc-line-strong);
  box-shadow: var(--nc-shadow);
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--nc-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nc-accent);
  margin-bottom: 22px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--nc-muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   10. INHALT-PREVIEW (alternating image + text)
   ============================================================ */
.preview-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.preview-block:last-child { margin-bottom: 0; }
.preview-block--reverse .preview-block__media { order: 2; }
.preview-block__media {
  background: var(--nc-card-2);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-lg);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--nc-shadow);
}
.preview-block__media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.preview-block:hover .preview-block__media-bg { transform: scale(1.03); }
.preview-block__overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg,
    rgba(31, 39, 62, 0.55) 0%,
    rgba(31, 39, 62, 0.0) 35%,
    rgba(31, 39, 62, 0.0) 55%,
    rgba(31, 39, 62, 0.85) 100%);
  pointer-events: none;
}
.preview-block__overlay-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-block__chapter {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F5EDE1;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(28, 31, 42, 0.5);
}
.preview-block__pageref {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 225, 0.85);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(28, 31, 42, 0.6);
}
.preview-block__media-headline {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: #F5EDE1;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(28, 31, 42, 0.65);
  max-width: 88%;
}
.preview-block__text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.preview-block__text p {
  color: var(--nc-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.preview-block__bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.preview-block__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--nc-text);
}
.preview-block__bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nc-accent);
  margin-top: 8px;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .preview-block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .preview-block--reverse .preview-block__media { order: 0; }
  .preview-block__media { aspect-ratio: auto; padding: 24px; }
  .preview-block__chapter { font-size: 48px; }
}

/* ============================================================
   11. METHODE (3-Step process)
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.method-card {
  background: rgba(245, 237, 225, 0.04);
  border: 1px solid rgba(245, 237, 225, 0.16);
  border-radius: var(--nc-radius-lg);
  padding: 36px 28px;
  position: relative;
}
.method-card__num {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--nc-accent-3);
  line-height: 1;
  margin-bottom: 18px;
}
.method-card h3 {
  font-size: 19px;
  color: #F5EDE1;
  font-weight: 600;
  margin-bottom: 10px;
}
.method-card p {
  color: rgba(245, 237, 225, 0.75);
  font-size: 14px;
  line-height: 1.65;
}
@media (max-width: 880px) {
  .method-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   12. AUTHORITY (Tom)
   ============================================================ */
.authority-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-lg);
  padding: 40px;
  box-shadow: var(--nc-shadow);
}
.authority-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--nc-radius);
  background: var(--nc-bg-2);
  overflow: hidden;
  position: relative;
}
.authority-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 39, 62, 0.18) 100%);
  pointer-events: none;
}
.authority-card__role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nc-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.authority-card h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.authority-card__bio {
  color: var(--nc-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.authority-card__bio strong { color: var(--nc-text); font-weight: 600; }
.authority-card__signature {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--nc-accent);
  margin-top: 4px;
}
@media (max-width: 880px) {
  .authority-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .authority-card__image { max-width: 280px; aspect-ratio: 4 / 5; }
  .authority-card h3 { font-size: 26px; }
}

/* ============================================================
   13. TESTIMONIAL
   ============================================================ */
.testimonial-card {
  position: relative;
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-left: 3px solid var(--nc-accent);
  border-radius: var(--nc-radius);
  padding: 40px 44px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--nc-shadow);
}
.testimonial-card__quotemark {
  font-family: var(--nc-font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--nc-accent);
  opacity: 0.16;
  position: absolute;
  top: 32px;
  right: 36px;
}
.testimonial-card__quote {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.45;
  color: var(--nc-text);
  margin-bottom: 24px;
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nc-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.testimonial-card__name { color: var(--nc-text); font-weight: 600; font-size: 14px; }
.testimonial-card__role { color: var(--nc-muted); font-size: 13px; display: block; margin-top: 2px; }
.testimonial-card__hint {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-muted);
  margin-top: 18px;
  font-weight: 500;
  border-top: 1px solid var(--nc-line);
  padding-top: 14px;
}
@media (max-width: 720px) {
  .testimonial-card { padding: 28px; }
  .testimonial-card__quote { font-size: 18px; }
}

/* ============================================================
   13b. TESTIMONIALS GRID (3 Stück)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-mini {
  position: relative;
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.testimonial-mini:hover {
  transform: translateY(-3px);
  border-color: var(--nc-line-strong);
  box-shadow: var(--nc-shadow);
}
.testimonial-mini::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--nc-font-display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--nc-accent);
  opacity: 0.18;
}
.testimonial-mini__quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--nc-text);
  margin-bottom: 22px;
  flex: 1;
}
.testimonial-mini__stat {
  background: var(--nc-bg-2);
  border-left: 2px solid var(--nc-accent);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 18px;
}
.testimonial-mini__stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--nc-accent);
  letter-spacing: -0.01em;
  display: block;
  line-height: 1.1;
}
.testimonial-mini__stat-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nc-muted);
  font-weight: 600;
  margin-top: 2px;
  display: block;
}
.testimonial-mini__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--nc-line);
}
.testimonial-mini__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nc-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.testimonial-mini__name { font-size: 13.5px; color: var(--nc-text); font-weight: 600; }
.testimonial-mini__role { font-size: 12px; color: var(--nc-muted); display: block; margin-top: 1px; }
.testimonials-hint {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-muted);
  margin-top: 32px;
  font-weight: 500;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}

/* ============================================================
   13c. VIDEO-TESTIMONIALS — Memmingen-Pattern, kompakt
   ============================================================ */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.video-testimonial {
  margin: 0;
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--nc-shadow);
}
.video-testimonial__player {
  position: relative;
  background: #1f273e;
  aspect-ratio: 16 / 9;
}
.video-testimonial__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--nc-line);
  cursor: pointer;
}
.video-testimonial__caption {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.video-testimonial__quote {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--nc-text);
  margin-bottom: 6px;
}
.video-testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--nc-text);
}
.video-testimonial__role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-muted);
}
/* 3-Col bleibt bis 600px — auf Tablet und 13"-Laptop nebeneinander */
@media (max-width: 600px) {
  .video-testimonials { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }
}

/* ============================================================
   14. FAQ
   ============================================================ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--nc-line-strong);
  box-shadow: var(--nc-shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 15px;
  color: var(--nc-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--nc-accent);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 26px 24px;
  color: var(--nc-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   15. FINAL-CTA
   ============================================================ */
.final-cta {
  background: var(--nc-accent);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(88, 166, 255, 0.18) 0%, transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(88, 166, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 32px;
}
.final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.final-cta h2 em {
  font-family: var(--nc-font-display);
  font-style: italic;
  color: var(--nc-accent-3);
}
.final-cta p {
  color: rgba(245, 237, 225, 0.85);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.final-cta .nc-btn--primary {
  background: #FFFFFF;
  color: var(--nc-accent);
}
.final-cta .nc-btn--primary:hover {
  background: var(--nc-bg);
  color: var(--nc-accent);
}
.final-cta__hint {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 225, 0.55);
  margin-top: 22px !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   16. FORM (Step 2)
   ============================================================ */
.form-page {
  min-height: calc(100vh - 70px);
  background: var(--nc-bg);
  display: flex;
  align-items: center;
  padding: 60px 24px;
}
.form-card {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-lg);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--nc-shadow-lg);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--nc-accent);
  border-radius: 0 0 3px 3px;
}
.form-card h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.form-card__sub {
  color: var(--nc-muted);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}
.nc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.nc-field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-muted);
}
.nc-input {
  background: var(--nc-card-2);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-sm);
  padding: 14px 16px;
  font-family: var(--nc-font);
  font-size: 15px;
  color: var(--nc-text);
  transition: border-color 0.15s, background 0.15s;
}
.nc-input:focus {
  outline: none;
  border-color: var(--nc-accent);
  background: #FFFFFF;
}
.nc-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--nc-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  cursor: pointer;
}
.nc-checkbox input { margin-top: 3px; accent-color: var(--nc-accent); flex-shrink: 0; }
.nc-checkbox a { color: var(--nc-accent); text-decoration: underline; }

.form-card__submit { width: 100%; }
.form-card__hint {
  text-align: center;
  font-size: 12px;
  color: var(--nc-muted);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ============================================================
   17. THANK-YOU
   ============================================================ */
.thanks-card {
  text-align: center;
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-lg);
  padding: 56px 48px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--nc-shadow-lg);
}
.thanks-card__check {
  width: 72px;
  height: 72px;
  background: var(--nc-ok);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thanks-card h1 { margin-bottom: 14px; }
.thanks-card p { color: var(--nc-muted); margin-bottom: 28px; line-height: 1.6; }

/* ============================================================
   18. STICKY-BOTTOM-CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 70;
  background: var(--nc-accent);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 16px 40px -10px rgba(31, 39, 62, 0.45);
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  transform: translateY(120%);
  opacity: 0;
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { color: #FFFFFF; background: var(--nc-accent-2); }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body.has-sticky { padding-bottom: 80px; }
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--nc-accent);
  color: rgba(245, 237, 225, 0.7);
  padding: 56px 0 32px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer__brand {
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.footer__copy { font-size: 12px; margin-top: 4px; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
  color: rgba(245, 237, 225, 0.85);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer__legal a:hover { color: #FFFFFF; }
.footer__divider {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 32px;
}
.footer__divider-line {
  border-top: 1px solid rgba(245, 237, 225, 0.14);
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 237, 225, 0.5);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; padding: 0 20px; }
  .footer__divider { padding: 0 20px; }
}

/* ============================================================
   20. COOKIE-BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--nc-card);
  border: 1px solid var(--nc-line-strong);
  border-radius: var(--nc-radius);
  padding: 20px 22px;
  box-shadow: var(--nc-shadow-lg);
  z-index: 90;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--nc-muted);
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner p { margin-bottom: 14px; }
.cookie-banner a { color: var(--nc-accent); text-decoration: underline; }
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__buttons button {
  flex: 1;
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  border: 0;
  font-family: inherit;
}
.cookie-banner__accept {
  background: var(--nc-accent);
  color: #FFFFFF;
}
.cookie-banner__accept:hover { background: var(--nc-accent-2); }
.cookie-banner__decline {
  background: transparent;
  color: var(--nc-text);
  border: 1px solid var(--nc-line-strong) !important;
}
.cookie-banner__decline:hover { background: rgba(31, 39, 62, 0.06); }

/* ============================================================
   21. SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   22. UTILITIES
   ============================================================ */
.nc-text-center { text-align: center; }
.nc-mb-2 { margin-bottom: 16px; }
.nc-mb-4 { margin-bottom: 32px; }
