/* CrazyDevelopment — Design System */
:root {
  --bg:        #07070d;
  --bg-soft:   #0d0d17;
  --surface:   #12121f;
  --surface-2: #181829;
  --border:    #23233a;
  --text:      #ececf5;
  --muted:     #9a9ab4;
  --accent:    #3effa5;
  --accent-2:  #22d3ee;
  --accent-3:  #f70783;
  --ok:        #34d399;
  --radius:    16px;
  --maxw:      1180px;
  --font:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:      "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hintergrund-Glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 40rem at 15% -10%, rgba(124, 92, 255, .22), transparent 60%),
    radial-gradient(50rem 35rem at 95% 10%, rgba(34, 211, 238, .14), transparent 60%),
    radial-gradient(40rem 30rem at 50% 110%, rgba(244, 113, 181, .10), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Scrollleiste ---------- */

/* hält den Platz frei, damit die Seite beim Ein- und Ausblenden nicht springt */
html { scrollbar-gutter: stable; }

/* Firefox kennt keine Verläufe und nimmt die Akzentfarbe.
   Wichtig: Chromium ignoriert sämtliche ::-webkit-scrollbar-Regeln, sobald
   scrollbar-width oder scrollbar-color gesetzt ist. Deshalb gelten die
   Standard-Eigenschaften nur dort, wo es die Pseudo-Elemente nicht gibt. */
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-soft);
  }
  .code-window pre,
  .field textarea,
  .nav-links {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  /* Rand in Trackfarbe lässt den Griff schmaler wirken, ohne die Trefffläche zu verkleinern */
  border: 3px solid var(--bg-soft);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9478ff, #4ce0f5);
  background-clip: padding-box;
  border-width: 2px;
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: var(--bg-soft); }

