/* ══════════════════════════════════════════════
   NTX Digital — unified stylesheet
   Navy  #18264e   Blue  #3B6BF8   Light  #EEF2FF
═══════════════════════════════════════════════ */

:root {
  --navy: #18264e;
  --blue: #3B6BF8;
  --blue-hov: #2a5ae0;
  --light: #EEF2FF;
  --ink: #1B2D5C;
  --text-muted: rgba(27,45,92,0.65);
  --text-sub: rgba(27,45,92,0.5);
  --white: #ffffff;
  --nav-h: 72px;
  --container: 1200px;
  --radius: 24px;
  --radius-sm: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 860px; }

.hl { color: var(--blue); }
.line-through { position: relative; display: inline-block; opacity: 0.6; }
.line-through::after {
  content: ""; position: absolute; left: -4%; right: -4%; top: 52%;
  height: 4px; background: currentColor; border-radius: 4px;
  transform: rotate(-3deg);
}

/* ══ Fades ══ */
.fade-up, .fade-left, .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);
}
.fade-up { translate: 0 32px; }
.fade-left { translate: -40px 0; }
.fade-right { translate: 40px 0; }
.fade-up.is-visible, .fade-left.is-visible, .fade-right.is-visible { opacity: 1; translate: 0 0; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ══ Buttons ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 600px) {
  .btn { padding: 13px 20px; font-size: 14.5px; white-space: normal; }
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hov); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,107,248,0.35); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(27,45,92,0.2); }
.btn--ghost:hover { background: var(--light); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ══ NAV ══ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(27,45,92,0.08);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}
.nav__logo img { height: 34px; width: auto; }
.nav__menu { display: flex; gap: 24px; margin-left: 32px; flex: 1; }
.nav__menu a {
  color: var(--ink); font-weight: 500; font-size: 14.5px;
  padding: 6px 2px; position: relative;
}
.nav__menu a:hover { color: var(--blue); }
.nav__cta { padding: 10px 18px; font-size: 14px; }
.nav__toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(27,45,92,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  }
  .nav__menu.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(27,45,92,0.06); }
}

