/* ═══════════════════════════════════════════════════════
   NTX Code-Embed — 1:1 aus originalem Code-Embed übernommen
   Scope: alles unter <div class="ntx">
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
.ntx * { box-sizing: border-box; margin: 0; padding: 0; }
.ntx { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; }

/* ── Scroll Animations ── */
.ntx .fade-up, .ntx .fade-left, .ntx .fade-right {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), translate 0.65s cubic-bezier(0.16,1,0.3,1);
}
.ntx .fade-up   { translate: 0 32px; }
.ntx .fade-left { translate: -40px 0; }
.ntx .fade-right{ translate: 40px 0; }
.ntx .fade-up.is-visible,
.ntx .fade-left.is-visible,
.ntx .fade-right.is-visible { opacity:1; translate:0 0; }
.ntx .delay-1 { transition-delay: 0.12s; }
.ntx .delay-2 { transition-delay: 0.24s; }
.ntx .delay-3 { transition-delay: 0.36s; }

/* ══════════════════════════════════════
   SEKTION A: Video-Testimonial
══════════════════════════════════════ */
.ntx-sa {
  padding: 80px 20px 64px;
  background: #18264e;
}
.ntx-sa__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.ntx-sa__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 56px;
}
.ntx-sa__headline span { color: #3B6BF8; }
.ntx-s3__headline span { color: #3B6BF8; }
.ntx-s4__headline span { color: #3B6BF8; }
.ntx-s5__headline span { color: #3B6BF8; }

.ntx-sa__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .ntx-sa__grid { grid-template-columns: 36fr 64fr; gap: 64px; }
}

/* Left text */
.ntx-sa__text { width: 100%; }
.ntx-sa__name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.ntx-sa__role {
  font-size: 12px;
  font-weight: 600;
  color: #3B6BF8;
  margin-bottom: 28px;
}
.ntx-sa__quote {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  text-align: justify;
  margin-bottom: 32px;
}
.ntx-sa__stats {
  display: flex;
  gap: 40px;
}
.ntx-sa__stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #3B6BF8;
  line-height: 1;
  margin-bottom: 6px;
}
.ntx-sa__stat-num--white { color: #fff; }
.ntx-sa__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Right video */
.ntx-sa__video { width: 100%; }
.ntx-sa__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: block;
  text-decoration: none;
}
.ntx-sa__video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  transition: transform 0.4s ease;
}
.ntx-sa__video-wrap:hover img { transform: scale(1.18); }
.ntx-sa__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  transition: background 0.3s;
}
.ntx-sa__video-wrap:hover::after { background: rgba(0,0,0,0.15); }
.ntx-sa__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ntx-sa__play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.ntx-sa__video-wrap:hover .ntx-sa__play-btn {
  transform: scale(1.1);
  background: #fff;
}
.ntx-sa__play-btn svg { width: 26px; height: 26px; margin-left: 4px; }

/* ══════════════════════════════════════
   SEKTION B: Avatar-Tabs
══════════════════════════════════════ */
.ntx-sb {
  padding: 0 20px 80px;
  background: #18264e;
}
.ntx-sb__inner {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* Tabs */
.ntx-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 600px) {
  .ntx-tabs { flex-direction: row; align-items: stretch; }
}
.ntx-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  opacity: 0.5;
}
.ntx-tab:hover { opacity: 0.8; }
.ntx-tab.ntx-tab--active {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.15);
  opacity: 1;
}
.ntx-tab__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #d4ddf5;
  flex-shrink: 0;
  overflow: hidden;
}
.ntx-tab__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ntx-tab__name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
.ntx-tab__role {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 2px;
}

