/* ============================================================
   NOVAWERK — Stylesheet
   Aufbau:
   1. Design-Tokens
   2. Reset & Basis
   3. Typografie & Bausteine
   4. Buttons
   5. Navigation
   6. Hero
   7. Versprechen
   8. Problem
   9. Leistungen
   10. Ablauf
   11. Preise
   12. FAQ
   13. Kontakt & Formular
   14. Footer
   15. Animationen
   16. Responsive
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN-TOKENS
   ------------------------------------------------------------ */
:root {
  /* Farben */
  --ink:          #08090A;   /* Fast-Schwarz, Basis dunkler Bereiche */
  --ink-2:        #101114;   /* Karten auf Dunkel */
  --ink-3:        #17191D;   /* Erhöhte Flächen */
  --paper:        #FFFFFF;
  --mist:         #F4F4F6;   /* Helle Sektion */
  --mist-2:       #E8E8EC;

  --text-on-dark:      #F5F5F7;
  --text-on-dark-soft: #9A9AA3;
  --text-on-light:     #0B0B0D;
  --text-on-light-soft:#5A5A63;

  --line-dark:  rgba(255,255,255,.10);
  --line-dark-2:rgba(255,255,255,.16);
  --line-light: rgba(0,0,0,.09);

  --accent:      #5B8CFF;
  --accent-2:    #A97BFF;
  --accent-deep: #2F5FE0;
  --accent-soft: rgba(91,140,255,.14);

  --grad-brand: linear-gradient(100deg, #7FA7FF 0%, #A97BFF 55%, #6FD8FF 100%);

  /* Maße */
  --wrap:        1240px;
  --wrap-narrow: 860px;
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  26px;
  --r-xl:  34px;
  --r-pill: 999px;

  --pad-section: clamp(80px, 11vw, 168px);
  --gap: clamp(16px, 2vw, 28px);

  /* Bewegung */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  /* Schrift */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
          "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-lift: 0 40px 80px -30px rgba(0,0,0,.55);
  --shadow-card: 0 20px 50px -28px rgba(0,0,0,.35);
}

/* ------------------------------------------------------------
   2. RESET & BASIS
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 40px, var(--wrap-narrow)); }

/* ------------------------------------------------------------
   3. TYPOGRAFIE & BAUSTEINE
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--dark { color: var(--accent-deep); }

.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: var(--pad-section) 0; position: relative; }

.section--dark  { background: var(--ink);  color: var(--text-on-dark); }
.section--light { background: var(--mist); color: var(--text-on-light); }

.sec-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 80px); }

.sec-title {
  font-size: clamp(34px, 5.4vw, 68px);
  margin-bottom: 22px;
}

.sec-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-on-dark-soft);
  max-width: 58ch;
  line-height: 1.6;
}
.sec-sub--dark { color: var(--text-on-light-soft); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.link-arrow svg { width: 19px; height: 19px; transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------ */
.btn {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .3s var(--ease-soft),
              border-color .3s var(--ease-soft), color .3s var(--ease-soft),
              box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  --btn-bd: var(--paper);
  box-shadow: 0 10px 30px -14px rgba(255,255,255,.4);
}
.btn--light:hover { box-shadow: 0 18px 40px -16px rgba(255,255,255,.55); }

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  --btn-bd: var(--ink);
}

.btn--ghost {
  --btn-bd: var(--line-dark-2);
  --btn-fg: currentColor;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { --btn-bd: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }

.section--light .btn--ghost { --btn-bd: rgba(0,0,0,.18); }
.section--light .btn--ghost:hover { --btn-bd: rgba(0,0,0,.4); background: rgba(0,0,0,.04); }

.btn--lg { padding: 17px 34px; font-size: 16.5px; }
.btn--sm { padding: 10px 20px; font-size: 14.5px; }
.btn--full { width: 100%; }
.btn__icon { width: 19px; height: 19px; transition: transform .4s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }

/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease-soft), backdrop-filter .45s var(--ease-soft),
              border-color .45s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8,9,10,.72);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom-color: var(--line-dark);
}

