/* ═══════════════════════════════════════════════════
   Aliora – style.css
   Premium Webagentur · Coinbase-inspired dark startup
═══════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --bg:      #07070D;
  --bg1:     #0C0C14;
  --bg2:     #101018;
  --card:    #13131C;
  --border:  rgba(255,255,255,0.08);
  --text:    #FFFFFF;
  --muted:   rgba(255,255,255,0.50);
  --muted2:  rgba(255,255,255,0.28);
  --a1:      #5B6CF9;
  --a2:      #38BDF8;
  --a-grad:  linear-gradient(135deg, #5B6CF9 0%, #38BDF8 100%);
  --radius:  16px;
  --radius-sm: 8px;
  --nav-h:   62px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.5;
}

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

a { color: inherit; }

::selection { background: rgba(91,108,249,0.22); }

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

*:focus-visible { outline: 2px solid rgba(91,108,249,0.6); outline-offset: 3px; }

/* ── GRADIENT UTILITIES ───────────────────────────── */
.g-text {
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.sec { padding: 80px 24px; }

.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0 24px;
}

/* ── NAVIGATION ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text); }

/* ── HAMBURGER ────────────────────────────────────── */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* ── MOBILE DRAWER ────────────────────────────────── */
.drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--bg1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.drawer.open { transform: translateX(0); }

.drawer a {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.drawer a:hover { color: var(--text); }
.drawer a.drawer-cta { color: var(--a2); font-weight: 600; font-size: 1.2rem; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--a-grad);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-grad:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,249,0.38);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  color: var(--muted);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(91,108,249,0.45);
  transform: translateY(-2px);
}

/* Nav CTA – small gradient pill */
.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--a-grad);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(91,108,249,0.35);
}

/* ── EYEBROW BADGE ────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid rgba(91,108,249,0.3);
  background: rgba(91,108,249,0.08);
  padding: 5px 14px;
  border-radius: 100px;
}

.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--a-grad);
  flex-shrink: 0;
}

/* ── SECTION LABELS ───────────────────────────────── */
.sec-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a1);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.sec-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 12px;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Aurora blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,108,249,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: drift-1 14s ease-in-out infinite;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.17) 0%, transparent 70%);
  bottom: -150px; left: -50px;
  animation: drift-2 18s ease-in-out infinite;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.16) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: drift-3 22s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.06); }
  66%       { transform: translate(-15px, 12px) scale(0.97); }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-25px, -18px) scale(1.04); }
  70%       { transform: translate(20px, 10px) scale(0.98); }
}
@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -30px) scale(1.08); }
}

.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 0%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 800px;
  margin-top: 24px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ── STATS ROW ────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted2);
  margin-top: 4px;
}

/* ── HERO ENTRANCE ANIMATIONS ─────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.u1 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.u2 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.18s both; }
.u3 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.30s both; }
.u4 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.u5 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.54s both; }

/* ── REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }

/* ── SERVICE CARDS ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--a-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(91,108,249,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(91,108,249,0.12);
}
.card:hover::before { opacity: 1; }

.card-featured {
  grid-column: span 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(91,108,249,0.12);
  border: 1px solid rgba(91,108,249,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.card-featured .card-icon { margin-bottom: 0; }
.card:hover .card-icon { background: rgba(91,108,249,0.2); }

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-featured .card-title { font-size: 1rem; }

.card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.card-featured .card-desc { font-size: 0.88rem; }

/* ── WHY ALIORA ───────────────────────────────────── */
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s ease;
}
.why-card:hover { border-color: rgba(91,108,249,0.25); }

.why-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--a1);
  margin-bottom: 16px;
}

.why-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROCESS ──────────────────────────────────────── */
.process-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 20px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,108,249,0.35) 20%, rgba(56,189,248,0.35) 80%, transparent);
  pointer-events: none;
}

.step {
  padding: 0 12px;
  text-align: center;
  position: relative;
}

.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid rgba(91,108,249,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--a1);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

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

.contact-pitch h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 400px;
  margin-bottom: 16px;
}

.contact-pitch p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 32px;
}

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

.ci-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.ci-val a { text-decoration: none; transition: color 0.2s ease; }
.ci-val a:hover { color: var(--a2); }

