:root {
  --bg: #050812;
  --bg-soft: #0b1220;
  --text: #08111f;
  --muted: #617089;
  --white: #ffffff;
  --blue: #2f63ff;
  --blue-2: #1d8bff;
  --cyan: #43d6c0;
  --green: #25c072;
  --border: rgba(148, 163, 184, .22);
  --card: #ffffff;
  --soft: #f4f7fb;
  --shadow: 0 24px 80px rgba(8, 17, 31, .18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: .25s ease;
}

.site-header.scrolled {
  top: 10px;
}

.nav-shell {
  width: min(1180px, calc(100% - 24px));
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.035em;
  color: #111827;
}

.brand img,
.brand-mark {
  width: 32px;
  height: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #253047;
  padding: 10px 14px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(47, 99, 255, .09);
}

.main-nav .nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 24px rgba(47, 99, 255, .28);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #101828;
  margin: 5px auto;
  border-radius: 2px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 36px rgba(47, 99, 255, .28);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: var(--border);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: #ffffff;
}

.hero-image {
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 140px 0 70px;
}

.hero-image .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("img/hero-start.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.005);
}

.hero-image .hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 18, .82) 0%,
      rgba(5, 8, 18, .66) 28%,
      rgba(5, 8, 18, .34) 56%,
      rgba(5, 8, 18, .16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 18, .30) 0%,
      rgba(5, 8, 18, .06) 45%,
      rgba(5, 8, 18, .72) 100%
    );
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40vw;

  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(14, 165, 233, .18) 0%,
      rgba(14, 165, 233, .07) 38%,
      transparent 39%
    );
  opacity: .68;
}

.hero-image::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 0;
  width: 42vw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      245deg,
      rgba(67, 214, 192, .12) 0%,
      rgba(67, 214, 192, .05) 42%,
      transparent 43%
    );
  opacity: .50;
}

.hero-frame {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(100%, 620px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #63f3ff;
  font-size: .76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #43d6c0;
  box-shadow:
    0 0 0 9px rgba(67, 214, 192, .18),
    0 0 34px rgba(67, 214, 192, .48);
}

.hero-image h1 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 3.45vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-image .hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.62;
  font-weight: 500;
}

.hero-image .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-image .btn {
  min-height: 48px;
  padding: 0 23px;
  font-size: .92rem;
}

.hero-image .btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 36px;
}

.hero-facts > div {
  min-height: 88px;
  padding: 16px 17px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.hero-facts strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-facts span {
  display: block;
  color: rgba(234, 240, 255, .76);
  font-size: .82rem;
  line-height: 1.42;
}

/* Legacy Hero-Fallback, falls andere Seite noch alte Klassen nutzt */

.hero-fullscreen {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 124px 0 70px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(47, 99, 255, .16);
  border-radius: 999px;
  background: rgba(47, 99, 255, .08);
  color: var(--blue-2);
  font-weight: 750;
  font-size: 13px;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .20);
  color: #c9e7ff;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}

.hero-lead {
  font-size: clamp(17px, 1.7vw, 21px);
  color: #c8d5eb;
  max-width: 760px;
  margin: 0 0 34px;
}

.hero-actions,
.demo-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.proof-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.proof-grid strong {
  display: block;
  font-size: 15px;
}

.proof-grid span {
  display: block;
  margin-top: 5px;
  color: #b8c7dd;
  font-size: 13px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.panel-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
}

.panel-header {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  margin-bottom: 12px;
}

.panel-header p {
  margin: 0;
  color: #b7c7dc;
}

.panel-header strong {
  font-size: 20px;
}

.mapping-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: rgba(4, 10, 22, .42);
  color: #d5e2f5;
}

.mapping-row b {
  color: #ffffff;
  font-size: 13px;
}

.mapping-row.active {
  border-color: rgba(67, 214, 192, .48);
}

.quality-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(37, 192, 114, .10);
  border: 1px solid rgba(37, 192, 114, .25);
}

.quality-box span {
  color: #9fe2bd;
}

.quality-box strong {
  display: block;
  margin: 4px 0 12px;
}

.quality-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.quality-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
}

/* Trust Strip */

.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #e8edf5;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
}

.trust-items span {
  font-weight: 750;
  color: #334155;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f6fb;
}

/* Sections */

.section {
  padding: 104px 0;
}

.section.light {
  background: #ffffff;
}

.section h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1fr);
}

.decision-card,
.ai-card,
.security-card,
.module-card,
.contact-form,
.contact-aside,
.legal-card {
  border: 1px solid #e3e9f3;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.decision-card {
  padding: 30px;
}