.nav__inner {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 26px; height: 26px; flex: none; }
.logo__text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nav__links {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark-soft);
}
.nav__links a { position: relative; transition: color .3s; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__links a:hover { color: var(--text-on-dark); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-pill);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%; width: 16px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .4s var(--ease), opacity .25s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateX(-50%) translateY(-3px) rotate(-45deg); }

/* Bei offenem Menü bleibt die Kopfzeile deckend */
body.is-locked .nav {
  background: rgba(8,9,10,.97);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: rgba(8,9,10,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 30px 20px 60px;
  animation: menuIn .45s var(--ease);
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  padding: 20px 4px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu__cta { color: var(--accent); border-bottom: 0 !important; }

@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: clamp(140px, 19vh, 200px) 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__aurora {
  position: absolute;
  z-index: -2;
  top: -30%; left: 50%;
  width: min(1500px, 150vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(91,140,255,.30), transparent 68%),
    radial-gradient(closest-side, rgba(169,123,255,.24), transparent 62%);
  background-position: 32% 42%, 70% 30%;
  background-repeat: no-repeat;
  background-size: 62% 62%, 55% 55%;
  filter: blur(30px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-52%) translateY(38px) scale(1.08); }
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 25%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 25%, #000 20%, transparent 78%);
  opacity: .75;
}

.hero__content { text-align: center; position: relative; }

.hero__title {
  font-size: clamp(42px, 7.4vw, 96px);
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}

.hero__sub {
  max-width: 60ch;
  margin: 0 auto 40px;
  font-size: clamp(17px, 1.85vw, 22px);
  line-height: 1.55;
  color: var(--text-on-dark-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero__note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.42);
}

/* Produkt-Mockups */
.hero__stage {
  position: relative;
  width: min(100% - 40px, 1080px);
  margin: clamp(60px, 8vw, 96px) auto 0;
  padding-bottom: clamp(36px, 5.5vw, 84px);
  perspective: 1600px;
}

.stage__glow {
  position: absolute;
  inset: 12% 4% -14% 4%;
  background: radial-gradient(ellipse at 50% 50%, rgba(91,140,255,.35), transparent 66%);
  filter: blur(60px);
  z-index: -1;
}

.mock-browser {
  position: relative;
  width: 84%;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #16181C, #0C0D10);
  border: 1px solid var(--line-dark-2);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-6deg);
  transition: transform .6s var(--ease);
}

.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.03);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock-browser__url {
  margin-left: 12px;
  padding: 4px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
}

.mock-browser__body { padding: 26px clamp(18px, 3vw, 34px) 34px; }

.mb-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(26px, 4vw, 48px); }
.mb-logo { width: 74px; height: 11px; border-radius: 6px; background: var(--grad-brand); }
.mb-links { display: flex; align-items: center; gap: 14px; }
.mb-links i { display: block; width: 34px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.16); }
.mb-links i.pill { width: 58px; height: 20px; border-radius: var(--r-pill); background: rgba(255,255,255,.9); }

.mb-hero { margin-bottom: clamp(22px, 3.4vw, 40px); }
.mb-line { height: 13px; border-radius: 7px; background: rgba(255,255,255,.16); margin-bottom: 11px; }
.mb-line.w70 { width: 70%; height: 20px; background: rgba(255,255,255,.72); }
.mb-line.w45 { width: 45%; }
.mb-line.w50 { width: 50%; }
.mb-line.w65 { width: 65%; }
.mb-line.w80 { width: 80%; }
.mb-btn { width: 108px; height: 30px; border-radius: var(--r-pill); background: var(--grad-brand); margin-top: 18px; }

.mb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mb-card {
  height: clamp(52px, 8vw, 86px);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark);
}

