/* autavi — landing styles (brand tokens in tokens.css) */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.container {
  width: min(100% - 4rem, var(--container));
  margin-inline: auto;
}

.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.accent { color: var(--accent); }

.section-label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 36rem;
}

/* =========================================================
   Button codes — Brand Design Kit
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { color: inherit; }
.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Kit: Primary (dark teal fill, white label) */
.btn-primary-solid {
  background: var(--primary-800);
  color: var(--neutral-0);
}
.btn-primary-solid:hover {
  background: var(--primary-700);
  color: var(--neutral-0);
}

/* Kit: Secondary (light fill, dark label) */
.btn-secondary-solid {
  background: var(--neutral-100);
  color: var(--secondary-800);
}
.btn-secondary-solid:hover {
  background: var(--neutral-200);
  color: var(--secondary-800);
}

/* Kit: Inverted (near-black fill, light label) */
.btn-inverted {
  background: var(--neutral-800);
  color: var(--neutral-0);
}
.btn-inverted:hover {
  background: var(--neutral-700);
  color: var(--neutral-0);
}

/* Kit: Outlined */
.btn-outlined {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 43, 69, 0.25);
}
.btn-outlined:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Landing primary CTA — teal→cyan gradient (light theme) */
.btn-primary,
.btn-brand {
  background-color: var(--primary-600);
  background-image: linear-gradient(90deg, var(--primary-700) 0%, var(--primary-500) 100%);
  color: var(--neutral-0);
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 143, 165, 0.22);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}
.btn-primary:hover,
.btn-brand:hover {
  background-color: var(--primary-500);
  background-image: linear-gradient(90deg, var(--primary-600) 0%, var(--primary-400) 100%);
  color: var(--neutral-0);
  box-shadow: 0 10px 26px rgba(0, 143, 165, 0.3);
  transform: translateY(-1px);
}

/* Header CTA — same gradient language */
.btn-header-cta,
.header-cta {
  background-color: var(--primary-700);
  background-image: linear-gradient(90deg, var(--primary-800) 0%, var(--primary-600) 100%);
  color: var(--neutral-0);
  border: 0;
  box-shadow: 0 6px 16px rgba(0, 77, 90, 0.2);
}
.btn-header-cta:hover,
.header-cta:hover {
  background-color: var(--primary-600);
  background-image: linear-gradient(90deg, var(--primary-700) 0%, var(--primary-500) 100%);
  color: var(--neutral-0);
  box-shadow: 0 8px 20px rgba(0, 77, 90, 0.28);
  transform: translateY(-1px);
}

/* Secondary — soft fill + subtle border (light theme) */
.btn-secondary {
  background: var(--neutral-50, #f4f7f8);
  color: var(--text);
  border-color: rgba(0, 43, 69, 0.14);
  box-shadow: none;
}
.btn-secondary:hover {
  border-color: rgba(0, 43, 69, 0.22);
  color: var(--text);
  background: var(--neutral-100);
}

/* Kit: pill label + icon */
.btn-pill {
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--accent-ink);
  padding-inline: 1.1rem;
}
.btn-pill:hover {
  background: var(--primary-400);
  color: var(--accent-ink);
}