.decision-card span {
  font-weight: 800;
  color: var(--blue);
}

.decision-card h3 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 10px 0 20px;
}

.decision-card ul,
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.decision-card li,
.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #334155;
}

.decision-card li::before,
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

/* Setup */

.setup {
  background: linear-gradient(180deg, #f5f8fc, #ffffff);
}

.section-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px;
  border: 1px solid #e3e9f3;
  border-radius: 20px;
  background: #ffffff;
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
}

.steps h3,
.module-card h3,
.security-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
}

/* AI */

.ai-section {
  background: var(--bg-soft);
  color: #ffffff;
}

.ai-section p {
  color: #b8c7dc;
}

.ai-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  border-color: rgba(255, 255, 255, .16);
  padding: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.ai-bubble {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
}

.ai-result {
  margin-top: 14px;
  padding: 16px;
  border-radius: 15px;
  background: rgba(67, 214, 192, .14);
  border: 1px solid rgba(67, 214, 192, .28);
  color: #bdf8ec;
}

.small-note {
  font-size: 14px !important;
}

/* Modules */

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 390px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-card {
  padding: 26px;
  box-shadow: none;
}

.module-card.featured {
  background: var(--bg-soft);
  color: #ffffff;
  border-color: #16243a;
  box-shadow: 0 24px 70px rgba(11, 18, 32, .24);
}

.module-card.featured p {
  color: #b8c7dc;
}

.icon {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
}

.featured .icon {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

/* Dark Use Case Section */

.dark {
  background: var(--bg);
  color: #ffffff;
}

.dark p {
  color: #b8c7dc;
}

.dark .section-kicker {
  color: #bfe9ff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.dark .checklist li {
  color: #d9e5f5;
}

/* Slideshow */

.slideshow {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  background: #0c1424;
}

.slides {
  position: relative;
  aspect-ratio: 16 / 10;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease;
}

.slide.active {
  opacity: 1;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(5, 8, 18, .58);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.slide-btn.prev {
  left: 14px;
}

.slide-btn.next {
  right: 14px;
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
}

.dots button.active {
  background: #ffffff;
}

/* Demo / Pricing / CTA */

.demo-section {
  background: #f5f8fc;
}

.demo-box,
.pricing-card,
.final-box {
  border-radius: 24px;
  padding: 44px;
  background: #ffffff;
  border: 1px solid #e3e9f3;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.security-card {
  padding: 24px;
  box-shadow: none;
}

.pricing {
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.pricing-card h2 {
  color: var(--blue);
}

.final-cta {
  padding: 100px 0;
  background: var(--bg);
  color: #ffffff;
}

.final-box {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, rgba(47, 99, 255, .18), rgba(67, 214, 192, .12));
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.final-box h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 0 0 16px;
}

.final-box p {
  color: #bfd0e8;
  margin: 0 auto 28px;
  max-width: 680px;
}

/* Footer */

.site-footer {
  background: #03050b;
  color: #dbe7f6;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 30px;
  align-items: center;
}

.footer-brand img {
  width: 30px;
}

.site-footer p {
  color: #8ea0b9;
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: #ffffff;
}

.copyright {
  text-align: right;
}

/* Subpages */

.subpage {
  background: #f5f8fc;
}

.page-hero {
  padding: 150px 0 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 99, 255, .25), transparent 30%),
    var(--bg);
  color: #ffffff;
}

