/* ============================================================
   safeTwatch · app.css
   Geteiltes Corporate-Design für Web + App.
   Hand-maintained — kein Build-Schritt.

   Aufbau:
     1. SHARED   — gilt für alle Projekte (Web, App)
     2. LANDING PAGE — nur in der Landing Page verwendet
     3. APP      — noch leer, App-spezifische Styles kommen hier rein
   ============================================================ */


/* ================================================================
   1. SHARED
   ================================================================ */

/* ─── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Sora';
  src: url('../Sora/Sora-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --orange:   #ED5C38;
  --teal:     #20B0A8;

  /* Dark mode (default) */
  --bg:       #0A0A18;
  --bg-alt:   #0F1535;
  --text:     #FFFFFF;
  --muted:    #B0B0BC;
  --border:   rgba(176, 176, 188, 0.12);
  --card-bg:  rgba(255, 255, 255, 0.03);
  --nav-bg:   rgba(10, 10, 24, 0.97);
  --input-bg: rgba(255, 255, 255, 0.04);
}

[data-mode="light"] {
  --bg:       #F4F4F6;
  --bg-alt:   #FFFFFF;
  --text:     #0A0A18;
  --muted:    #5A5A70;
  --border:   rgba(10, 10, 24, 0.10);
  --card-bg:  rgba(10, 10, 24, 0.03);
  --nav-bg:   rgba(244, 244, 246, 0.97);
  --input-bg: rgba(10, 10, 24, 0.04);
}

/* ─── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease, color 0.25s ease;
}

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

img, svg {
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.label--accent { color: var(--orange); }
.label--teal   { color: var(--orange); }

.heading-xl {
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.heading-lg {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header .heading-lg {
  margin-bottom: 16px;
}

.section-header .body-lg {
  max-width: 560px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background-color: var(--orange);
  color: #FFFFFF;
}
.btn--primary:hover { opacity: 0.86; }

.btn--secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--secondary:hover { border-color: var(--muted); }

.btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── CARD ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  min-width: 0;
}

.card {
  background-color: var(--bg-alt);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(237, 92, 56, 0.12);
  border: 1px solid rgba(237, 92, 56, 0.2);
  flex-shrink: 0;
}

.card__icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

.card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── FORM ───────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.55;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background-color: transparent;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status--success {
  background-color: rgba(32, 176, 168, 0.10);
  color: var(--orange);
  border: 1px solid rgba(32, 176, 168, 0.25);
}

.form-status--error {
  background-color: rgba(237, 92, 56, 0.10);
  color: var(--orange);
  border: 1px solid rgba(237, 92, 56, 0.25);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.form-checkbox-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.05s; }
.reveal--delay-2 { transition-delay: 0.13s; }
.reveal--delay-3 { transition-delay: 0.21s; }
.reveal--delay-4 { transition-delay: 0.29s; }
.reveal--delay-5 { transition-delay: 0.37s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }
  .body-lg { overflow-wrap: break-word; }
}

@media (max-width: 480px) {
  .heading-xl { font-size: 32px; letter-spacing: -0.02em; }
}

/* ─── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ================================================================
   2. LANDING PAGE — nur in public_html/ verwendet
   ================================================================ */

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  color: var(--text);
}

.lang-toggle__item {
  font-size: 13px;
  font-weight: 500;
  padding: 2px 6px;
  transition: color 0.15s ease;
  color: var(--muted);
}

.lang-toggle__item.active {
  color: var(--text);
  font-weight: 600;
}

.lang-toggle__sep {
  font-size: 13px;
  color: var(--border);
  pointer-events: none;
  padding: 0 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
}

.mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.mode-toggle:hover {
  color: var(--text);
  border-color: var(--muted);
}

/* ─── HAMBURGER / DRAWER ─────────────────────────────────── */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__hamburger:hover { color: var(--text); border-color: var(--muted); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
}
.nav__overlay.is-open { display: block; }

.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  background-color: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.nav__drawer.is-open { transform: translateX(0); }

.nav__drawer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.nav__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__drawer-close:hover { color: var(--text); border-color: var(--muted); }

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__drawer-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease;
}
.nav__drawer-link:hover { color: var(--text); }

.nav__drawer-footer {
  margin-top: auto;
  padding-top: 24px;
}

