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


/* ── DESIGN-TOKENS ── */
:root {
  --bg:        #f8f9fc;
  --bg2:       #ffffff;
  --bg3:       #f1f3f8;
  --text:      #111827;
  --muted:     #6b7280;
  --light:     #9ca3af;
  --border:    #e5e7eb;
  --cyan:      oklch(60% 0.22 252);
  --cyan-lt:   oklch(96% 0.05 252);
  --cyan-mid:  oklch(75% 0.13 252);
  --violet:    oklch(58% 0.22 295);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ff-head: 'Plus Jakarta Sans', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
}


/* ── GLOBALES LAYOUT ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

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

#root {
  min-height: 100vh;
}


/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

.nav.scrolled {
  background: rgba(248,249,252,0.97);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
}

.nav-logo-name span {
  color: var(--cyan);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  transition: color 0.22s, transform 0.22s, text-shadow 0.22s;
}

.nav-links a:hover {
  color: var(--cyan);
  transform: scale(1.07);
  text-shadow: 0 2px 14px oklch(60% 0.22 252 / 0.28);
}

.nav-cta {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--cyan);
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px oklch(60% 0.22 252 / 0.3);
}

.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  touch-action: manipulation;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 8px 0 20px;
}

.nav-mobile-menu a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--cyan);
}

.nav-mobile-cta {
  margin-top: 12px;
  background: var(--cyan) !important;
  color: #fff !important;
  text-align: center;
  padding: 13px 0 !important;
  border-radius: 100px;
  border: none !important;
  box-shadow: 0 4px 12px oklch(60% 0.22 252 / 0.3);
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 56px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 65% at 90%  5%,  #b4caff 0%, transparent 65%),
    radial-gradient(ellipse 60% 55% at  5% 95%,  #bfceff 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 50% 50%,  #d4e0ff 0%, transparent 70%),
    linear-gradient(160deg, #eef2ff 0%, #e6ecff 100%);
}

.hero-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Blobs verwenden radial-gradient statt filter:blur — gleiche optische Wirkung, kein GPU-Filter-Overhead */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob1 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, oklch(78% 0.14 252 / 0.58) 0%, transparent 68%);
  top: -160px;
  right: -120px;
  animation: blobFloat1 8s ease-in-out infinite;
  will-change: transform;
}

.hero-blob2 {
  width: 510px;
  height: 510px;
  background: radial-gradient(circle, oklch(80% 0.14 295 / 0.42) 0%, transparent 68%);
  bottom: -80px;
  left: 29%;
  animation: blobFloat2 10s ease-in-out infinite;
  will-change: transform;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 30px) scale(1.05); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: black;
  border: 1px solid oklch(0% 0 0 / 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(2, 194, 2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
}

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

.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  gap: 3px;
  flex: 1;
}

.stat-value {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-cards {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: heroCardsIn 1s 0.5s both;
}

@keyframes heroCardsIn {
  from { opacity: 0; transform: translateY(calc(-50% + 24px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}


/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--cyan);
  border: none;
  padding: 15px 32px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px oklch(60% 0.22 252 / 0.35);
  transition: filter 0.2s, transform 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg2);
  border: 1.5px solid var(--border);
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-outline:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* ── SEKTIONEN ── */
.section {
  padding: 96px 56px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-lt);
  color: black;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-h2 em {
  font-style: normal;
  color: var(--cyan);
}

.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}


/* ── ÜBER UNS ── */
.why-bg {
  background: #f5f7fd;
}

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

.about-header .section-sub {
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.why-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-check {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--cyan-lt);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-title {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}


/* ── GRÜNDER ── */
.founder-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0 32px;
}

.founder {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan-lt);
  border: 2px solid var(--cyan-mid);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--ff-head);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.founder-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.founder-name {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.founder-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
  max-width: 580px;
}


/* ── LEISTUNGEN ── */
.services-bg {
  background: #ffffff;
}

.services-header {
  margin-bottom: 52px;
  text-align: center;
}

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--cyan-lt);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}