/* Panels */
.ntx-panel {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s ease;
}
@media (min-width: 700px) {
  .ntx-panel { flex-direction: row; }
}
.ntx-panel--hidden { display: none; }
.ntx-panel__img {
  position: relative;
  min-height: 240px;
  background: #d4ddf5;
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .ntx-panel__img { width: 30%; min-height: 360px; }
}
.ntx-panel__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 699px) {
  .ntx-panel__img img { object-position: center center; }
  .ntx-panel__img { min-height: 320px; }
}
.ntx-panel__body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 700px) {
  .ntx-panel__body { width: 70%; }
}
.ntx-panel__quote {
  font-size: 17px;
  font-weight: 700;
  color: #18264e;
  margin-bottom: 16px;
  line-height: 1.35;
}
.ntx-panel__text {
  color: rgba(27,45,92,0.6);
  font-size: 14.5px;
  line-height: 1.7;
}
.ntx-panel__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(27,45,92,0.1);
}
.ntx-panel__author {
  font-weight: 700;
  color: #18264e;
  font-size: 15px;
}
.ntx-panel__company {
  color: rgba(27,45,92,0.45);
  font-size: 13px;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   SEKTION 1: Partner & Community
══════════════════════════════════════ */
.ntx-s3 {
  padding: 80px 20px;
  background: #fff;
}
.ntx-s3__inner { max-width: 1100px; margin: 0 auto; }
.ntx-s3__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #18264e;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 520px;
  margin-bottom: 16px;
}
.ntx-s3__sub {
  color: rgba(27,45,92,0.5);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 48px;
}
.ntx-s3__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .ntx-s3__grid { grid-template-columns: 2fr 1fr; }
}
.ntx-card {
  border-radius: 24px;
  padding: 40px;
}
.ntx-card--light { background: #EEF2FF; }
.ntx-card--dark  { background: #18264e; }
.ntx-card__body {
  color: rgba(27,45,92,0.65);
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ntx-card__body strong { color: #18264e; font-weight: 600; }
.ntx-card__body .ntx-muted { }
.ntx-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ntx-checklist__item { display: flex; align-items: center; gap: 10px; }
.ntx-check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #3B6BF8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ntx-check-icon svg { width: 10px; height: 10px; }
.ntx-checklist__label { font-weight: 600; color: #18264e; font-size: 14px; }
.ntx-checklist--white .ntx-checklist__label { color: rgba(255,255,255,0.7); font-weight: 500; }
.ntx-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ntx-tag {
  background: #18264e;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 10px;
}
.ntx-card--dark h3 {
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.ntx-card--dark p {
  color: rgba(255,255,255,0.55);
  font-size: 14px; line-height: 1.7;
}
.ntx-card--dark p + p { margin-top: 12px; }
.ntx-card--dark strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* ══════════════════════════════════════
   SEKTION 2: Unsere Geschichte
══════════════════════════════════════ */
.ntx-s4 {
  padding: 80px 20px;
  background: #18264e;
}
.ntx-s4__inner { max-width: 1100px; margin: 0 auto; }
.ntx-s4__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.ntx-s4__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .ntx-s4__grid { grid-template-columns: 1fr 1fr; }
}
.ntx-s4__text {
  display: flex; flex-direction: column; gap: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 15px; line-height: 1.75;
}
.ntx-s4__text strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.ntx-s4__text em { color: rgba(255,255,255,0.65); font-style: normal; }
.ntx-s4__cta { color: #3B6BF8; font-weight: 600; }
.ntx-s4__imgwrap { position: relative; min-height: 380px; }
.ntx-s4__imgbox {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
}
.ntx-s4__imgbox img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ntx-s4__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 20px;
}
.ntx-s4__stat { text-align: center; }
.ntx-s4__stat-num {
  font-size: 24px; font-weight: 800; line-height: 1;
}
.ntx-s4__stat-num--blue { color: #3B6BF8; }
.ntx-s4__stat-num--navy { color: #18264e; }
.ntx-s4__stat-label {
  font-size: 11px; color: rgba(27,45,92,0.5);
  font-weight: 500; margin-top: 4px;
}
.ntx-s4__divider { width: 1px; height: 40px; background: rgba(27,45,92,0.1); }

/* ══════════════════════════════════════
   SEKTION 3: 3 Schritte
══════════════════════════════════════ */
.ntx-s5 { padding: 80px 20px; background: #fff; }
.ntx-s5__inner { max-width: 960px; margin: 0 auto; }
.ntx-s5__header { text-align: center; margin-bottom: 56px; }
.ntx-s5__headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800; color: #18264e;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.ntx-s5__sub {
  color: rgba(27,45,92,0.5);
  font-size: 15px; line-height: 1.6;
  max-width: 380px; margin: 0 auto;
}
.ntx-s5__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .ntx-s5__grid { grid-template-columns: repeat(3, 1fr); }
}
.ntx-step {
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.ntx-step--blue  { background: #3B6BF8; }
.ntx-step--navy  { background: #18264e; }
.ntx-step--light { background: #EEF2FF; }
.ntx-step__num {
  position: absolute;
  top: -8px; right: -4px;
  font-size: 88px; font-weight: 900;
  line-height: 1; pointer-events: none; user-select: none;
}
.ntx-step--blue  .ntx-step__num { color: rgba(255,255,255,0.1); }
.ntx-step--navy  .ntx-step__num { color: rgba(255,255,255,0.07); }
.ntx-step--light .ntx-step__num { color: rgba(27,45,92,0.06); }
.ntx-step__content { position: relative; z-index: 1; }
.ntx-step__label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.ntx-step--blue  .ntx-step__label { color: rgba(255,255,255,0.6); }
.ntx-step--navy  .ntx-step__label { color: rgba(255,255,255,0.5); }
.ntx-step--light .ntx-step__label { color: #3B6BF8; }
.ntx-step__title {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.2;
}
.ntx-step--blue  .ntx-step__title { color: #fff; }
.ntx-step--navy  .ntx-step__title { color: #fff; }
.ntx-step--light .ntx-step__title { color: #18264e; }
.ntx-step__text { font-size: 14px; line-height: 1.65; }
.ntx-step--blue  .ntx-step__text { color: rgba(255,255,255,0.7); }
.ntx-step--navy  .ntx-step__text { color: rgba(255,255,255,0.6); }
.ntx-step--light .ntx-step__text { color: rgba(27,45,92,0.6); }
.ntx-s5__cta { text-align: center; }
.ntx-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  background: #3B6BF8;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  max-width: 320px;
}
.ntx-btn:hover { background: #2a5ae0; }
@media (min-width: 480px) { .ntx-btn { width: auto; } }
.ntx-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Lightbox ── */
.ntx-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.ntx-lightbox.ntx-lightbox--open { display: flex; }
.ntx-lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.ntx-lightbox__inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; border-radius: 16px;
}
.ntx-lightbox__close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%;
  color: #fff; font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ntx-lightbox__close:hover { background: rgba(255,255,255,0.3); }