.nav__drawer-toggles {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── SOLUTION GRID (Apple-Style) ────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.solution-card {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.solution-card--hero {
  grid-column: 1 / -1;
}

.solution-card__copy {
  padding: 32px 32px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.7;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.solution-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.solution-card--hero .solution-card__title {
  font-size: 26px;
}

.solution-card__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
}

.solution-card__media {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 28px 0;
}

.solution-card--teal .solution-card__media {
  background: radial-gradient(120% 100% at 50% 100%, rgba(32, 176, 168, 0.12), transparent 70%);
}

.solution-card--orange .solution-card__media {
  background: radial-gradient(120% 100% at 50% 100%, rgba(237, 92, 56, 0.12), transparent 70%);
}

.solution-card__media .screenshot-placeholder {
  width: 84%;
}

.solution-card--hero .solution-card__media .screenshot-placeholder {
  width: 62%;
}

.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

[data-mode="light"] .screenshot-placeholder {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ssp__toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.ssp__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border);
  flex-shrink: 0;
}

.ssp__bar {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background-color: var(--border);
  margin-left: 6px;
}

.ssp__body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.ssp__sidebar {
  width: 22%;
  border-right: 1px solid var(--border);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.ssp__sidebar-item {
  height: 8px;
  border-radius: 4px;
  background-color: var(--border);
}

.ssp__sidebar-item--active {
  background-color: rgba(237, 92, 56, 0.35);
  width: 80%;
}

.ssp__content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.ssp__content--full {
  padding: 16px 20px;
}

.ssp__row {
  border-radius: 4px;
  background-color: var(--border);
}

.ssp__row--label { height: 7px; width: 40%; }
.ssp__row--input { height: 20px; width: 100%; }
.ssp__row--textarea { height: 44px; width: 100%; }
.ssp__row--heading { height: 12px; width: 55%; }
.ssp__row--sm { height: 7px; width: 70%; }
.ssp__row--btn { height: 22px; width: 36%; background-color: rgba(237, 92, 56, 0.4); border-radius: 6px; }

.ssp__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-shrink: 0;
}

.ssp__card {
  height: 52px;
  border-radius: 6px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.ssp__card--active {
  background-color: rgba(237, 92, 56, 0.15);
  border-color: rgba(237, 92, 56, 0.4);
}

.ssp__table-header {
  height: 9px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  flex-shrink: 0;
}

.ssp__table-row {
  height: 14px;
  border-radius: 3px;
  background-color: var(--border);
}

.ssp__table-row--alt {
  background-color: rgba(255, 255, 255, 0.04);
}

.ssp__export-preview {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  border-radius: 6px;
  min-height: 50px;
}

/* ─── MISSION / VISION ───────────────────────────────────── */
.mission-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.mission-visual {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px dashed var(--border);
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}

.mission-visual__icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
  opacity: 0.6;
}

.mission-visual__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.mission-visual__desc {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
  line-height: 1.6;
  max-width: 260px;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mission-block__label {
  display: block;
  margin-bottom: 16px;
}

.mission-block__text {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.principle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.principle__bar {
  width: 2px;
  height: 22px;
  background-color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.principle__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SOCIAL PROOF ───────────────────────────────────────── */
.proof-statement {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  background-color: var(--bg);
  padding: 40px 36px;
}

.section--alt .stat {
  background-color: var(--bg-alt);
}

.stat__number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── SURVEY CTA SECTION ─────────────────────────────────── */
.survey-cta-inner {
  max-width: 600px;
}

.survey-cta-inner .label {
  display: block;
  margin-bottom: 16px;
}

.survey-cta-inner .heading-lg {
  margin-bottom: 16px;
}

.survey-cta-inner .body-lg {
  margin-bottom: 36px;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro .label {
  display: block;
  margin-bottom: 16px;
}

.contact-intro .heading-lg {
  margin-bottom: 16px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 85px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  white-space: pre-line;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__link {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link:hover { color: var(--text); }

.footer__link svg {
  display: inline-block;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__bottom-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── PAGE HEADER (survey page) ──────────────────────────── */
.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.page-header .label {
  display: block;
  margin-bottom: 16px;
}

/* ─── SURVEY FORM ────────────────────────────────────────── */
.survey-form {
  max-width: 640px;
}

.survey-question {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.survey-question:last-of-type {
  border-bottom: none;
}

.survey-question__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.survey-question__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text);
}

.survey-question__hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 20px;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.survey-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background-color: var(--card-bg);
}

.survey-option:hover {
  border-color: var(--muted);
}

.survey-option input[type="radio"],
.survey-option input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

.survey-option label,
.survey-option span {
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  line-height: 1.4;
}

.survey-option:has(input:checked) {
  border-color: var(--orange);
  background-color: rgba(237, 92, 56, 0.06);
}

.survey-divider {
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.survey-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.survey-footer__note {
  font-size: 13px;
  color: var(--muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-layout { grid-template-columns: 1fr; gap: 40px; }
  .mission-visual { aspect-ratio: 21 / 9; padding: 20px; gap: 8px; }
  .mission-visual__desc { display: none; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 20px; justify-content: center; }
  .nav__logo { display: none; }
  .nav__links { display: none; }
  .nav__controls { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero: compact on mobile, no overflow */
  .hero { min-height: auto; padding: 56px 0 64px; overflow-x: hidden; }
  .hero__split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 0;
  }
  .hero__logo { width: 100%; max-width: 300px; }
  .hero__sub { max-width: 100%; overflow-wrap: break-word; }
  .hero__device { transform: none; box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

  .hero__bg {
    width: 100%;
    right: 0;
    top: auto;
    bottom: -40px;
    transform: none;
    opacity: 0.08;
  }
  .card-grid { grid-template-columns: 1fr; }

  .card--diagram { padding: 32px 0; }
  .v-model__scroll {
    overflow-x: auto;
    padding: 0 20px 4px;
    -webkit-overflow-scrolling: touch;
  }
  .v-model__svg { min-width: 640px; }
  .v-model__caption { padding: 0 20px; }

  .solution-grid { grid-template-columns: 1fr; gap: 16px; }
  .solution-card--hero .solution-card__title { font-size: 22px; }
  .solution-card__media .screenshot-placeholder,
  .solution-card--hero .solution-card__media .screenshot-placeholder { width: 100%; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .survey-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* ─── HERO SPLIT ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0;
}

.hero__logo {
  width: 480px;
  height: auto;
  margin-bottom: 12px;
}

.hero__claim {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero__claim-accent {
  color: var(--orange);
  font-weight: 600;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 420px;
}

.hero__visual {
  position: relative;
}

.hero__device {
  position: relative;
  perspective: 1200px;
  transform: rotateX(2deg) rotateY(-4deg) translateZ(0);
  transform-style: preserve-3d;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.45),
    0 0 120px rgba(237,92,56,0.07);
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__device:hover {
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 80px rgba(237,92,56,0.1);
}

.hero__device-screen {
  border-radius: 10px 10px 3px 3px;
  overflow: hidden;
  border: 1px solid rgba(176,176,188,0.14);
  line-height: 0;
}

.hero__diagram {
  width: 100%;
  height: auto;
  display: block;
}

.hero__device-chin {
  height: 5px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: none;
}

.hero__device-base {
  height: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  margin: 0 18%;
}

/* ─── V-MODELL ───────────────────────────────────────────── */
.card--diagram {
  grid-column: 1 / -1;
  align-items: center;
  padding: 48px 36px;
  min-width: 0;
}

.v-model__caption {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
  max-width: 520px;
}

.v-model__scroll {
  width: 100%;
}

.v-model__pin {
  cursor: pointer;
}

.v-model__pin-tip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}

.v-model__pin:hover .v-model__pin-tip,
.v-model__pin:focus .v-model__pin-tip,
.v-model__pin:focus-visible .v-model__pin-tip {
  opacity: 1;
}

@media (hover: none) {
  .v-model__pin-tip {
    pointer-events: auto;
  }
}

.v-model__svg {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: block;
  color: var(--text);
}

/* ─── TEAM / PROOF ───────────────────────────────────────── */
.team-founders {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.team-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.team-founder__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--card-bg);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0.6;
}

.team-founder__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.team-founder__role {
  font-size: 12px;
  color: var(--muted);
  max-width: 100px;
  line-height: 1.4;
}

/* ─── ROADMAP ────────────────────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-item__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}

.roadmap-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 5px;
}

.roadmap-item__dot--done { background: var(--orange); }
.roadmap-item__dot--current {
  background: transparent;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 3px rgba(237,92,56,0.15);
}

.roadmap-item__connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
}

.roadmap-item__content { flex: 1; }

.roadmap-item__phase {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.roadmap-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.roadmap-item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-teaser {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--card-bg);
  position: sticky;
  top: 88px;
}

.pricing-teaser__eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.pricing-teaser__headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.pricing-teaser__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pricing-teaser__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.15s ease;
}

.faq-question:hover {
  background-color: var(--card-bg);
}

.faq-question__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-question__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner {
  padding: 14px 28px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── SUPPORT / UNTERSTÜTZUNG ────────────────────────────── */
.support-intro {
  max-width: 600px;
  margin-bottom: 56px;
}

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

.support-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-card__icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  flex-shrink: 0;
}

.support-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.support-card__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── CONTACT + SURVEY MERGED ────────────────────────────── */
.contact-survey-link {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-survey-link__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SURVEY SLIDES ─────────────────────────────────────── */
.survey-progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 48px;
}

.survey-progress__fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}

.survey-slide {
  display: none;
}

.survey-slide.is-active {
  display: block;
  animation: slideIn 0.22s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.survey-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.survey-nav__step {
  font-size: 12px;
  color: var(--muted);
}

/* Result bars for step 4 visual */
.ssp__result-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.ssp__result-bar {
  height: 10px;
  background: var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.ssp__result-fill {
  height: 100%;
  background: rgba(237, 92, 56, 0.45);
  border-radius: 5px;
}

.ssp__result-fill--ok { background: rgba(32, 176, 168, 0.5); }

/* ─── FOOTER COMPACT ─────────────────────────────────────── */
.footer {
  padding: 40px 0 20px;
}

.footer__grid {
  margin-bottom: 28px;
}

.footer__logo {
  height: 28px;
  margin-bottom: 12px;
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 960px) {
  .hero__split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0;
    gap: 48px;
  }
  .hero__visual { display: none; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   3. APP — App-spezifische Styles kommen hier rein, sobald die
   App existiert. Shared-Teil oben bleibt dabei unangetastet.
   ================================================================ */