.page-hero p {
  color: #c7d5ea;
  font-size: 19px;
  max-width: 720px;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.contact-form,
.contact-aside,
.legal-card {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
  font-weight: 750;
  color: #1c2638;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8e0ec;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500 !important;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-success,
.form-error {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-success {
  background: rgba(37, 192, 114, .12);
  color: #08723f;
}

.form-error {
  background: rgba(220, 38, 38, .10);
  color: #b42318;
}

.form-note {
  font-size: 14px !important;
  margin-top: 14px !important;
}

.dark-text li {
  color: #334155;
}

/* Legal */

.legal-card {
  max-width: 900px;
}

.legal-card h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 28px 0 8px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #42526a;
}

.legal-card a,
.contact-form a {
  color: var(--blue);
  font-weight: 750;
}

/* Tablet */

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .proof-grid,
  .steps,
  .module-grid,
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .demo-box,
  .pricing-card {
    display: block;
  }

  .demo-actions {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .hero-image {
    min-height: auto;
    padding: 122px 0 58px;
  }

  .hero-image .hero-bg {
    background-position: 62% center;
  }

  .hero-image .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(5, 8, 18, .90) 0%,
        rgba(5, 8, 18, .78) 48%,
        rgba(5, 8, 18, .44) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5, 8, 18, .30) 0%,
        rgba(5, 8, 18, .26) 46%,
        rgba(5, 8, 18, .84) 100%
      );
  }

  .hero-frame {
    width: min(100% - 28px, 1160px);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: .68rem;
    letter-spacing: .06em;
    line-height: 1.25;
  }

  .hero-image h1 {
    max-width: 560px;
    font-size: clamp(2.25rem, 9vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .hero-image .hero-lead {
    max-width: 540px;
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.58;
  }

  .hero-image .hero-actions {
    margin-top: 28px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-top: 28px;
  }

  .hero-facts > div {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-grid {
    gap: 34px;
  }

  .proof-grid,
  .steps,
  .module-grid,
  .security-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 130px 0 56px;
  }

  .hero-panel {
    display: none;
  }

  .demo-box,
  .pricing-card,
  .final-box,
  .contact-form,
  .contact-aside,
  .legal-card {
    padding: 24px;
  }

  .footer-grid {
    gap: 20px;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .slides {
    aspect-ratio: 4 / 3;
  }
}

/* Small Mobile */

@media (max-width: 520px) {
  .hero-image {
    padding: 112px 0 52px;
  }

  .hero-image .hero-bg {
    background-position: 66% center;
  }

  .hero-image h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-image .hero-actions .btn {
    width: 100%;
  }

  .nav-shell {
    width: min(100% - 20px, 1180px);
  }
}

/* =========================================================
   FlexiImport - überarbeiteter Seitenabschluss
   Keine öffentliche Demo, Fokus auf geführte Produktdemo
   ========================================================= */

.guided-demo-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 99, 255, .13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(67, 214, 192, .12), transparent 34%),
    linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.guided-demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e3e9f3;
  box-shadow: 0 34px 90px rgba(8, 17, 31, .14);
}

.guided-demo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guided-demo-content h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.guided-demo-content p {
  max-width: 760px;
}

.guided-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.guided-demo-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 0%, rgba(67, 214, 192, .18), transparent 36%),
    linear-gradient(180deg, #101827 0%, #07111f 100%);
  box-shadow:
    0 26px 70px rgba(8, 17, 31, .22),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.demo-panel-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #c9fbf2;
  background: rgba(67, 214, 192, .12);
  border: 1px solid rgba(67, 214, 192, .26);
  font-size: .78rem;
  font-weight: 850;
}

.guided-demo-panel h3 {
  margin: 0 0 20px;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.demo-flow {
  display: grid;
  gap: 12px;
}

.demo-flow > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 13px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11);
}

.demo-flow span {
  grid-row: span 2;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: .78rem;
  font-weight: 900;
}

.demo-flow strong {
  display: block;
  margin-top: 1px;
  font-size: .95rem;
  letter-spacing: -0.02em;
}

.demo-flow p {
  grid-column: 2;
  margin: 4px 0 0;
  color: rgba(226, 236, 255, .74);
  font-size: .86rem;
  line-height: 1.45;
}

.security-grid-refined {
  align-items: stretch;
}

.security-grid-refined > div:first-child p {
  max-width: 560px;
}

.pricing-refined {
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 99, 255, .10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.pricing-card-refined {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: center;
  padding: 42px;
}

.pricing-card-refined h2 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(30px, 3.6vw, 48px);
}

.pricing-card-refined p {
  max-width: 760px;
}

.price-box {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 99, 255, .24), transparent 42%),
    #07111f;
  box-shadow: 0 26px 70px rgba(8, 17, 31, .24);
}

.price-box span {
  display: block;
  color: rgba(226, 236, 255, .72);
  font-size: .78rem;
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin-top: 2px;
  font-size: 3.15rem;
  line-height: .95;
  letter-spacing: -0.06em;
}

.price-box small {
  display: block;
  margin-top: 4px;
  color: rgba(226, 236, 255, .82);
  font-weight: 700;
}

.price-box p {
  max-width: 160px;
  margin: 14px 0 20px;
  color: rgba(226, 236, 255, .70);
  font-size: .82rem;
  line-height: 1.45;
}

.price-box .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: .84rem;
}

.final-cta-refined {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(67, 214, 192, .20), transparent 32%),
    radial-gradient(circle at 84% 28%, rgba(47, 99, 255, .24), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #102a6b 100%);
}