.mock-phone {
  position: absolute;
  right: 0; top: 17%;
  width: 20.5%;
  aspect-ratio: 9 / 17.5;
  border-radius: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(180deg, #1B1D22, #0A0B0D);
  border: 1px solid var(--line-dark-2);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  transform: rotateX(6deg) rotateY(-9deg) translateZ(60px);
  transition: transform .6s var(--ease);
}
.mock-phone__screen {
  height: 100%;
  border-radius: clamp(12px, 1.8vw, 23px);
  background: #0F1114;
  border: 1px solid var(--line-dark);
  padding: 12px 10px;
  overflow: hidden;
}
.mp-top { width: 40%; height: 5px; border-radius: 3px; background: rgba(255,255,255,.2); margin: 0 auto 14px; }
.mp-post { margin-bottom: 14px; }
.mp-img { height: clamp(40px, 6vw, 66px); border-radius: 9px; background: var(--grad-brand); margin-bottom: 8px; opacity: .85; }
.mp-img.alt { background: linear-gradient(140deg, #2A2E36, #4A5160); opacity: 1; }
.mp-post .mb-line { height: 6px; margin-bottom: 6px; }

/* Laufband */
.marquee {
  margin-top: clamp(70px, 9vw, 120px);
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slide 46s linear infinite;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.34);
  white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   7. VERSPRECHEN
   ------------------------------------------------------------ */
.promise { background: var(--ink); padding: clamp(60px, 8vw, 110px) 0; }
.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 46px);
}
.promise__item { border-top: 1px solid var(--line-dark-2); padding-top: 22px; }
.promise__num {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.promise__item p { font-size: 15px; line-height: 1.6; color: var(--text-on-dark-soft); }

/* ------------------------------------------------------------
   8. PROBLEM
   ------------------------------------------------------------ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.pain {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pain:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.pain__icon {
  width: 30px; height: 30px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.028em; }
.pain p { font-size: 15.5px; line-height: 1.62; color: var(--text-on-light-soft); }

.pain--answer {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.pain--answer h3 { font-size: 23px; }
.pain--answer p { color: var(--text-on-dark-soft); margin-bottom: 18px; }

/* ------------------------------------------------------------
   9. LEISTUNGEN
   ------------------------------------------------------------ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.svc {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease), border-color .45s var(--ease-soft), background .45s var(--ease-soft);
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--line-dark-2);
  background: var(--ink-3);
}

.svc--wide { grid-column: span 2; flex-direction: row; align-items: center; }
.svc--wide .svc__art { flex: 1 1 52%; }
.svc--wide .svc__body { flex: 1 1 48%; }
.svc--reverse { flex-direction: row-reverse; }

.svc__art {
  padding: clamp(26px, 3.4vw, 46px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(91,140,255,.12), transparent 70%);
}
.art { width: 100%; height: auto; }

/* SVG-Illustrationsfarben */
.s-stroke      { fill: none; stroke: rgba(255,255,255,.2); stroke-width: 1.4; stroke-linecap: round; }
.s-fill-soft   { fill: rgba(255,255,255,.03); }
.s-fill-mid    { fill: rgba(255,255,255,.19); }
.s-fill-strong { fill: rgba(255,255,255,.07); }
.s-accent      { fill: var(--accent); }
.s-accent-soft { fill: rgba(91,140,255,.26); }
.s-type        { fill: rgba(255,255,255,.85); font: 600 46px/1 var(--font); letter-spacing: -0.04em; }

.flow path { animation: dash 2.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -26; } }

.svc__body { padding: clamp(26px, 3vw, 46px); padding-top: 0; }
.svc--wide .svc__body { padding-top: clamp(26px, 3vw, 46px); }

.svc__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc h3 { font-size: clamp(22px, 2.3vw, 30px); margin-bottom: 14px; }
.svc__body > p { font-size: 16px; line-height: 1.62; color: var(--text-on-dark-soft); margin-bottom: 22px; }

.svc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.svc__list li {
  position: relative;
  padding-left: 27px;
  font-size: 15.2px;
  line-height: 1.5;
  color: rgba(245,245,247,.82);
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 15px; height: 9px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.svc__foot {
  margin-top: clamp(36px, 4vw, 56px);
  font-size: 18px;
  color: var(--text-on-dark-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ------------------------------------------------------------
   10. ABLAUF
   ------------------------------------------------------------ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px; left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.16) 12%, rgba(0,0,0,.16) 88%, transparent);
}

.step { position: relative; }
.step__n {
  position: relative;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step__meta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.step__c > p:last-child { font-size: 15.5px; line-height: 1.62; color: var(--text-on-light-soft); }

/* ------------------------------------------------------------
   11. PREISE
   ------------------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: stretch;
}

.price {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 42px);
  transition: transform .5s var(--ease), border-color .4s;
}
.price:hover { transform: translateY(-6px); border-color: var(--line-dark-2); }

.price--hero {
  position: relative;
  background: linear-gradient(170deg, #1A1D24, #0E1013);
  border-color: rgba(91,140,255,.42);
  box-shadow: 0 0 0 1px rgba(91,140,255,.12), 0 40px 80px -40px rgba(91,140,255,.5);
}
.price__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #0A0B0D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.price__name { font-size: 25px; margin-bottom: 8px; }
.price__for { font-size: 15px; color: var(--text-on-dark-soft); margin-bottom: 26px; }

.price__tag { display: flex; align-items: baseline; gap: 6px; }
.price__tag .from { font-size: 15px; color: var(--text-on-dark-soft); }
.price__tag .amount { font-size: clamp(40px, 4.4vw, 56px); font-weight: 600; letter-spacing: -0.045em; }
.price__tag .cur { font-size: 26px; font-weight: 500; }
.price__note { font-size: 13px; color: rgba(255,255,255,.4); margin: 6px 0 28px; }

.price__list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0 0 4px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.price__list li {
  position: relative;
  padding-left: 27px;
  font-size: 15.2px;
  line-height: 1.5;
  color: rgba(245,245,247,.84);
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 15px; height: 9px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.care {
  margin-top: var(--gap);
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  background: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.care__l { max-width: 62ch; }
.care h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }
.care p { font-size: 15.5px; color: var(--text-on-dark-soft); }
.care__r { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.care__price { font-size: 28px; font-weight: 600; letter-spacing: -0.035em; white-space: nowrap; }
.care__price span { font-size: 15px; font-weight: 400; color: var(--text-on-dark-soft); }

/* ------------------------------------------------------------
   12. FAQ
   ------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line-light); }

.faq__item { border-bottom: 1px solid var(--line-light); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 46px 26px 0;
  position: relative;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.4;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-deep); }

.faq__item summary::after,
.faq__item summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s;
}
.faq__item summary::before { width: 15px; height: 1.8px; transform: translateY(-50%); }
.faq__item summary::after  { width: 1.8px; height: 15px; right: 12.6px; transform: translateY(-50%); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq__item[open] summary { color: var(--accent-deep); }

.faq__a {
  padding: 0 60px 30px 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--text-on-light-soft);
  animation: faqIn .45s var(--ease);
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------
   13. KONTAKT & FORMULAR
   ------------------------------------------------------------ */
.section--cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta__aurora {
  position: absolute;
  z-index: -1;
  left: 50%; top: -40%;
  width: min(1300px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(91,140,255,.26), transparent 66%),
    radial-gradient(closest-side, rgba(169,123,255,.20), transparent 62%);
  background-position: 30% 45%, 72% 34%;
  background-repeat: no-repeat;
  background-size: 58% 58%, 52% 52%;
  filter: blur(30px);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

.cta__points {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cta__points li {
  position: relative;
  padding-left: 27px;
  font-size: 15.5px;
  color: rgba(245,245,247,.86);
}
.cta__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 15px; height: 9px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.cta__direct { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 16px; font-weight: 600; }
.cta__direct a { border-bottom: 1px solid var(--line-dark-2); padding-bottom: 3px; transition: border-color .3s; }
.cta__direct a:hover { border-color: var(--accent); }

.form {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.2vw, 42px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  gap: 18px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: grid; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label,
.field legend {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(245,245,247,.78);
  padding: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-dark-2);
  background: rgba(0,0,0,.28);
  color: var(--text-on-dark);
  font: inherit;
  font-size: 15.5px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9AA3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 40px;
}
.field select option { background: #16181C; color: #F5F5F7; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.28); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,.42);
  box-shadow: 0 0 0 3px rgba(91,140,255,.18);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #FF6B6B; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block;
  padding: 9px 17px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-dark-2);
  font-size: 14.2px;
  font-weight: 500;
  color: rgba(245,245,247,.75);
  transition: all .3s var(--ease-soft);
}
.chip:hover span { border-color: rgba(255,255,255,.35); color: #fff; }
.chip input:checked + span {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  font-weight: 600;
}
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.8px;
  line-height: 1.55;
  color: var(--text-on-dark-soft);
  cursor: pointer;
}
.consent input {
  flex: none;
  width: 19px; height: 19px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  min-height: 1px;
}
.form__status.is-error { color: #FF8A8A; }
.form__status.is-ok { color: #7FE0A8; }

.form__small { margin: 0; font-size: 12.5px; color: rgba(255,255,255,.36); }

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: #050506;
  border-top: 1px solid var(--line-dark);
  padding: clamp(56px, 6vw, 84px) 0 34px;
  font-size: 15px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 2.4fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: 46px;
}
.footer__brand p { margin-top: 18px; color: var(--text-on-dark-soft); line-height: 1.6; font-size: 14.5px; }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer__cols h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 16px;
}
.footer__cols a {
  display: block;
  padding: 5px 0;
  font-size: 14.6px;
  color: var(--text-on-dark-soft);
  transition: color .25s;
}
.footer__cols a:hover { color: var(--text-on-dark); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.2px;
  color: rgba(255,255,255,.36);
}
.footer__bottom p { margin: 0; }

/* ------------------------------------------------------------
   15. ANIMATIONEN
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.reveal[data-delay="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   16. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .promise__grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price--hero { order: -1; }
  .cta-layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 920px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .nav__actions .btn--sm { display: none; }
  /* Rechtsseiten haben kein Burger-Menü — dort bleibt der Button stehen */
  .nav--simple .nav__actions .btn--sm { display: inline-flex; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; flex-direction: column; align-items: stretch; }
  .svc--reverse { flex-direction: column; }
  .svc--wide .svc__body { padding-top: 0; }

  .mock-browser { width: 90%; }
  .mock-phone { width: 25%; right: -2%; top: 22%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap--narrow { width: calc(100% - 32px); }

  .hero { padding-top: 116px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }

  .hero__stage { margin-top: 54px; padding-bottom: 56px; }
  .mock-browser { width: 100%; transform: rotateX(4deg) rotateY(-3deg); }
  .mock-phone { width: 31%; right: -8px; top: 30%; transform: rotateX(4deg) rotateY(-6deg); }
  .mb-links i:not(.pill) { display: none; }

  .promise__grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .faq__a { padding-right: 10px; }
  .faq__item summary { padding-right: 40px; }
  .care { flex-direction: column; align-items: flex-start; }
  .footer__cols { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; }
}

/* ------------------------------------------------------------
   17. RECHTSSEITEN (Impressum / Datenschutz)
   ------------------------------------------------------------ */
.legal { padding: 150px 0 clamp(70px, 9vw, 130px); background: var(--ink); }
.legal h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 14px; }
.legal__lead { color: var(--text-on-dark-soft); font-size: 17px; margin-bottom: 52px; }
.legal h2 {
  font-size: clamp(20px, 2.2vw, 27px);
  margin: 48px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.legal h3 { font-size: 18px; margin: 26px 0 8px; }
.legal p, .legal li { color: rgba(245,245,247,.78); font-size: 16px; line-height: 1.72; }
.legal ul { padding-left: 20px; display: grid; gap: 7px; margin: 0 0 1em; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal address { font-style: normal; }

.legal__note {
  margin: 0 0 44px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(91,140,255,.09);
  font-size: 14.6px;
  line-height: 1.6;
  color: rgba(245,245,247,.86);
}
.ph {
  padding: 1px 7px;
  border-radius: 4px;
  background: rgba(255,209,102,.16);
  border: 1px dashed rgba(255,209,102,.5);
  color: #FFD166;
  font-size: .93em;
  /* Lange Hinweistexte müssen umbrechen dürfen, sonst scrollt die Seite seitwärts */
  overflow-wrap: break-word;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 56px; font-weight: 600; color: var(--accent); }

/* Druck */
@media print {
  .nav, .mobile-menu, .marquee, .hero__stage, .form { display: none; }
  body { background: #fff; color: #000; }
  .section--dark, .promise, .section--cta { background: #fff; color: #000; }
}
