  /* =========================================================
       DESIGN TOKENS – hier kannst du Branding & Look anpassen
       ========================================================= */
  :root {
    /* Brand */
    --brand: #0B3D91;
    --brand-contrast: #ffffff;
    --accent: #FF8A00;
    --secondary: #1AA6B7;

    /* Surfaces & Text */
    --bg: #0A0F1F;
    /* Grundhintergrund */
    --bg-2: #0D1328;
    /* Sektion alternierend */
    --surface: #0F172A;
    /* Karten */
    --surface-2: #101a34;
    /* hellere Karten */
    --border: #1F2A44;
    --text: #F8FAFC;
    --muted: #A9B7D0;

    /* Effects */
    --shadow: 0 12px 36px rgba(0, 0, 0, .35);
    --ring: 0 0 0 3px rgba(26, 166, 183, .35);

    /* Layout */
    --radius: 16px;
    --container: min(1200px, 92vw);

    color-scheme: dark;
  }

  /* =========================
       Base
       ========================= */
  * {
    box-sizing: border-box
  }

  html,
  body {
    height: 100%
  }

  body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  a[data-underline]:hover {
    text-decoration: underline
  }

  .container {
    width: var(--container);
    margin: 0 auto
  }

  ::selection {
    background: rgba(17, 93, 221, .25)
  }

  /* =========================
       Aurora-Hintergrund (Body, weich & dezent)
       ========================= */
  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: -20% -10%;
    pointer-events: none;
    z-index: -2;
    filter: blur(40px) saturate(120%);
    background:
      radial-gradient(800px 420px at 8% 10%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 60%),
      radial-gradient(700px 380px at 92% 12%, color-mix(in srgb, var(--secondary) 22%, transparent), transparent 60%);
    opacity: .9;
    animation: aurora 18s ease-in-out infinite alternate;
  }

  body::after {
    background:
      radial-gradient(700px 420px at 15% 85%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 58%),
      radial-gradient(600px 320px at 85% 80%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 58%);
    opacity: .6;
    animation-duration: 22s;
  }

  @keyframes aurora {
    0% {
      transform: translate3d(0, 0, 0) scale(1)
    }

    100% {
      transform: translate3d(0, -2%, 0) scale(1.03)
    }
  }

  /* =========================
       Header & Navigation
       ========================= */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(160%) blur(10px);
    background: linear-gradient(to bottom, rgba(8, 12, 25, .85), rgba(8, 12, 25, .45));
    border-bottom: 1px solid var(--border);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: .9rem 0;
    font-weight: 600;
  }

  .nav .left,
  .nav .right:not(.right-mobile) {
    display: flex;
    align-items: center;
    gap: 1rem
  }

  .logo svg {
    /*width: clamp(148px, 12vw, 192px);*/
    width: 170px;
  }

  .nav .middle ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .8rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .chip {
    border: 1px solid var(--border);
    background: #0b1220cc;
    padding: 6px 10px;
    border-radius: 999px;
    color: #c9d4e5;
    font-weight: 600;
    font-size: .92rem
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .6rem 1rem;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .06s ease, color .2s ease, border-color .2s ease;
  }

  .btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text)
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, .06)
  }

  .btn-primary {
    background: var(--brand);
    color: var(--brand-contrast)
  }

  .btn-primary:hover {
    background: #174cb6
  }

  /* Burger */
  .right-mobile {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer
  }

  .burger span {
    display: block;
    height: 3px;
    width: 30px;
    background: var(--brand-contrast);
    border-radius: 2px
  }

  /* Offcanvas (mobil) */
  .panel {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 90;
    background: rgba(2, 6, 23, .65);
    backdrop-filter: blur(8px);
    height: 100vh;
  }

  .sheet {
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    /*background: var(--surface);*/
    border-left: 1px solid var(--border);
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    height: fit-content;
  }

  .sheet a {
    padding: .7rem .9rem;
    border: 1px solid var(--border);
    border-radius: .8rem;
    background: #0c1630;
  }

  .sheet .close {
    /* position: absolute; */
    top: 10px;
    right: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    /* aspect-ratio: 1/1; */
    width: fit-content;
    /* height: fit-content; */
    line-height: 11px;
    margin: 0 0 0 auto;
  }

  /* =========================
       Section Basics + Wellen-Divider
       ========================= */
  section {
    position: relative;
  }

  .section {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0
  }

  .section__title {
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem)
  }

  .muted {
    color: var(--muted)
  }

  /* Wave-Divider: straffer, sauberer Übergang zwischen Sektionen */
  .wave-top,
  .wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
  }

  .wave-top {
    top: -1px;
    transform: translateY(-150%)
  }

  .wave-bottom {
    bottom: -1px;
    transform: translateY(150%)
  }

  .wave svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleY(2) scaleX(3);

  }

  .wave svg.mirror{
    transform: rotate(180deg);
  }
  .wave svg.style2{
    transform: scaleY(1.5);
  }

  /* =========================
       HERO
       ========================= */
  .hero {
    padding: clamp(3rem, 6vw, 6rem) 0;
    overflow: hidden;
    background:
      radial-gradient(900px 420px at 8% 8%, rgba(23, 76, 182, .14), transparent 60%),
      radial-gradient(800px 360px at 92% 10%, rgba(26, 166, 183, .16), transparent 60%);
  }

  .hero__grid {
    display: grid;
    align-items: center;
    gap: 2rem;
    grid-template-columns: 1.05fr .95fr
  }

  h1{
    font-size:clamp(1.4rem, 1.2rem + 1vw, 2rem);
    
  }

  .hero__subtitle {
    max-width: 48ch;
    color: var(--muted)
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: .9rem 0 1.2rem
  }

  .hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem
  }

  .caps {
    display: grid;
    gap: .7rem
  }

  .cap {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem;
    border: 1px solid var(--border);
    border-radius: .9rem;
    background: #0d1733
  }

  .cap__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: .7rem;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    font-size: 1.1rem
  }

  .cap__body {
    display: grid;
    gap: .12rem
  }

  .cap__body span {
    color: var(--muted);
    font-size: .95rem
  }

  /* Trusted badges */
  .trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: .7rem
  }

  .badge {
    border: 1px solid var(--border);
    background: #0b1220;
    padding: 6px 10px;
    border-radius: 999px;
    color: #c9d4e5;
    font-weight: 600;
    font-size: .9rem
  }

  /* =========================
       Kennzahlen-Stripe (optional)
       ========================= */
  .metrics {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .02));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .metrics .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .metric {
    text-align: center
  }

  .metric strong {
    display: block;
    font-size: clamp(1.2rem, .8rem + 1.6vw, 2rem)
  }

  .metric span {
    color: var(--muted)
  }

  /* =========================
       Features
       ========================= */
  .feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem
  }

  .feature__icon {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand)
  }

  .feature__title {
    margin: .6rem 0 .3rem;
    font-size: 1.07rem
  }

  .feature__text {
    margin: 0;
    color: var(--muted)
  }

  /* =========================
       Anwendungsfälle
       ========================= */
  .usecases {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
  }

  .usecase h3 {
    margin: .4rem 0
  }

  .usecase p {
    margin: .2rem 0 0;
    color: var(--muted)
  }

  /* =========================
       Integrationen (Logo-Leiste)
       ========================= */
  .integrations {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }

  .logo-tile {
    display: grid;
    place-items: center;
    height: 60px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #0b1220;
    color: #c9d4e5;
    font-weight: 700;
    letter-spacing: .02em;
  }

  /* =========================
       Tiers-Teaser
       ========================= */
  .tiers {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr)
  }

  .tier .price {
    font-weight: 800;
    font-size: 1.05rem;
    margin: .2rem 0 .4rem
  }

  /* =========================
       Security
       ========================= */
  .security-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr)
  }

  .security p {
    color: var(--muted);
    margin: .2rem 0 0
  }

  /* =========================
       How it works (Timeline)
       ========================= */
  .steps {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .9rem;
    max-width: 60ch
  }
  .steps--big .step{
    display:flex; align-items:flex-start; gap:.75rem; margin:.65rem 0;
  }
  .steps--big .step-badge{
    width:30px; height:30px; border-radius:999px; display:grid; place-items:center;
    font-weight:700; background:linear-gradient(90deg, var(--brand), var(--secondary));
    color:#0b1220; flex:0 0 30px;
  }
  .steps--big .step__content{ display:grid; gap:.15rem; }
  .steps--big .step__title{ font-weight:700; }

  .step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .8rem;
    align-items: start;
  }

  .step-badge {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--secondary));
    color: #0b1220;
    font-weight: 800
  }

  /* =========================
       Testimonials (einfach, ohne Slider)
       ========================= */
  .testimonials {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
  }

  .quote p {
    margin: .2rem 0 .6rem
  }

  .quote .by {
    color: var(--muted)
  }

  /* =========================
       FAQ (Accordions)
       ========================= */
  .faq {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr
  }

  .qa {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #0c1630
  }

  .qa summary {
    list-style: none;
    cursor: pointer;
    padding: .9rem 1rem;
    font-weight: 700;
    outline: 0;
  }

  .qa summary::-webkit-details-marker {
    display: none
  }

  .qa .answer {
    padding: 0 1rem 1rem 1rem;
    color: var(--muted)
  }

  /* =========================
       CTA
       ========================= */
  .cta {
    text-align: center;
    background:
      radial-gradient(800px 380px at 50% 0%, rgba(26, 166, 183, .18), transparent 65%),
      radial-gradient(700px 360px at 50% 100%, rgba(23, 76, 182, .18), transparent 70%),
      linear-gradient(180deg, var(--bg-2), transparent 40%);
    border-top: 1px solid var(--border);
  }

  .cta .actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: .6rem
  }

  /* =========================
       Footer
       ========================= */
  footer {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .02))
  }

  .footer-grid {
    display: grid;
    gap: .75rem;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    padding: 1.2rem 0
  }

  .footer-nav {
    display: flex;
    gap: 1rem;
    justify-content: center
  }

  .footer-nav a {
    color: var(--muted)
  }

  .footer-nav a:hover {
    color: var(--text)
  }

  .copy {
    text-align: right;
    color: var(--muted)
  }

  /* =========================
       Alternierende Sektionen + Waves
       ========================= */
  .alt {
    background: var(--bg-2)
  }

  .alt .wave-top svg path {
    fill: var(--bg-2)
  }

  .alt .wave-bottom svg path {
    fill: var(--bg-2)
  }

  .wave-top svg path {
    fill: var(--bg)
  }

  .wave-bottom svg path {
    fill: var(--bg)
  }

