/* ═══════════════════════════════════════════════════════════
   CREANOX — GLOBAL STYLESHEET
   Schrift: Sora (Headlines) + DM Sans (Body)
   Theme:   Tief-Schwarz / Weiß-Akzente
   Version: 2.0
═══════════════════════════════════════════════════════════ */

/* ─── CSS-Variablen ─── */
:root {
  --bg:           #07070a;
  --bg-2:         #0d0d10;
  --card:         rgba(255, 255, 255, 0.04);
  --card-hover:   rgba(255, 255, 255, 0.07);
  --line:         rgba(255, 255, 255, 0.09);
  --line-strong:  rgba(255, 255, 255, 0.16);
  --text:         #ffffff;
  --muted:        rgba(255, 255, 255, 0.65);
  --muted-2:      rgba(255, 255, 255, 0.40);
  --accent:       #ffffff;
  --accent-dim:   rgba(255, 255, 255, 0.08);
  --shadow:       0 20px 80px rgba(0, 0, 0, 0.40);
  --shadow-hover: 0 32px 100px rgba(0, 0, 0, 0.52);
  --radius-xl:    28px;
  --radius-lg:    20px;
  --radius-md:    14px;
  --radius-sm:    10px;
  --max:          1240px;
  --font-head:    'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

/* ─── Body & Basis ─── */
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.055), transparent 30%),
    radial-gradient(ellipse at 82% 8%,   rgba(255, 255, 255, 0.040), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Maus-Glow (pseudoelement) ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    550px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 42%
  );
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* ─── Statische Hintergrund-Orbs ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.035), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.030), transparent 18%),
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.025), transparent 22%);
  z-index: 0;
}

header, main, footer {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

/* ─── Reveal-Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

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

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 10, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.brand small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.brand strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover { color: #fff; }
nav a:hover::after { transform: scaleX(1); }

/* Nav-Buttons */
.nav-cta,
.nav-login,
.nav-back,
.nav-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta::after,
.nav-login::after,
.nav-back::after,
.nav-ghost::after {
  display: none !important;
}

.nav-cta,
.nav-back {
  border: 1px solid #fff;
  background: #fff;
  color: #111 !important;
}

.nav-cta:hover,
.nav-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

.nav-login,
.nav-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85) !important;
  background: transparent;
}

.nav-login:hover,
.nav-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer {
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted-2);
  font-size: 13px;
}

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

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════════
   TYPOGRAFIE
═══════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: #111;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.07);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.11);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */

.card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.16);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head small {
  display: block;
  margin-bottom: 9px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-bottom: 13px;
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
}

/* ═══════════════════════════════════════
   GRIDS
═══════════════════════════════════════ */

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

/* ═══════════════════════════════════════
   FORMULARE
═══════════════════════════════════════ */

.field {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13.5px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(7, 7, 10, 0.70);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 15px;
  outline: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

textarea {
  min-height: 150px;
  max-height: 320px;
  resize: vertical;
}

/* Checkbox */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ffffff;
  padding: 0;
  transform: none;
}

input[type="checkbox"]:focus {
  transform: none;
}

.submit {
  width: 100%;
  min-height: 54px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.07);
}

.submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════
   PILLS
═══════════════════════════════════════ */

.pill {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.80);
  font-size: 13.5px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* ═══════════════════════════════════════
   STATUS-BOX (Login-Fehler etc.)
═══════════════════════════════════════ */

.status-box {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.80);
  font-size: 13.5px;
  display: none;
}

.status-box.show  { display: block; }
.status-box.error { border-color: rgba(255, 80, 80, 0.30); background: rgba(255, 80, 80, 0.06); }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */

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

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@keyframes floatGlow {
  0%, 100% { opacity: 0.75; transform: translateY(0); }
  50%       { opacity: 1;    transform: translateY(-6px); }
}

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

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  /* Hamburger sichtbar, Desktop-Nav versteckt */
  .nav-toggle { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    list-style: none;
    background: rgba(7, 7, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 12px 0 20px;
    z-index: 29;
  }

  nav ul.is-open { display: flex; }

  nav ul li { width: 100%; }

  nav ul li a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a::after { display: none !important; }

  /* Login- und CTA-Button im offenen Menü */
  nav ul li:has(.nav-login),
  nav ul li:has(.nav-cta) { padding: 4px 16px; }

  .nav-login,
  .nav-cta {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
  }
}

/* ── Hamburger-Button ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Status-Box (Auth-Seiten) ───────────────────────────────── */
.status-box {
  margin-bottom: 14px;
  padding: 13px 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.80);
  font-size: 13.5px;
  display: none;
}
.status-box.show    { display: block; }
.status-box.error   { border-color: rgba(255, 80,  80,  0.30); background: rgba(255, 80,  80,  0.06); color: rgba(255, 140, 140, 0.90); }
.status-box.success { border-color: rgba(80,  255, 140, 0.30); background: rgba(80,  255, 140, 0.06); color: rgba(140, 255, 180, 0.90); }

/* ── no-js Fallback: .reveal sofort sichtbar ohne JavaScript ── */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}
}

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

.hero {
  padding: 100px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 760px;
  animation: fadeInUp 1s ease both;
}

.hero p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  max-width: 700px;
  animation: fadeInUp 1.15s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: fadeInUp 1.3s ease both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 14px;
  animation: fadeInUp 1.45s ease both;
}

.hero-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.20);
}

.hero-card-inner {
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 26%),
    rgba(9,9,12,0.78);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-card-title {
  font-size: 14px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════
   STAT GRID (Hero-Karte)
═══════════════════════════════════════ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

/* ═══════════════════════════════════════
   FOCUS LIST (Hero-Karte)
═══════════════════════════════════════ */

.focus-list {
  display: grid;
  gap: 12px;
}

.focus-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.focus-item:hover {
  transform: translateX(6px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.focus-item strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.focus-item span {
  color: var(--muted);
  font-size: 14px;
}

/* ═══════════════════════════════════════
   BENEFIT (Leistungen-Sektion)
═══════════════════════════════════════ */

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover .benefit-icon {
  transform: scale(1.08);
  background: rgba(255,255,255,0.14);
}

/* ═══════════════════════════════════════
   SERVICE TAG & STEP NUMBER
═══════════════════════════════════════ */

.service-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover .step-number {
  transform: rotate(-6deg) scale(1.04);
  background: rgba(255,255,255,0.10);
}

/* ═══════════════════════════════════════
   SHOWCASE (Leistungs-Übersicht)
═══════════════════════════════════════ */

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.showcase-panel {
  min-height: 320px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.showcase-panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.18);
}

.showcase-panel h3 {
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.showcase-panel p {
  color: var(--muted);
  max-width: 540px;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-box,
.form-box {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease;
}

.contact-box:hover,
.form-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.18);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}

.contact-list strong {
  color: #fff;
}

form .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ═══════════════════════════════════════
   RESPONSIVE ERGÄNZUNGEN
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero-grid,
  .showcase,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .stat-grid,
  form .row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
  }

  .contact-box,
  .form-box,
  .hero-card,
  .showcase-panel {
    padding: 24px;
  }
}