/* ══ HERO — Split Layout ══ */
.hero {
  padding: 60px 20px 40px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,107,248,0.08), transparent 60%), #fff;
}
@media (min-width: 900px) {
  .hero { padding: 80px 20px 80px; }
}
.hero__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner--split {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    text-align: left;
  }
}
.hero__left { display: flex; flex-direction: column; }
.hero__title {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .hero__sub { max-width: 540px; }
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero__ctas .btn { flex: 1 1 auto; min-width: 0; }
@media (min-width: 520px) {
  .hero__ctas .btn { flex: 0 0 auto; }
}
@media (min-width: 900px) {
  .hero__ctas { justify-content: flex-start; }
}
.hero__right { display: none; justify-content: center; }
@media (min-width: 900px) {
  .hero__right { display: flex; }
}
.hero__logos { max-width: var(--container); margin: 56px auto 0; padding: 0 20px; }
/* Hero Dashboard Mockup */
.hero-mock {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/11;
}
.hero-mock--small { max-width: 440px; }
.hero-mock__main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(27,45,92,0.12);
}
.hero-mock__float {
  position: absolute;
  z-index: 2;
  animation: floatUpDown 3s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(27,45,92,0.12);
  border-radius: 14px;
}
.hero-mock__float.image-16 {
  width: 44%;
  top: 8%;
  left: -14%;
}
.hero-mock__float.image-17 {
  width: 50%;
  bottom: -8%;
  right: -12%;
  animation-delay: 1.5s;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@media (max-width: 700px) {
  .hero-mock__float.image-16 { left: -6%; width: 44%; }
  .hero-mock__float.image-17 { right: -6%; width: 48%; }
}

/* Text-Strikethrough-Container */
.textspan_01 { position: relative; display: inline-block; color: inherit; }

.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-marquee__track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.logo-marquee__track img { height: 38px; width: auto; opacity: 0.65; filter: grayscale(1); }
.logo-marquee__track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ Generic Section ══ */
.section { padding: 60px 20px; }
.section--no-pb { padding-bottom: 40px; }
@media (min-width: 900px) {
  .section { padding: 80px 20px; }
}
.section--light { background: #fff; }
.section--dark { background: var(--navy); color: #fff; }
.section--quality { background: var(--light); }
.section--cta-band { background: var(--navy); color: #fff; padding: 60px 20px; }
.section__header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section--dark .section__title { color: #fff; }
.section__sub {
  color: var(--text-sub);
  font-size: 1rem;
}
.section--dark .section__sub { color: rgba(255,255,255,0.6); }
.section__ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 48px; }

/* ══ 3 cols (schlaflose Nächte) ══ */
.three-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.three-cols__item {
  background: var(--light); padding: 40px 28px; border-radius: var(--radius);
  text-align: center;
}
.three-cols__num { font-size: 52px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.three-cols__title { font-size: 22px; font-weight: 700; color: var(--navy); }

/* ══ feat-grid (Planbare Termine / Mehr Zeit / Vertriebssystem) ══ */
.feat-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feat-grid--reverse .feat-grid__text { order: 2; }
  .feat-grid--reverse .feat-grid__media { order: 1; }
}
.feat-grid__icon { width: 56px; height: 56px; margin-bottom: 20px; }
.feat-grid__text h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 20px; }
.section--dark .feat-grid__text p { color: rgba(255,255,255,0.7); }
.feat-grid__text p { color: var(--text-muted); margin-bottom: 28px; }
.feat-grid__text .btn { margin-top: 8px; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin: 0 0 28px; }
.checklist li {
  padding-left: 32px; position: relative;
  color: var(--ink); font-weight: 500; font-size: 15px;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.checklist--dark li { color: #fff; }
.checklist--center { align-items: center; margin-left: auto; margin-right: auto; }

/* collage */
.collage {
  position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin: 0 auto;
}
.collage img { position: absolute; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.collage__a { top: 0; left: 0; width: 66%; aspect-ratio: 4/3; object-fit: cover; z-index: 1; }
.collage__b { bottom: 0; right: 0; width: 58%; aspect-ratio: 1/1; object-fit: cover; z-index: 2; }
.collage__c { top: 36%; right: 4%; width: 32%; aspect-ratio: 1/1; object-fit: cover; z-index: 3; }
.collage--light img { box-shadow: 0 24px 60px rgba(27,45,92,0.12); }

/* ══ VSL Embed (Tella) — Blue frame + dismissable blur ══ */
.vsl { padding: 40px 20px 40px; background: #fff; }
@media (min-width: 900px) { .vsl { padding: 80px 20px 80px; } }
.vsl__inner { max-width: 960px; margin: 0 auto; position: relative; }
.vsl__frame {
  position: relative;
  padding: 6px;
  border-radius: calc(var(--radius) + 6px);
  background: #3B6BF8;
  box-shadow: 0 0 0 1px #3B6BF8, 0 28px 70px rgba(59,107,248,0.22);
  animation: vslBreathe 5s ease-in-out infinite;
}
@keyframes vslBreathe {
  0%, 100% { box-shadow: 0 0 0 1px #3B6BF8, 0 28px 70px rgba(59,107,248,0.22); }
  50%      { box-shadow: 0 0 0 1px #3B6BF8, 0 36px 110px rgba(59,107,248,0.45); }
}
.vsl__wrap {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  background: #18264e;
  cursor: pointer;
}
.vsl__wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; display: block;
}
/* (vsl__blur entfernt — blockte dauerhaft, weil iframe-clicks nicht bubbln) */

/* ══ Toggle (3-Tab: Mehr Termine / Zeit / Planbarkeit) ══ */
.toggle { max-width: 1100px; margin: 0 auto; }
.toggle__bar {
  display: flex; gap: 8px; padding: 6px;
  background: #fff; border-radius: 999px;
  max-width: 560px; margin: 0 auto 48px;
  box-shadow: 0 10px 40px rgba(27,45,92,0.08);
}
.toggle__tab {
  flex: 1; padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; color: var(--text-sub);
  transition: background 0.2s, color 0.2s;
}
.toggle__tab:hover { color: var(--navy); }
.toggle__tab.is-active { background: var(--blue); color: #fff; box-shadow: 0 6px 20px rgba(59,107,248,0.3); }
.toggle__content { position: relative; }
.toggle__panel { display: none; opacity: 0; transition: opacity 0.35s ease; }
.toggle__panel.is-active { display: block; opacity: 1; }
.toggle__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .toggle__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.toggle__icon { width: 52px; height: 52px; margin-bottom: 16px; }
.toggle__text h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.toggle__text p { color: var(--text-muted); margin-bottom: 24px; }

/* ══ Community card (inline in dark section) ══ */
.community-card {
  max-width: 900px; margin: 64px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 40px;
}
.community-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.community-card p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.community-card__features { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .community-card__features { grid-template-columns: repeat(3, 1fr); } }
.community-card__feat { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 500; }

/* ══ q-compare (Qualität vs Quantität) ══ */
.q-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; max-width: 860px; margin: 0 auto; }
.q-compare__col { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: 0 20px 60px rgba(27,45,92,0.08); }
.q-compare__col--bad { opacity: 0.65; }
.q-compare__col--good { border: 2px solid var(--blue); }
.q-compare__head { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.q-check { color: var(--blue); }
.q-compare__col ul li { padding: 8px 0; color: var(--text-muted); border-bottom: 1px solid rgba(27,45,92,0.06); }
.q-compare__vs { font-weight: 800; color: var(--blue); font-size: 20px; }
@media (max-width: 700px) {
  .q-compare { grid-template-columns: 1fr; }
  .q-compare__vs { text-align: center; }
}

/* ══ vs-compare (Glücksspiel vs System) ══ */
.section--vs { background-size: cover; background-position: center; color: #fff; }
.vs-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; text-align: center; }
.vs-compare__col { padding: 40px 24px; background: rgba(255,255,255,0.06); border-radius: var(--radius); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); }
.vs-compare__col--good { border-color: rgba(59,107,248,0.5); background: rgba(59,107,248,0.15); }
.vs-compare__emoji { font-size: 48px; margin-bottom: 16px; }
.vs-compare__head { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.vs-compare__col p { color: rgba(255,255,255,0.7); margin: 0; }
.vs-compare__sep { font-size: 24px; font-weight: 800; color: rgba(255,255,255,0.4); }
@media (max-width: 700px) { .vs-compare { grid-template-columns: 1fr; } }
@media (min-width: 900px) { .ntx-sa__grid { grid-template-columns: 36fr 64fr; gap: 64px; } }
@media (min-width: 600px) { .ntx-tabs { flex-direction: row; align-items: stretch; } }
@media (min-width: 700px) { .ntx-panel { flex-direction: row; } }
@media (min-width: 700px) { .ntx-panel__img { width: 30%; min-height: 360px; } }
@media (max-width: 699px) { .ntx-panel__img img { object-position: center center; } .ntx-panel__img { min-height: 320px; } }
@media (min-width: 700px) { .ntx-panel__body { width: 70%; } }
@media (min-width: 768px) { .ntx-s3__grid { grid-template-columns: 2fr 1fr; } }
@media (min-width: 900px) { .ntx-s4__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .ntx-s5__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 480px) { .ntx-btn { width: auto; } }

/* ══ Compare Cards — 3-Spalten-Grid mit NTX highlighted ══ */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 0;
}
@media (min-width: 900px) {
  .compare-cards {
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 16px;
    align-items: stretch;
  }
}
.compare-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(27,45,92,0.08);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.25s;
}
.compare-card--muted {
  background: #f7f8fc;
  color: var(--text-muted);
  opacity: 0.92;
}
.compare-card--muted:hover { opacity: 1; }
.compare-card--highlight {
  background: var(--blue);
  color: #fff;
  border: 0;
  box-shadow: 0 30px 70px rgba(59,107,248,0.35);
  padding-top: 44px;
}
@media (min-width: 900px) {
  .compare-card--highlight {
    transform: translateY(-16px);
    padding: 48px 32px 36px;
  }
  .compare-card--highlight:hover { transform: translateY(-20px); }
}
.compare-card__ribbon {
  position: absolute;
  top: 0; right: 24px;
  transform: translateY(-50%);
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15,26,58,0.15);
}
.compare-card__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(27,45,92,0.08);
  color: rgba(27,45,92,0.55);
  margin-bottom: 14px;
}
.compare-card__logo-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(15,26,58,0.2);
  margin-bottom: 14px;
}
.compare-card__logo-badge img { height: 22px; width: auto; display: block; }

.compare-card__head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(27,45,92,0.08);
}
.compare-card--highlight .compare-card__head {
  border-bottom-color: rgba(255,255,255,0.18);
}
.compare-card__head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.1;
}
.compare-card--highlight .compare-card__head h3 { color: #fff; }
.compare-card__head p {
  font-size: 13.5px;
  color: var(--text-sub);
  margin: 0;
  font-weight: 500;
}
.compare-card--highlight .compare-card__head p { color: rgba(255,255,255,0.75); }

.compare-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.compare-card__list li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
}
.compare-card--highlight .compare-card__list li {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.compare-card__list li::before {
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.compare-card__list li.is-yes::before {
  content: "✓";
  background: var(--blue);
  color: #fff;
}
.compare-card__list li.is-no::before {
  content: "✕";
  background: rgba(27,45,92,0.08);
  color: rgba(27,45,92,0.4);
  font-weight: 700;
  font-size: 10px;
}
.compare-card--highlight .compare-card__list li.is-yes::before {
  background: #fff;
  color: var(--blue);
}

/* ══ (Legacy compare-table — nicht mehr genutzt) ══ */
.compare-table { overflow: visible; padding: 60px 8px 60px; }
.compare-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
  background: transparent;
  overflow: visible;
}
.compare-table th, .compare-table td {
  padding: 20px 16px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid rgba(27,45,92,0.06);
}
.compare-table th {
  font-weight: 700;
  color: rgba(27,45,92,0.55);
  background: transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.compare-table .ok {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}
.compare-table .x { color: rgba(27,45,92,0.2); font-size: 18px; }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* Hervorgehobene NTX-Spalte — Brand-Blau Floating-Card, oben & unten überstehend */
.compare-table table th:last-child,
.compare-table table td:last-child {
  background: var(--blue);
  color: #fff;
  position: relative;
}
.compare-table table thead th:last-child {
  padding: 48px 20px 28px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -20px 40px rgba(59,107,248,0.18);
}
.compare-table table tbody tr:last-child td:last-child {
  padding: 24px 20px 48px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 30px 60px rgba(59,107,248,0.28);
}
.compare-table table tbody td:last-child {
  border-bottom-color: rgba(255,255,255,0.15);
  font-weight: 700;
}
.compare-table table td:last-child.ok { color: #fff; font-size: 22px; }
/* Weißes Badge mit NTX-Logo im Header */
.compare-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 6px 20px rgba(15,26,58,0.22);
}
.compare-table__badge img {
  height: 28px;
  width: auto;
  display: block;
  filter: none;
}

/* ══ feature cards ══ */
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 24px; transition: background 0.2s, transform 0.2s; }
.feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.feature-card img { width: 44px; height: 44px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin: 0; }

/* ══ stats grid ══ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.stat-box { background: var(--light); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.stat-box__num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-box__label { font-weight: 700; color: var(--navy); font-size: 15px; }
.stat-box__sub { font-size: 13px; color: var(--text-sub); margin-top: 4px; }

/* ══ cta-band ══ */
.cta-band { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.cta-band .checklist li { color: #fff; }
.cta-band .checklist li::before { background: var(--blue); }
.cta-band__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ══ case study ══ */
.case-study { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .case-study { grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; } }
.case-study__thumb { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: #000; }
.case-study__thumb img:first-child { width: 100%; height: 100%; object-fit: cover; }
.case-study__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.case-study__play img { width: 72px; height: 72px; }
.case-study__caption { margin-top: 20px; }
.case-study__quote { font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 4px; line-height: 1.3; }
.case-study__name { color: rgba(255,255,255,0.5); font-size: 14px; }
.case-study__name span { opacity: 0.7; }
.case-study__compare h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 24px; line-height: 1.3; }
.case-study__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .case-study__grid { grid-template-columns: 1fr 1fr; } }
.case-study__col { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 24px; }
.case-study__col--good { border-color: rgba(59,107,248,0.4); background: rgba(59,107,248,0.08); }
.case-study__col-head { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.case-study__col--bad .case-study__col-head { color: rgba(255,255,255,0.5); }
.case-study__col--good .case-study__col-head { color: var(--blue); }
.case-study__col ul { display: flex; flex-direction: column; gap: 10px; }
.case-study__col--bad ul li { padding-left: 24px; position: relative; color: rgba(255,255,255,0.55); font-size: 14px; }
.case-study__col--bad ul li::before { content:"✕"; position:absolute; left:0; top:0; color: rgba(255,255,255,0.3); font-weight: 800; }

/* ══ chat collage ══ */
.chat-collage { columns: 2; column-gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .chat-collage { columns: 1; } }
.chat-bubble {
  break-inside: avoid; margin: 0 0 16px;
  padding: 14px 18px; border-radius: 18px; font-size: 14px; line-height: 1.5;
  position: relative;
}
.chat-bubble p { margin: 0; }
.chat-bubble--left { background: #fff; color: var(--ink); border: 1px solid rgba(27,45,92,0.08); border-bottom-left-radius: 6px; box-shadow: 0 2px 8px rgba(27,45,92,0.04); }
.chat-bubble--right { background: var(--blue); color: #fff; border-bottom-right-radius: 6px; margin-left: 12px; box-shadow: 0 8px 24px rgba(59,107,248,0.25); }
.chat-bubble__time { display: block; font-size: 11px; margin-top: 6px; opacity: 0.6; }
.chat-disclaimer { font-size: 12px; color: var(--text-sub); text-align: center; margin-top: 40px; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ══ values-grid ══ */
.partner-intro { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.partner-intro h3 { font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 16px; }
.partner-intro p { color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.partner-intro__highlight { color: var(--blue) !important; font-weight: 600; }
.partner-intro .checklist { max-width: 360px; margin: 24px auto 0; }
.partner-intro .checklist li { color: #fff; text-align: left; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.value { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; transition: background 0.2s; }
.value:hover { background: rgba(255,255,255,0.08); }
.value img { width: 48px; height: 48px; margin: 0 auto 12px; }
.value span { color: #fff; font-size: 13px; font-weight: 600; display: block; }

/* ══ FAQ ══ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid rgba(27,45,92,0.08); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 4px 16px rgba(27,45,92,0.04); }
.faq__item summary { padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--blue); transition: transform 0.2s; }
.faq__item[open] summary::after { content: "−"; }
.faq__body { padding: 0 24px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.faq__body ul { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-direction: column; gap: 6px; }

/* ══ Final-CTA v2 — Portrait rechts, überragt Karte oben ══ */
.final-cta-v2 {
  padding: 60px 20px 40px;
  background: #fff;
  position: relative;
  overflow: visible;
}
@media (min-width: 820px) {
  .final-cta-v2 { padding: 180px 20px 40px; }
}
.final-cta-v2__wrap { max-width: 1100px; margin: 0 auto; }
.final-cta-v2__card {
  position: relative;
  background: var(--navy);
  border-radius: 24px;
  padding: 32px 24px 32px;
  overflow: visible;
  text-align: center;
  /* Scroll-driven scale (nur Desktop) */
  transform: none;
  transform-origin: center bottom;
  transition: transform 0.12s linear;
  will-change: transform;
}
.final-cta-v2__text p { margin-left: auto; margin-right: auto; max-width: 480px; }
.final-cta-v2__btn { margin-top: 24px; }
@media (min-width: 820px) {
  .final-cta-v2__card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    padding: 64px 64px 64px;
    min-height: 320px;
    text-align: left;
    border-radius: 28px;
  }
  .final-cta-v2__text p { margin-left: 0; margin-right: 0; }
}
@media (min-width: 820px) {
  .final-cta-v2__card {
    transform: scale(var(--card-scale, 0.75));
  }
}
.final-cta-v2__text { color: #fff; }
.final-cta-v2__text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800; color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.final-cta-v2__text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 480px;
}
.final-cta-v2__btn {
  margin-top: 24px;
  padding: 16px 36px;
  font-size: 16px;
}
.final-cta-v2__portrait {
  display: none;
  position: relative;
  min-height: 200px;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
}
@media (min-width: 820px) {
  .final-cta-v2__portrait { display: flex; }
}
@media (min-width: 820px) {
  .final-cta-v2__portrait {
    position: absolute;
    top: -360px;
    right: -40px;
    bottom: 0;
    width: 680px;
    min-height: auto;
    z-index: 2;
  }
}
.final-cta-v2__portrait img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.22))
    drop-shadow(0 40px 60px rgba(0,0,0,0.28));
}
@media (min-width: 820px) {
  .final-cta-v2__portrait img {
    max-height: 760px;
    filter:
      drop-shadow(0 30px 40px rgba(0,0,0,0.25))
      drop-shadow(0 60px 80px rgba(0,0,0,0.35));
  }
}
@media (min-width: 820px) {
  .final-cta-v2__portrait img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: none;
    height: 100%;
    max-width: 100%;
  }
}
/* Soft fade hinter dem Portrait */
.final-cta-v2__portrait::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 10%; right: 0;
  height: 120px;
  background: radial-gradient(ellipse at center bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0) 75%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.final-cta-v2__portrait img { position: relative; z-index: 1; }
@media (min-width: 820px) {
  .final-cta-v2__portrait img { position: absolute; z-index: 1; }
}

/* ══ final-cta mit Scroll-Zoom (legacy, nicht mehr genutzt) ══ */
.final-cta {
  position: relative; overflow: hidden;
  color: #fff; padding: 140px 20px; text-align: center;
  background: var(--navy);
}
.final-cta__bg { position: absolute; inset: 0; z-index: 0; }
.final-cta__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
  will-change: transform;
}
.final-cta__img.is-zoomed { transform: scale(1.22); }
.final-cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(24,38,78,0.75), rgba(24,38,78,0.88));
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta__inner { max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; }

/* ══ FOOTER — weiß ══ */
.footer { background: #fff; color: var(--ink); padding: 40px 20px 24px; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-sub); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; color: var(--text-muted); padding: 6px 0; font-size: 14.5px; }
.footer__col a:hover { color: var(--blue); }
.footer__col--brand .footer__logo img { height: 36px; margin-bottom: 16px; }
.footer__col--brand p { color: var(--text-muted); font-size: 14px; margin: 0; }
.footer__col p { color: var(--text-muted); font-size: 14.5px; margin: 0 0 10px; line-height: 1.6; }
.footer__bottom { max-width: var(--container); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(27,45,92,0.08); text-align: center; font-size: 13px; color: var(--text-sub); }

/* ══ Legal pages ══ */
.legal {
  max-width: 860px; margin: 0 auto; padding: 120px 24px 80px;
  color: var(--ink); line-height: 1.75;
}
.legal h1 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 32px; }
.legal h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.legal h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 28px 0 8px; }
.legal h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 20px 0 6px; }
.legal p { margin: 0 0 14px; color: var(--text-muted); font-size: 15.5px; }
.legal a { color: var(--blue); text-decoration: underline; word-break: break-word; }
.legal strong { color: var(--navy); }
.legal ul { padding-left: 20px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; color: var(--text-muted); }