.final-box-refined {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  text-align: left;
  padding: 46px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
}

.final-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #71f0dc;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-box-refined h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
}

.final-box-refined p {
  max-width: 720px;
  margin: 18px 0 0;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.final-actions .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .guided-demo-card,
  .pricing-card-refined,
  .final-box-refined {
    grid-template-columns: 1fr;
  }

  .final-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .final-actions .btn {
    width: auto;
  }
}

@media (max-width: 700px) {
  .guided-demo-card,
  .pricing-card-refined,
  .final-box-refined {
    padding: 26px;
    border-radius: 22px;
  }

  .guided-demo-panel {
    padding: 22px;
  }

  .demo-flow > div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }

  .price-box {
    min-height: auto;
  }
}

/* =========================================================
   FlexiImport - KI Abschnitt ausgewogener
   ========================================================= */

.ai-section-refined {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 99, 255, .18), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(67, 214, 192, .13), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #0b1220 100%);
}

.ai-layout-refined {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
  gap: 56px;
  align-items: center;
}

.ai-copy-refined h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.ai-copy-refined p {
  max-width: 700px;
  color: rgba(219, 231, 246, .82);
}

.ai-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 22px;
  padding: 0;
  list-style: none;
}

.ai-benefits li {
  position: relative;
  padding-left: 32px;
  color: rgba(244, 248, 255, .92);
  font-weight: 650;
}

.ai-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07111f;
  background: #43d6c0;
  font-size: .78rem;
  font-weight: 950;
}

.ai-section-refined .small-note {
  max-width: 680px;
  margin-top: 18px !important;
  color: rgba(184, 199, 220, .78);
}

.ai-workbench-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .065));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
}

.ai-workbench-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(67, 214, 192, .16);
  filter: blur(4px);
}

.ai-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.ai-card-header span {
  color: rgba(226, 236, 255, .74);
  font-size: .86rem;
  font-weight: 750;
}

.ai-card-header strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #bffff5;
  background: rgba(67, 214, 192, .12);
  border: 1px solid rgba(67, 214, 192, .24);
  font-size: .78rem;
}

.ai-input-box,
.ai-prompt-box,
.ai-output-box {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 18px;
  margin-top: 12px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
}

.ai-input-box small,
.ai-prompt-box small,
.ai-output-box small {
  display: block;
  margin-bottom: 9px;
  color: rgba(226, 236, 255, .58);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(47, 99, 255, .24);
  border: 1px solid rgba(120, 153, 255, .32);
  font-size: .8rem;
  font-weight: 800;
}

.ai-prompt-box p,
.ai-output-box p {
  margin: 0;
  color: rgba(244, 248, 255, .92);
  font-size: .96rem;
  line-height: 1.55;
}

.ai-output-box {
  background: rgba(67, 214, 192, .12);
  border-color: rgba(67, 214, 192, .26);
}

.ai-output-box p {
  color: #d8fff8;
}

.ai-status-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.ai-status-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: rgba(244, 248, 255, .90);
  background: rgba(5, 8, 18, .34);
  border: 1px solid rgba(255, 255, 255, .11);
  font-size: .82rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .ai-layout-refined {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ai-copy-refined h2 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .ai-workbench-card {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .ai-workbench-card {
    padding: 18px;
    border-radius: 22px;
  }

  .ai-status-row {
    grid-template-columns: 1fr;
  }

  .ai-copy-refined h2 {
    font-size: clamp(28px, 9vw, 38px);
  }
}

/* =========================================================
   FlexiImport Footer - hochwertiger und besser sichtbar
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 68px 0 28px;
  color: #dbe7f6;
  background:
    radial-gradient(circle at 14% 0%, rgba(47, 99, 255, .22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(67, 214, 192, .12), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #03050b 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(67, 214, 192, .55),
    rgba(47, 99, 255, .55),
    transparent
  );
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(420px, .9fr);
  gap: 64px;
  align-items: start;
}

.footer-main {
  max-width: 520px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(47, 99, 255, .28);
}

.footer-main p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(219, 231, 246, .72);
  font-size: 1rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-links div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(219, 231, 246, .72);
  font-size: .94rem;
  line-height: 1.35;
  transition: .18s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(219, 231, 246, .56);
  font-size: .88rem;
}

.footer-grid,
.footer-brand,
.copyright {
  all: unset;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 38px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 54px 0 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-logo {
    font-size: 1.18rem;
  }

  .footer-logo img {
    width: 34px;
    height: 34px;
  }
}