/* Kit: square icon buttons */
.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius);
}
.btn-icon-primary { background: var(--primary-800); color: var(--neutral-0); }
.btn-icon-secondary { background: var(--secondary-800); color: var(--neutral-0); }
.btn-icon-tertiary { background: var(--color-tertiary); color: var(--tertiary-900); }
.btn-icon-danger { background: #b42318; color: var(--neutral-0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-inline: 0.5rem;
}
.btn-ghost:hover { color: var(--accent); }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-icon.btn-sm { width: 2rem; height: 2rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo:hover { color: inherit; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #9af5ff 0%, var(--accent) 42%, #007a8a 78%, #04353c 100%);
  box-shadow: 0 0 0 1px rgba(0, 212, 232, 0.25);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch > span[aria-hidden="true"] {
  display: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  text-decoration: none;
  line-height: 1;
}

.lang-btn.is-active {
  background: var(--primary-600);
  color: var(--neutral-0);
  font-weight: 700;
}

.lang-btn:not(.is-active):hover {
  color: var(--text);
  background: var(--neutral-100);
}

.theme-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.theme-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.theme-btn.is-active {
  background: var(--primary-600);
  color: var(--neutral-0);
}

.theme-btn:not(.is-active):hover {
  color: var(--text);
  background: var(--neutral-100);
}

[data-theme="dark"] .site-header {
  background: rgba(7, 11, 16, 0.9);
}

[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-brand {
  background-color: var(--color-primary);
  background-image: none;
  color: var(--secondary-800);
  border: 0;
  box-shadow: none;
  transform: none;
}

[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-brand:hover {
  background-color: var(--primary-400);
  background-image: none;
  color: var(--secondary-800);
  box-shadow: none;
  transform: none;
}

[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--neutral-0);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .header-cta {
  background-color: var(--color-primary);
  background-image: none;
  color: var(--secondary-800);
  border: 0;
  box-shadow: none;
  transform: none;
}

[data-theme="dark"] .header-cta:hover {
  background-color: var(--primary-400);
  background-image: none;
  color: var(--secondary-800);
  box-shadow: none;
  transform: none;
}

[data-theme="dark"] .lang-btn:not(.is-active):hover,
[data-theme="dark"] .theme-btn:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .nav-mobile {
  background: var(--bg);
}

[data-theme="dark"] .hero-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

[data-theme="dark"] .card,
[data-theme="dark"] .dimension,
[data-theme="dark"] .vorteile-card,
[data-theme="dark"] .accordion-item {
  box-shadow: none;
}

[data-theme="dark"] .check-list li::before {
  background: transparent;
  border: 1.5px solid #8bcf2b;
  color: #8bcf2b;
}

[data-theme="dark"] .services .card {
  background: #141c26;
  border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .card-watermark {
  color: rgba(255, 255, 255, 0.045);
}

[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse 55% 60% at 72% 48%, rgba(0, 120, 140, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 45% at 55% 70%, rgba(0, 60, 80, 0.35), transparent 65%),
    var(--section-hero);
}

[data-theme="dark"] .dimension-panel {
  gap: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

[data-theme="dark"] .dimension {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .dimension:last-child {
  border-bottom: none;
}

/* Stepped column backgrounds (dark) — lightest → darkest */
[data-theme="dark"] .dimension:nth-child(1) { background: #1a2430; }
[data-theme="dark"] .dimension:nth-child(2) { background: #151e28; }
[data-theme="dark"] .dimension:nth-child(3) { background: #111820; }
[data-theme="dark"] .dimension:nth-child(4) { background: #0d131a; }
[data-theme="dark"] .dimension:nth-child(5) { background: #090e14; }

[data-theme="dark"] .mission-quote p {
  color: var(--accent);
}

[data-theme="dark"] .services-head::after {
  display: block;
  background: var(--accent);
}

[data-theme="dark"] .vorteile {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0, 90, 110, 0.22), transparent 70%),
    var(--section-vorteile);
}

[data-theme="dark"] .vorteile-card {
  background: rgba(10, 18, 24, 0.92);
  border-color: rgba(0, 212, 232, 0.14);
  box-shadow: 0 0 60px rgba(0, 180, 200, 0.06);
}

[data-theme="dark"] .vorteile-meaning {
  background: rgba(4, 10, 14, 0.85);
}

[data-theme="dark"] .cta-section {
  background:
    radial-gradient(ellipse at center, rgba(0, 194, 224, 0.08), transparent 60%),
    var(--section-cta);
}

@media (min-width: 768px) {
  [data-theme="dark"] .dimension {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-theme="dark"] .dimension:nth-child(3n) {
    border-right: none;
  }

  [data-theme="dark"] .dimension:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (min-width: 1024px) {
  [data-theme="dark"] .dimension {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none !important;
  }

  [data-theme="dark"] .dimension:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-theme="dark"] .dimension:last-child {
    border-right: none;
  }
}

.newsletter-form input,
.newsletter-form .form-control {
  flex: 1;
  background: var(--bg-elevated);
  border: none;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  min-width: 0;
  width: 100%;
}

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  order: -1;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--neutral-0);
}

.nav-mobile[hidden] { display: none !important; }

.nav-mobile a {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero — light theme */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 4.5rem 0 6rem;
  overflow: hidden;
  background: var(--section-hero);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0.45rem 0.9rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  border: none;
  border-radius: 999px;
  background: var(--neutral-100);
}

.hero-badge-icon {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  font-size: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 1.25rem;
  max-width: 14ch;
  color: var(--text);
}

.hero h1:focus,
.hero h1:focus-visible {
  outline: none;
}

/* Soft marker highlight under accent word — light theme only.
   Sits on the baseline so descenders (e.g. g) hang clear below it. */
:root:not([data-theme="dark"]) .hero .accent {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-inline: 0.04em;
  background-image: none;
}

:root:not([data-theme="dark"]) .hero .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.14em;
  height: 0.26em;
  background: rgba(0, 218, 243, 0.4);
  border-radius: 1px;
  z-index: -1;
  pointer-events: none;
}

[data-theme="dark"] .hero .accent {
  background-image: none;
}

[data-theme="dark"] .hero .accent::after {
  content: none;
}

.hero .lead {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-visual {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-logo-mark {
  width: min(380px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 218, 243, 0.35), transparent 42%),
    linear-gradient(160deg, #0a1620, #061018 55%, #0b1c24);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.hero-logo-orb {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(154, 245, 255, 0.95), transparent 28%),
    radial-gradient(circle at 55% 55%, rgba(0, 218, 243, 0.55), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(0, 80, 95, 0.4), transparent 70%);
  position: relative;
  z-index: 1;
}

.hero-logo-orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(0, 218, 243, 0.35);
  box-shadow: 0 0 80px rgba(0, 218, 243, 0.25);
}

.hero-logo-mark::before {
  content: "01001010 11010101 00101101";
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  line-height: 1.8;
  color: rgba(0, 218, 243, 0.18);
  word-break: break-all;
}

/* Mission */
.mission {
  background: var(--section-mission);
  border-top: none;
  padding-block: 7rem;
}

.mission .container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.mission-head {
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

.mission-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  color: var(--text);
}

.mission-kicker {
  display: block;
  margin-bottom: 0.15rem;
}

.mission-intro p {
  margin: 0;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mission-quote {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 26rem;
  justify-self: start;
}

.mission-quote p {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

.mission-quote::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin-left: auto;
  background: var(--accent);
  border-radius: 2px;
}

.mission-quote-block {
  display: none;
}

.dimension-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--section-panel);
}

.dimension {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.dimension:last-child {
  border-bottom: none;
}

/* Stepped column backgrounds (light) */
.dimension:nth-child(1) { background: #f3f7f9; }
.dimension:nth-child(2) { background: #eaf1f5; }
.dimension:nth-child(3) { background: #e1eaef; }
.dimension:nth-child(4) { background: #d7e3ea; }
.dimension:nth-child(5) { background: #cedce5; }

.dimension .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
  margin-bottom: 1rem;
}

.dimension .icon svg {
  width: 28px;
  height: 28px;
  display: block;
  overflow: visible;
}

.dimension h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.dimension p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Services */
.services {
  background: var(--section-services);
  padding-block: 7rem;
}

.services-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-head h2 {
  margin: 0;
  color: var(--text);
}

.services-head::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--accent);
  border-radius: 2px;
}

.card-grid {
  display: grid;
  gap: 1.75rem;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.15rem 1.85rem 2.5rem;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow-card);
}

.card-tag {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.card h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.check-list {
  margin-top: 0;
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
  border: 1.5px solid #8bcf2b;
  border-radius: 50%;
  background: transparent;
  color: #8bcf2b;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.card-watermark {
  position: absolute;
  right: -0.25rem;
  bottom: -0.5rem;
  width: 7.5rem;
  height: 7.5rem;
  color: rgba(0, 43, 69, 0.07);
  pointer-events: none;
}

.card-watermark svg {
  width: 100%;
  height: 100%;
}

/* Vorteile */

.vorteile {
  background: var(--section-vorteile);
  padding-block: 7rem;
}

.vorteile-head {
  text-align: center;
  margin-bottom: 3.25rem;
}

.vorteile-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text);
}

.vorteile-head .title-underline {
  color: var(--text);
}

.vorteile-head .title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.vorteile-head .title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.vorteile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.vorteile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.vorteile-badge-icon {
  display: inline-flex;
  color: var(--accent);
}

.vorteile-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--text);
}

.vorteile-body {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
}

.vorteile-body strong {
  color: var(--text);
  font-weight: 700;
}

.vorteile-meaning {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.25rem;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.vorteile-meaning-title {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.vorteile-checks {
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.vorteile-checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
  row-gap: 0.15rem;
  align-items: start;
  padding-left: 0;
}

PLACEHOLDER

.vorteile-checks strong {
  color: var(--text);
  font-size: 0.95rem;
}

.vorteile-checks span {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.vorteile-meaning-mark {
  position: absolute;
  right: 0.75rem;
  bottom: -0.4rem;
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(0, 143, 165, 0.08);
  font-weight: 700;
  pointer-events: none;
}

.vorteile-visual {
  display: flex;
  align-items: stretch;
}

.vorteile-media {
  width: 100%;
  border-radius: 14px;
  padding: 0.85rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 180, 200, 0.18), transparent 65%);
  box-shadow: 0 0 40px rgba(0, 180, 200, 0.12);
}

.laptop-scene {
  position: relative;
  height: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(40, 60, 80, 0.35), transparent 50%),
    linear-gradient(180deg, #0a1016 0%, #05080c 55%, #1a120c 100%);
  display: grid;
  place-items: center;
  padding: 1.5rem 1.25rem 2rem;
}

.laptop {
  width: min(100%, 320px);
  position: relative;
  z-index: 1;
}

.laptop-screen {
  background: #0b1220;
  border: 2px solid #2a3340;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 0.85rem 0.9rem 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 232, 0.08);
}

.laptop-screen pre {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.5;
  color: #c9d4e0;
  white-space: pre-wrap;
}

.laptop-screen .c-k { color: #7dd3fc; }
.laptop-screen .c-s { color: #86efac; }
.laptop-screen .c-n { color: #fbbf24; }
.laptop-screen .c-c { color: #64748b; }

.laptop-base {
  height: 10px;
  background: linear-gradient(180deg, #3a4555, #1c232e);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 42%;
  height: 6px;
  background: #151a22;
  border-radius: 0 0 6px 6px;
}

.desk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background:
    linear-gradient(180deg, transparent, rgba(60, 35, 18, 0.55)),
    repeating-linear-gradient(
      90deg,
      #3a2416 0px,
      #4a3020 8px,
      #3a2416 16px
    );
  opacity: 0.55;
}

/* FAQ */
.faq {
  background: var(--section-faq);
  padding-block: 7rem;
}
.faq h2 { margin-bottom: 2.75rem; color: var(--text); }

.accordion {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.accordion-item[open] summary::after { content: "−"; }

.accordion-body {
  padding: 0 1.25rem 1.25rem;
}

.accordion-body p { margin: 0; }

/* CTA */
.cta-section {
  background: var(--section-cta);
  padding-block: 7rem;
}

.cta-section h2 { color: var(--text); }

.cta-section .lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 3.25rem;
  background: var(--section-faq);
}

[data-theme="dark"] .site-footer {
  background: #070b10;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

.footer-brand-name {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.footer-brand-name:hover {
  color: var(--accent);
}

.footer-blurb {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-brand .copyright {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  max-width: 280px;
}

.newsletter-form input,
.newsletter-form .form-control {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  min-width: 0;
  width: 100%;
}

[data-theme="light"] .newsletter-form input,
:root:not([data-theme="dark"]) .newsletter-form input {
  background: var(--neutral-100);
}

.newsletter-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.newsletter-form button {
  display: grid;
  place-items: center;
  background: var(--color-primary);
  border: none;
  color: var(--secondary-800);
  padding: 0 0.9rem;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--primary-400);
}

.footer-icons {
  display: flex;
  gap: 0.55rem;
}

.footer-icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
}

:root:not([data-theme="dark"]) .footer-icon-btn {
  background: var(--neutral-100);
}

.footer-icon-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Legal placeholder pages */
.legal-page {
  padding: 3rem 0 5rem;
  max-width: 720px;
}

.legal-page h1 { margin-bottom: 1.5rem; }

/* Desktop */
@media (min-width: 768px) {
  .menu-toggle { display: none; }

  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }

  .dimension-panel {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

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

  .mission-head {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 4rem;
  }

  .mission-quote {
    justify-self: end;
    text-align: right;
  }

  .dimension {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .dimension:nth-child(3n) {
    border-right: none;
  }

  .dimension:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }

  .vorteile-card {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    padding: 1.75rem;
    align-items: stretch;
  }

  .laptop-scene {
    min-height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }

  .hero {
    padding: 3.5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  .hero-visual {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .dimension-panel {
    grid-template-columns: repeat(5, 1fr);
  }

  .dimension {
    border-right: 1px solid var(--border);
    border-top: none !important;
    padding: 2.5rem 1.5rem;
  }

  .dimension:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .dimension:last-child {
    border-right: none;
  }

  .hero h1 {
    max-width: 13ch;
  }
}

/* =========================================================
   Motion — load + scroll text effects
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero h1.reveal {
  transform: translate3d(0, 1.75rem, 0) scale(0.985);
}

.hero h1.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.mission-quote.reveal {
  transform: translate3d(1.25rem, 0, 0);
}

.mission-quote.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.dimension.reveal,
.card.reveal {
  transform: translate3d(0, 1.6rem, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero h1.reveal,
  .mission-quote.reveal,
  .dimension.reveal,
  .card.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
