/* ============================================================
   ventora Landing – Stylesheet
   CI-Farben: #dc5253 (Coral) · #584168 (Lila) · #75c9dc (Hellblau)
   Fonts: Goodly (Headlines) · Poppins (Body)
   ============================================================ */

/* ---------- Font-Faces ---------- */
@font-face {
  font-family: 'Goodly';
  src: url('../fonts/Goodly-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goodly';
  src: url('../fonts/Goodly-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goodly';
  src: url('../fonts/Goodly-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goodly';
  src: url('../fonts/Goodly-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --coral:        #dc5253;
  --coral-soft:   #e47a72;
  --coral-pale:   #f2c0b7;
  --purple:       #584168;
  --purple-soft:  #755f80;
  --purple-pale:  #b5a8bb;
  --blue:         #75c9dc;
  --blue-soft:    #b6e0eb;
  --blue-pale:    #e8f5f9;

  --ink:          #1d1d1b;
  --ink-muted:    #4a4a48;
  --ink-soft:     #777774;
  --paper:        #ffffff;
  --paper-warm:   #fbf9f7;

  --radius-sm:    10px;
  --radius:       18px;
  --radius-lg:    28px;
  --radius-pill:  999px;

  --shadow-sm:    0 2px 8px rgba(88, 65, 104, 0.08);
  --shadow:       0 12px 40px rgba(88, 65, 104, 0.12);
  --shadow-lg:    0 24px 60px rgba(88, 65, 104, 0.18);

  --gradient:     linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--coral) 100%);
  --gradient-soft:linear-gradient(135deg, var(--blue-pale) 0%, var(--purple-pale) 55%, var(--coral-pale) 100%);

  --container:    1120px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Goodly', 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 3vw + 1rem, 3.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 1.8vw + 1rem, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }

/* ---------- Navigation ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 22px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  height: 72px; width: auto;
  display: inline-flex; align-items: center;
}
.nav__logo img { height: 100%; width: auto; display: block; }
.nav a.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.nav a.btn-ghost:hover {
  background: #fff; color: var(--purple); text-decoration: none;
  border-color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  background:
    radial-gradient(1200px 800px at 10% 10%, var(--blue) 0%, transparent 50%),
    radial-gradient(1000px 700px at 90% 30%, var(--coral) 0%, transparent 55%),
    radial-gradient(900px 700px at 50% 90%, var(--purple) 0%, transparent 55%),
    linear-gradient(135deg, var(--purple) 0%, #3d2d48 100%);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(117, 201, 220, 0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(220, 82, 83, 0.18), transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
  min-width: 0;          /* verhindert Grid-Overflow durch lange Wörter */
}
.hero__content h1,
.hero__lead {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue) 0%, #fff 50%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex; gap: 16px 24px; flex-wrap: wrap; align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.hero__meta > span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .meta-pill {
  display: inline-flex; align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(220,82,83,0.18);
  border: 1px solid rgba(220,82,83,0.45);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.hero__meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.25); }
}

.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center; justify-content: center;
}