/* =========================
   App-Teaser
   ========================= */

/* App-Sektion etwas kompakter machen */
#app.section {
  padding-top: 2.2rem;
  padding-bottom: 2.6rem;
}

/* Container in der App-Sektion etwas schmaler ziehen */
#app .container {
  max-width: 880px;
}

.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;

  margin-top: 0.75rem;
  /*padding: 1.4rem 1.8rem;*/

  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    radial-gradient(300px 160px at 0% 0%, rgba(23, 76, 182, 0.18), transparent 60%),
    var(--surface);
}

.app-card__text {
  max-width: 40rem;
}

.app-card__text p {
  margin: 0;
}

.app-card__text p + p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.app-card__badge {
  flex-shrink: 0;
}

.app-card__badge a {
  display: inline-flex;
}

.app-card__badge svg,
.app-card__badge img {
  display: block;
  height: 40px; /* ggf. 36px, wenn du es noch dezenter willst */
}

/* Mobil: untereinander stapeln */
@media (max-width: 768px) {
  .app-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-card__badge {
    margin-top: 0.4rem;
  }
}



  /* =========================
       Responsive
       ========================= */
  @media (max-width: 1100px) {
    .feature-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .tiers {
      grid-template-columns: repeat(2, 1fr)
    }

    .security-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .testimonials {
      grid-template-columns: repeat(2, 1fr)
    }

    .integrations {
      grid-template-columns: repeat(3, 1fr)
    }
  }

  @media (max-width: 768px) {
    .nav {
      padding: .6rem 0
    }

    header .middle,
    header .right:not(.right-mobile) {
      display: none !important
    }

    .right-mobile {
      display: flex
    }

    .hero {
      padding: 2.4rem 0
    }

    .hero__grid {
      grid-template-columns: 1fr;
      gap: 1.2rem
    }

    .hero__actions {
      /*justify-content: center*/
    }

    .trust {
      /*justify-content: center*/
    }

    .metrics .grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .feature-grid {
      grid-template-columns: 1fr
    }

    .usecases {
      grid-template-columns: 1fr
    }

    .tiers {
      grid-template-columns: 1fr
    }

    .security-grid {
      grid-template-columns: 1fr
    }

    .testimonials {
      grid-template-columns: 1fr
    }

    .faq {
      grid-template-columns: 1fr
    }

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

    .copy {
      text-align: center
    }
  }