/* ── FORM ─────────────────────────────────────────── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.f-group { margin-bottom: 16px; }

.f-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted2);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 10px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.f-input:focus {
  outline: none;
  border-color: rgba(91,108,249,0.5);
  background: rgba(91,108,249,0.06);
}
.f-input::placeholder { color: rgba(255,255,255,0.2); }

select.f-input { cursor: pointer; }
select.f-input option { background: #111; }

.form-success {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(91,108,249,0.1);
  border: 1px solid rgba(91,108,249,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--a2);
}

.form-error {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #F87171;
}

.form-note {
  font-size: 0.7rem;
  color: var(--muted2);
  text-align: center;
  margin-top: 12px;
}

.submit-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--a-grad);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.submit-btn:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,249,0.38);
}
.submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted2);
}

.footer-seo {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .sec { padding: 60px 20px; }

  .nav-links { display: none; }
  .ham { display: flex; }

  .hero { padding: 80px 20px 50px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3.2rem); }

  .stats-row { gap: 24px; }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-grid::before { display: none; }

  .step {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0;
  }
  .step-num-wrap { margin-bottom: 0; flex-shrink: 0; }

  .process-wrap { margin-bottom: 32px; }

  .why-header { flex-direction: column; align-items: flex-start; }

  .f-row { grid-template-columns: 1fr; }

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

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .card-featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .card-featured .card-icon { margin-bottom: 18px; }
}

/* ═══════════════════════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    700px circle at var(--mouse-x, 50%) var(--mouse-y, 30%),
    rgba(91,108,249,0.07),
    transparent 40%
  );
}

/* ═══════════════════════════════════════════════════
   PAGE TRANSITIONS
═══════════════════════════════════════════════════ */
body {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
body.is-exiting {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}
body.is-entering {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}
body.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER (homepage bottom)
═══════════════════════════════════════════════════ */
.cta-banner-inner {
  background: var(--card);
  border: 1px solid rgba(91,108,249,0.2);
  border-radius: var(--radius);
  padding: 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(91,108,249,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cta-banner-text p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages – smaller than full-viewport)
═══════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 24px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero .blob { opacity: 0.6; }
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 700px;
  margin-top: 16px;
}
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL CARDS (leistungen.html)
═══════════════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--a-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-detail-card:hover {
  border-color: rgba(91,108,249,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(91,108,249,0.1);
}
.service-detail-card:hover::before { opacity: 1; }
.service-detail-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 6px;
}
.service-detail-price {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.service-detail-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--a1);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   ÜBER UNS – MISSION & VALUES
═══════════════════════════════════════════════════ */
.mission-block {
  max-width: 760px;
  margin: 64px auto;
  text-align: center;
}
.mission-block p {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.mission-block strong {
  font-weight: 600;
  color: var(--text);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}
.value-card:hover { border-color: rgba(91,108,249,0.25); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(91,108,249,0.1);
  border: 1px solid rgba(91,108,249,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a1);
  margin-bottom: 10px;
}
.value-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.process-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ph-card {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.ph-num {
  font-size: 2rem;
  font-weight: 700;
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.ph-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .process-highlights { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   PROJEKT STARTEN – WIZARD PAGE
═══════════════════════════════════════════════════ */
.wizard-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Minimal nav */
.wizard-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.wizard-nav-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wizard-back {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.wizard-back:hover { color: var(--text); }

/* Progress bar */
.wizard-progress-wrap {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  height: 3px;
  background: rgba(255,255,255,0.06);
}
.wizard-progress-bar {
  height: 100%;
  background: var(--a-grad);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Wizard body */
.wizard-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 16px + 40px) 24px 40px;
}

/* Step container */
.wizard-step-container {
  width: 100%;
  max-width: 680px;
  position: relative;
}
.wizard-step {
  width: 100%;
}

.wizard-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a1);
  margin-bottom: 12px;
}
.wizard-step h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 32px;
}

/* Option cards (services – multi-select) */
.option-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.option-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  user-select: none;
}
.option-card:hover {
  border-color: rgba(91,108,249,0.35);
  transform: translateY(-2px);
}
.option-card.selected {
  border-color: rgba(91,108,249,0.6);
  background: rgba(91,108,249,0.1);
  box-shadow: 0 0 0 1px rgba(91,108,249,0.4), 0 8px 32px rgba(91,108,249,0.15);
}
.option-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(91,108,249,0.1);
  border: 1px solid rgba(91,108,249,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}
.option-card-price {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  opacity: 0.85;
}
.wizard-price-summary {
  min-height: 28px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.wizard-price-summary strong {
  background: var(--a-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Budget / timing options (radio-style) */
.radio-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.radio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}
.radio-card:hover { border-color: rgba(91,108,249,0.35); }
.radio-card.selected {
  border-color: rgba(91,108,249,0.6);
  background: rgba(91,108,249,0.1);
  box-shadow: 0 0 0 1px rgba(91,108,249,0.4), 0 8px 32px rgba(91,108,249,0.12);
}
.radio-card-label {
  font-size: 0.9rem;
  font-weight: 600;
}
.radio-card-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}

.timing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.wizard-sub-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* Textarea + URL input */
.wizard-textarea {
  width: 100%;
  min-height: 140px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 16px;
  resize: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 16px;
  overflow: hidden;
}
.wizard-textarea:focus {
  outline: none;
  border-color: rgba(91,108,249,0.5);
  background: rgba(91,108,249,0.04);
}
.wizard-textarea::placeholder { color: rgba(255,255,255,0.2); }

.wizard-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 12px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 16px;
}
.wizard-input:focus {
  outline: none;
  border-color: rgba(91,108,249,0.5);
  background: rgba(91,108,249,0.04);
}
.wizard-input::placeholder { color: rgba(255,255,255,0.2); }

.wizard-field-group {
  margin-bottom: 4px;
}
.wizard-field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted2);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