/* Sanfter Background-Glow, dezent */
.hero__glow {
  position: absolute;
  inset: 5%;
  background:
    radial-gradient(closest-side at 30% 65%, rgba(117,201,220,0.45), transparent 65%),
    radial-gradient(closest-side at 75% 30%, rgba(220,82,83,0.45), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  animation: glow-pulse 12s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* Loop-Trail im Banner-Stil: gestrichelt, fließt sanft entlang */
.hero__loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}
.loop-trail {
  filter: drop-shadow(0 4px 14px rgba(220,82,83,0.45));
  animation: trail-flow 8s linear infinite;
}
@keyframes trail-flow {
  to { stroke-dashoffset: -34; } /* 2× Periode (3+14)×2 = sanftes Fließen */
}
/* Papierflieger groß am Trail-Endpunkt, sanft schwebend */
.hero__plane {
  position: absolute;
  width: 50%;
  max-width: 240px;
  top: 6%;
  right: 4%;
  z-index: 3;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.4));
  animation: plane-hover 6s ease-in-out infinite;
}
@keyframes plane-hover {
  0%, 100% { transform: rotate(-12deg) translate(0, 0); }
  50%      { transform: rotate(-9deg) translate(-4px, -8px); }
}
@media (prefers-reduced-motion: reduce) {
  .loop-trail, .hero__plane { animation: none; }
  .hero__plane { transform: rotate(-12deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(220, 82, 83, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(220, 82, 83, 0.5); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--purple); }

/* ---------- About Section ---------- */
.about {
  background: var(--paper-warm);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.about h2 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about p {
  color: var(--ink-muted);
  font-size: 1.08rem;
  max-width: 540px;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature {
  display: flex; gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Goodly', sans-serif;
}
.feature__text h3 {
  margin: 2px 0 4px;
  font-size: 1.08rem;
  font-weight: 600;
}
.feature__text p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Personas Section ---------- */
.personas {
  background: #ffffff;
  position: relative;
}
.personas__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.personas__head h2 {
  margin: 0;
}
.personas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  border: 1px solid rgba(88,65,104,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.persona:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(220,82,83,0.25);
}
.persona__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Goodly', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.persona h3 {
  margin: 0 0 10px;
  color: var(--purple);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}
.persona p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ---------- Waitlist Section ---------- */
.waitlist {
  background:
    linear-gradient(180deg, #fbf8f1 0%, #f4ede0 100%);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 85% 15%, rgba(117, 201, 220, 0.32), transparent 60%),
    radial-gradient(600px 500px at 10% 90%, rgba(220, 82, 83, 0.22), transparent 60%),
    radial-gradient(500px 400px at 50% 110%, rgba(88, 65, 104, 0.18), transparent 70%);
  pointer-events: none;
}
/* Dekorative Papierflieger – seitlich neben dem Form */
.waitlist__plane {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(0.3px) drop-shadow(0 14px 30px rgba(88,65,104,0.25));
  z-index: 1;
}
.waitlist__plane--left {
  top: 12%;
  left: 4%;
  width: clamp(80px, 11vw, 150px);
  transform: rotate(-22deg);
  animation: drift-left 9s ease-in-out infinite;
}
.waitlist__plane--right {
  bottom: 14%;
  right: 5%;
  width: clamp(70px, 9vw, 120px);
  transform: rotate(18deg);
  animation: drift-right 11s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes drift-left {
  0%, 100% { transform: translate(0,0) rotate(-22deg); }
  50% { transform: translate(8px,-12px) rotate(-16deg); }
}
@keyframes drift-right {
  0%, 100% { transform: translate(0,0) rotate(18deg); }
  50% { transform: translate(-10px,10px) rotate(24deg); }
}
@media (max-width: 900px) {
  .waitlist__plane--left { top: 4%; left: -2%; opacity: 0.4; }
  .waitlist__plane--right { display: none; }
}

.waitlist__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.waitlist__inner > .about__eyebrow { display: inline-block; }

.waitlist h2 {
  margin-bottom: 16px;
}
.waitlist__lead {
  color: var(--ink-muted);
  font-size: 1.08rem;
  margin-bottom: 40px;
}

.form {
  text-align: left;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(88, 65, 104, 0.08);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form__group { margin-bottom: 18px; }
.form__group label {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.form__group label .req { color: var(--coral); }

.form__control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e4e0e8;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__control:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(220, 82, 83, 0.12);
}
select.form__control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23584168' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
textarea.form__control { resize: vertical; min-height: 110px; }

.form__consent {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin: 8px 0 24px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form__consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--coral);
  flex-shrink: 0;
  cursor: pointer;
}
.form__consent label { cursor: pointer; }

.form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 17px 28px;
  font-size: 1.05rem;
}

.form__hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

.form__error {
  display: none;
  padding: 14px 18px;
  background: rgba(220, 82, 83, 0.08);
  border: 1.5px solid rgba(220, 82, 83, 0.25);
  border-radius: var(--radius-sm);
  color: var(--coral);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.form__error.is-visible { display: block; }

/* ---------- Thank You Page ---------- */
.thanks {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px 24px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(800px 600px at 50% 25%, rgba(220,82,83,0.10), transparent 60%),
    radial-gradient(700px 500px at 85% 80%, rgba(117,201,220,0.18), transparent 60%),
    radial-gradient(600px 500px at 10% 90%, rgba(88,65,104,0.10), transparent 60%),
    var(--paper-warm);
}
.thanks__inner {
  max-width: 580px;
  margin: auto 0;
}
.thanks__logo {
  display: inline-flex;
  height: 64px;
  margin-bottom: 28px;
}
.thanks__logo img { height: 100%; width: auto; display: block; }
.thanks__plane {
  position: relative;
  width: 200px;
  margin: 0 auto 32px;
  animation: thanks-float 6s ease-in-out infinite;
}
.thanks__plane img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 18px 36px rgba(220,82,83,0.25));
}
@keyframes thanks-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
}
/* Häkchen-Badge auf der Bestätigungs-Seite */
.thanks__plane--confirmed .thanks__check {
  position: absolute;
  bottom: 8%; right: 8%;
  width: 56px; height: 56px;
  background: var(--coral);
  border-radius: 50%;
  display: grid; place-items: center;
  border: 4px solid var(--paper-warm);
  box-shadow: 0 10px 24px -8px rgba(220,82,83,0.5);
  color: #fff;
}
.thanks__plane--confirmed .thanks__check svg { width: 24px; height: 24px; }
.thanks__eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.thanks h1 { margin-bottom: 18px; }
.thanks p { color: var(--ink-muted); font-size: 1.1rem; margin-bottom: 24px; }
.thanks__hint { font-size: 0.92rem !important; color: var(--ink-soft) !important; margin-bottom: 32px !important; }
.thanks__footer {
  display: flex; gap: 24px; justify-content: center;
  padding: 32px 0 8px;
  font-size: 0.85rem;
}
.thanks__footer a { color: var(--ink-soft); }
.thanks__footer a:hover { color: var(--coral); text-decoration: none; }

/* ---------- Legal Pages ---------- */
.legal {
  padding: 140px 0 80px;
  background: var(--paper-warm);
  min-height: 100vh;
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal h1 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--blue-pale);
}
.legal h2 { font-size: 1.4rem; margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.5em; color: var(--purple); }
.legal p, .legal li { color: var(--ink-muted); font-size: 0.97rem; line-height: 1.7; }
.legal ul { padding-left: 1.4em; }
.legal a.back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Dark nav for legal pages */
.nav--light .nav__logo img { filter: none; }
.nav--light a.btn-ghost {
  color: var(--purple);
  border-color: rgba(88, 65, 104, 0.25);
}
.nav--light a.btn-ghost:hover {
  background: var(--purple); color: #fff; border-color: var(--purple);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 40px;
  font-size: 0.92rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer__left { display: flex; align-items: center; gap: 20px; }
.footer__logo { height: 56px; display: inline-flex; align-items: center; }
.footer__logo img { height: 100%; width: auto; display: block; }
.footer__nav {
  display: flex; gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s ease; }
.footer__nav a:hover { color: #fff; }

/* Social-Icons vorerst aus – noch keine Profile vorhanden.
   Sobald Instagram/LinkedIn live: auf "display: flex" zurücksetzen. */
.footer__social { display: none; gap: 14px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover { background: var(--gradient); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual {
    aspect-ratio: auto;     /* gegen Konflikt mit min-height auf Mobile */
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    min-height: 420px;
  }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .personas__grid { grid-template-columns: 1fr; gap: 18px; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__left { flex-direction: column; gap: 16px; }
  .footer__nav { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .legal__inner { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  body { font-size: 16px; }
  .nav__logo { height: 56px; }
  .container { padding: 0 20px; }
  .hero__lead { max-width: 100%; }
  /* iOS-Safari Subpixel-Sicherheitsabstand */
  .hero__content { padding-right: 4px; }
}

/* ---------- Motion Respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