/* ── KONTAKT ── */
.contact-bg {
  background: #f5f7fd;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-detail {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--cyan-lt);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.contact-row-text strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 15px;
}

.contact-form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.form-input,
.form-textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px oklch(60% 0.22 252 / 0.12);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--light);
}

.form-success {
  padding: 20px;
  border-radius: var(--r-md);
  background: oklch(96% 0.04 210);
  border: 1px solid oklch(53% 0.24 252 / 0.25);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
}

.form-error {
  padding: 20px;
  border-radius: var(--r-md);
  background: oklch(97% 0.015 30);
  border: 1px solid oklch(60% 0.18 30 / 0.30);
  color: oklch(42% 0.18 30);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}


/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0e1420 0%, #111827 100%);
  border-radius: 32px 32px 0 0;
  padding: 56px 56px 40px;
}

.footer-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: block;
}

.footer-brand .footer-tagline {
  margin-top: 4px;
}

.footer-logo-icon {
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-logo-text span {
  color: var(--cyan-mid);
}

.footer-tagline {
  font-size: 13px;
  color: oklch(62% 0 0);
  font-weight: 300;
  letter-spacing: 0.02em;
  padding-left: 0;
  margin-left: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 8px;
}

.footer-nav a {
  font-size: 14px;
  color: oklch(65% 0 0);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: oklch(28% 0 0);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: oklch(62% 0 0);
  font-weight: 300;
}

.footer-region {
  font-size: 12px;
  color: oklch(58% 0 0);
  font-weight: 300;
}


/* ── ANIMATIONEN & REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-entry {
  animation: heroEntry 0.85s cubic-bezier(0.4,0,0.2,1) both;
}

.hero-entry-d1 { animation-delay: 0.10s; }
.hero-entry-d2 { animation-delay: 0.22s; }
.hero-entry-d3 { animation-delay: 0.34s; }
.hero-entry-d4 { animation-delay: 0.46s; }

@keyframes heroEntry {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-cards {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
    height: auto;
    min-height: 68px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav > div:first-child {
    min-height: 68px;
  }

  .nav-hamburger { display: flex; }
  .nav-cta       { display: none; }

  .nav-links { display: none; }
  .nav.nav-open .nav-mobile-menu { display: flex; }

  .hero    { padding: 100px 24px 60px; }
  .section { padding: 72px 24px; }

  .stats-inner  { flex-wrap: wrap; padding: 0; align-items: start; }
  .stat-item    { width: 50%; flex: none; padding: 16px 10px; }
  .stat-label   { white-space: normal; text-align: center; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }

  .founder     { padding: 24px 20px; }
  .founder-bio { max-width: 100%; }

  .contact-inner            { grid-template-columns: 1fr; gap: 40px; }
  .form-row                 { grid-template-columns: 1fr; }
  .contact-bg .reveal-left  { text-align: center; }
  .contact-bg .section-h2,
  .contact-bg .section-sub  { text-align: center; }
  .contact-detail           { width: fit-content; margin-left: auto; margin-right: auto; }
  .contact-row-text         { text-align: left; }

  .footer        { padding: 40px 24px 32px; }
  .footer-top    { flex-direction: column; gap: 28px; align-items: flex-start; }
  .footer-nav    { gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ── BARRIEREFREIHEIT ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (scripting: none) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}


/* ── RECHTLICHE SEITEN ── */
.legal-header {
  background: linear-gradient(150deg, #ffffff 0%, #f0efff 50%, #e8eaff 100%);
  padding: 140px 56px 72px;
  text-align: center;
}

.legal-header .section-tag {
  margin-bottom: 20px;
}

.legal-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal-header p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}

.legal-body {
  padding: 72px 56px 96px;
  background: var(--bg);
}

.legal-body .section-inner {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 44px;
}

.legal-section h2 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.legal-section h3 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 24px;
  color: var(--text);
}

.legal-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.legal-section a {
  color: var(--cyan);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

@media (max-width: 900px) {
  .legal-header { padding: 120px 24px 56px; }
  .legal-body   { padding: 56px 24px 72px; }
}