/* Checkbox */
.wizard-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  cursor: pointer;
}
.wizard-checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--a1);
  cursor: pointer;
  margin-top: 2px;
}
.wizard-checkbox-wrap span {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* Navigation buttons */
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.wizard-btn-back {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.wizard-btn-back:hover { color: var(--text); }
.wizard-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--a-grad);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wizard-btn-next:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,249,0.38);
}
.wizard-btn-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════
   SUCCESS SCREEN + CHECKMARK ANIMATION
═══════════════════════════════════════════════════ */
.success-screen {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--a1);
  fill: none;
}
.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 2.5;
  stroke: var(--a2);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-icon.draw .checkmark-circle {
  animation: stroke 0.9s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.success-icon.draw .checkmark-check {
  animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}
.success-screen h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.success-screen p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Wizard footer */
.wizard-footer {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.wizard-footer p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted2);
}

@media (max-width: 640px) {
  .option-cards-grid { grid-template-columns: 1fr; }
  .radio-cards-grid  { grid-template-columns: 1fr; }
  .timing-cards-grid { grid-template-columns: 1fr; }
  .wizard-body { padding-top: calc(var(--nav-h) + 8px + 32px); }
}

/* ── INLINE FORM ERRORS ───────────────────────────── */
.wizard-field-error {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  color: #F87171;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.wizard-field-group.has-error .wizard-input,
.wizard-field-group.has-error .wizard-textarea {
  border-color: rgba(248, 113, 113, 0.55);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.wizard-checkbox-wrap.has-error {
  border-radius: 8px;
  outline: 1px solid rgba(248, 113, 113, 0.45);
  outline-offset: 6px;
}

#budget-grid.has-error,
#timing-grid.has-error {
  border-radius: 12px;
  outline: 1px solid rgba(248, 113, 113, 0.45);
  outline-offset: 6px;
}

.wizard-form-error {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #FCA5A5;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   PAPER PLANE SUBMIT ANIMATION
═══════════════════════════════════════════════════ */

/* Button fold — pure transform + opacity, no width/padding/layout impact */
.wizard-btn-next.is-folding {
  pointer-events: none;
  position: relative;
  color: transparent;
  transform-origin: center center;
  animation: btn-fold 0.7s cubic-bezier(0.6, 0, 0.25, 1) forwards;
  transition: color 0.2s ease;
  will-change: transform, opacity;
}
.wizard-btn-next.is-folding > * {
  animation: btn-content-vanish 0.28s cubic-bezier(0.6, 0, 0.25, 1) forwards;
}

@keyframes btn-content-vanish {
  to { opacity: 0; transform: translateY(-14px); }
}

@keyframes btn-fold {
  0%   { transform: translateY(0)    rotate(0deg)   scale(1);    opacity: 1; }
  35%  { transform: translateY(-2px) rotate(-3deg)  scale(0.82); opacity: 1; }
  65%  { transform: translateY(-5px) rotate(-7deg)  scale(0.5);  opacity: 0.8; }
  100% { transform: translateY(-10px) rotate(-14deg) scale(0.12); opacity: 0; }
}

/* Validation-fail shake */
.wizard-btn-next.is-shaking {
  animation: btn-shake 0.42s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes btn-shake {
  0%, 100%        { transform: translateX(0); }
  15%             { transform: translateX(-7px); }
  30%             { transform: translateX(6px); }
  45%             { transform: translateX(-5px); }
  60%             { transform: translateX(4px); }
  75%             { transform: translateX(-2px); }
}

/* Paper plane — flies in fixed coordinates set via CSS variables */
.paper-plane {
  position: fixed;
  z-index: 9999;
  width: 64px;
  height: 64px;
  top: 0;
  left: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 32px rgba(91, 108, 249, 0.45));
  opacity: 0;
  transform: translate3d(var(--x0, 0), var(--y0, 0), 0) scale(0.5) rotate(0deg);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.paper-plane svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Act 2 — reveal (slower, more graceful materialize) */
.paper-plane.is-revealing {
  animation: plane-reveal 0.46s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes plane-reveal {
  0%   { opacity: 0; transform: translate(var(--x0), var(--y0)) scale(0.35) rotate(-18deg); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: translate(var(--x0), var(--y0)) scale(1) rotate(-8deg); }
}

/* Act 3 — wobble + anticipation (ends pulled-back, so flight unleashes) */
.paper-plane.is-wobbling {
  animation: plane-wobble 0.6s ease-in-out forwards;
}
@keyframes plane-wobble {
  0%   { transform: translate(var(--x0), var(--y0)) scale(1) rotate(-8deg); }
  25%  { transform: translate(calc(var(--x0) - 3px), calc(var(--y0) - 7px)) scale(1.025) rotate(-13deg); }
  55%  { transform: translate(calc(var(--x0) + 3px), calc(var(--y0) + 2px)) scale(1) rotate(-5deg); }
  80%  { transform: translate(calc(var(--x0) - 2px), calc(var(--y0) - 3px)) scale(1) rotate(-10deg); }
  100% { transform: translate(calc(var(--x0) - 5px), calc(var(--y0) + 2px)) scale(1) rotate(-14deg); }
}

/* Act 4+5 — flight + landing, end at target via WAAPI (JS handles).
   Reduce drop-shadow during flight — drop-shadow is non-GPU on many GPUs
   and re-composites each frame. Smaller blur = much less paint cost. */
.paper-plane.is-flying {
  filter: drop-shadow(0 6px 14px rgba(91, 108, 249, 0.35));
  transition: opacity 0.22s ease-out, filter 0.2s ease-out;
}

/* Wind streaks behind the plane */
.plane-wind {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  top: 0; left: 0;
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0,0,0);
}
.plane-wind .wind-line {
  position: absolute;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 108, 249, 0.7), rgba(56, 189, 248, 0.5), transparent);
  transform-origin: right center;
}
.plane-wind .wind-line:nth-child(1) { width: 90px; top: 50%;                left: -78px; opacity: 0.9; }
.plane-wind .wind-line:nth-child(2) { width: 64px; top: calc(50% - 10px);   left: -54px; opacity: 0.6;  height: 1px; }
.plane-wind .wind-line:nth-child(3) { width: 48px; top: calc(50% + 10px);   left: -40px; opacity: 0.5;  height: 1px; }
.plane-wind .wind-line:nth-child(4) { width: 36px; top: calc(50% + 1px);    left: -110px; opacity: 0.35; height: 1px; }

.plane-wind.is-visible {
  animation: wind-fade 1.5s ease-out forwards;
}
@keyframes wind-fade {
  0%   { opacity: 0; }
  18%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Success screen — entry orchestrated by JS */
#step-5.is-emerging .success-screen h2,
#step-5.is-emerging .success-screen p,
#step-5.is-emerging .success-screen .btn-grad {
  opacity: 0;
  transform: translateY(14px);
  animation: success-text-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#step-5.is-emerging .success-screen h2     { animation-delay: 0.7s; }
#step-5.is-emerging .success-screen p      { animation-delay: 0.95s; }
#step-5.is-emerging .success-screen .btn-grad { animation-delay: 1.25s; }

@keyframes success-text-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-btn-next.is-folding,
  .wizard-btn-next.is-folding > *,
  .paper-plane,
  .plane-wind,
  #step-5.is-emerging .success-screen h2,
  #step-5.is-emerging .success-screen p,
  #step-5.is-emerging .success-screen .btn-grad {
    animation: none !important;
    transition: opacity 0.2s ease !important;
  }
  .paper-plane { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB)
═══════════════════════════════════════════════════ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 32px 0 12px;
}
.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
}
.legal-content ul li {
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--a1);
  font-size: 0.8rem;
}
.legal-content a {
  color: var(--a2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-content a:hover {
  color: var(--text);
}
.legal-content strong {
  font-weight: 500;
  color: var(--text);
}
.legal-updated {
  font-size: 0.78rem;
  color: var(--muted2);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