/* Innenliegende Bereiche: schmaler und ohne eigene Spur */
.code-window pre::-webkit-scrollbar,
.field textarea::-webkit-scrollbar,
.nav-links::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.code-window pre::-webkit-scrollbar-track,
.field textarea::-webkit-scrollbar-track,
.nav-links::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}
.code-window pre::-webkit-scrollbar-thumb,
.field textarea::-webkit-scrollbar-thumb,
.nav-links::-webkit-scrollbar-thumb {
  border-width: 2px;
  border-color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 13, .72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-family: var(--mono);
  font-size: .95rem;
  letter-spacing: -.02em;
  color: #07070d;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(124, 92, 255, .45);
}
/* Eigenes Logo: assets/img/logo.svg austauschen (SVG, PNG oder WebP).
   Bringt die Datei ihren eigenen Hintergrund mit, tritt der Verlauf zurück.
   Fällt das Bild aus, greift der Verlauf mit dem Kürzel aus data-fallback. */
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-mark:has(img) {
  background: none;
  box-shadow: none;
}
.logo .accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000000;
  box-shadow: 0 8px 30px rgba(124, 92, 255, .35);
}
.btn-primary:hover { 
  box-shadow: 0 12px 40px rgb(2, 0, 8); 
}
.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(124, 92, 255, .1); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--border);
  background: rgba(34, 211, 238, .07);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: .35; } }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.03em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.grad {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 55%, var(--accent-3) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero { padding: 110px 0 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { color: var(--muted); font-size: .85rem; }

/* Code-Fenster */
.code-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.code-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.code-bar i:nth-child(1) { background: #ff5f57; }
.code-bar i:nth-child(2) { background: #febc2e; }
.code-bar i:nth-child(3) { background: #28c840; }
.code-bar .file {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
}
.code-window pre {
  margin: 0;
  padding: 22px;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.85;
  overflow-x: auto;
  color: #cfd0e6;
}
.c-key { color: var(--accent-3); }
.c-str { color: var(--ok); }
.c-fn  { color: var(--accent-2); }
.c-com { color: #5c5c78; }
.c-num { color: #fbbf24; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(18,18,31,.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, .55);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  background: rgba(124, 92, 255, .12);
  border: 1px solid rgba(124, 92, 255, .3);
  margin-bottom: 20px;
  overflow: hidden;
  transition: background .25s, border-color .25s;
}
.card:hover .icon { background: rgba(124, 92, 255, .2); border-color: rgba(124, 92, 255, .5); }

/* Eigene Icons: SVG, PNG oder WebP im Ordner assets/img/icons/ */
.card .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
/* Für Logos, die die volle Kachel füllen sollen: <div class="icon icon-full"> */
.card .icon.icon-full img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}

/* Font-Awesome-Icons: <div class="icon"><i class="fa-solid fa-chart-line"></i></div> */
.icon i[class*="fa-"] {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-2);
  /* Verlauf, wo der Browser ihn auf Text anwenden kann */
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Im Logo-Feld sitzt das Icon auf der Verlaufskachel — dort schlicht dunkel */
.logo-mark i[class*="fa-"] {
  font-size: 1rem;
  color: #07070d;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.card p { color: var(--muted); font-size: .95rem; margin-top: 10px; }
.card ul { margin-top: 16px; padding-left: 0; list-style: none; }
.card ul li {
  color: var(--muted);
  font-size: .88rem;
  padding-left: 22px;
  position: relative;
  margin-top: 7px;
}
.card ul li::before {
  content: "\25B8";
  position: absolute; left: 0;
  color: var(--accent-2);
}

/* Prozess */
.step .num {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Tech-Stack */
.tech-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tech {
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .2s, border-color .2s, background .2s;
}
.tech:hover { color: var(--text); border-color: var(--accent); background: rgba(124,92,255,.08); }

/* Preis */
.price-card { display: flex; flex-direction: column; }
.price-card.featured {
  border-color: rgba(124, 92, 255, .6);
  box-shadow: 0 0 0 1px rgba(124,92,255,.2), 0 24px 60px rgba(124,92,255,.15);
}
.price-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: .7rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07070d;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 14px 0 4px;
}
.price small { font-size: .85rem; color: var(--muted); font-weight: 500; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card ul { flex: 1; margin-bottom: 26px; }

/* Kontakt */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 7px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: .94rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .18);
}
.field textarea { resize: vertical; min-height: 130px; }
.checkline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.checkline:hover { border-color: rgba(124, 92, 255, .45); background: rgba(124, 92, 255, .05); }
.checkline:has(input:checked) { border-color: rgba(124, 92, 255, .5); background: rgba(124, 92, 255, .07); }

.checkline input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg-soft);
  position: relative;
  cursor: pointer;
  transition: background .18s, border-color .18s, box-shadow .18s;
}
.checkline input[type="checkbox"]:hover { border-color: var(--accent); }
.checkline input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
/* Häkchen */
.checkline input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #07070d;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checkline input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .3);
}
.form-note {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
}
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: .88rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(52, 211, 153, .1); border: 1px solid rgba(52,211,153,.35); color: var(--ok); }
.form-status.warn { background: rgba(251, 191, 36, .1); border: 1px solid rgba(251,191,36,.35); color: #fbbf24; }
.form-status.err { background: rgba(248, 113, 113, .1); border: 1px solid rgba(248,113,113,.35); color: #f87171; }
.form-status.pending { background: rgba(124, 92, 255, .1); border: 1px solid rgba(124,92,255,.35); color: var(--muted); }

.field input.has-error, .field textarea.has-error, .field select.has-error {
  border-color: rgba(248, 113, 113, .65);
}
.field-error {
  color: #f87171;
  font-size: .8rem;
  margin-top: 6px;
}
.checkline input.has-error { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, .18); }
.checkline:has(input.has-error) { border-color: rgba(248, 113, 113, .5); background: rgba(248, 113, 113, .06); }

.btn:disabled { opacity: .6; cursor: progress; transform: none; }

/* Honeypot — für Menschen unsichtbar, für Bots erreichbar */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item .icon {
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(34, 211, 238, .1);
  border: 1px solid rgba(34, 211, 238, .25);
}
.contact-item strong { display: block; font-size: .95rem; }
.contact-item span { color: var(--muted); font-size: .9rem; }

/* CTA-Band */
.cta-band {
  background: linear-gradient(120deg, rgba(124,92,255,.18), rgba(34,211,238,.12));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}

/* ---------- Legal-Seiten ---------- */
.legal { padding: 20px 0 100px; }
.legal-head {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.legal-body { max-width: 820px; }
.legal-body h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}
.legal-body h3 { font-size: 1.05rem; margin: 28px 0 10px; color: var(--accent-2); }
.legal-body p, .legal-body li { color: var(--muted); font-size: .96rem; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--text); }
.legal-body address { font-style: normal; color: var(--muted); margin-bottom: 16px; }
.notice {
  background: rgba(251, 191, 36, .07);
  border: 1px solid rgba(251, 191, 36, .3);
  border-left: 3px solid #fbbf24;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: .89rem;
  color: #e8d9a8;
}
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.toc strong { display: block; margin-bottom: 12px; font-size: .95rem; }
.toc ol { margin: 0 0 0 20px; }
.toc li { margin-bottom: 5px; font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--muted); font-size: .92rem; }
.footer-grid a:hover { color: var(--text); text-decoration: none; }
.footer-about p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 320px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 20px; }

/* ---------- Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 16px; }
  .nav-cta { display: flex; justify-content: center; }
}

@media (max-width: 700px) {
  section { padding: 72px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 36px 24px; }
  .hero-stats { gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
