/* ==========================================================================
   BLICKWINKEL PRODUCTIONS — Aufbau & Stil nach Vorbild tivaos.agency
   (Poppins, helles Grau, weiße Karten mit 25px-Radius + weichem Schatten,
   dunkle Gradient-Hero-Bänder — Farben auf Blickwinkel Schwarz/Weiß gemappt)
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap; src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap; src: url("../fonts/poppins-v24-latin-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap; src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-display: swap; src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 800; font-display: swap; src: url("../fonts/poppins-v24-latin-800.woff2") format("woff2"); }

/* ---------- Tokens (Tivaos-System, Blickwinkel-Farben) ---------- */
:root {
  --bg: #F5F4F4;            /* Tivaos primary */
  --card: #FFFFFF;
  --brand: #1A1A1C;         /* Near-Black (Headings, aktive Elemente) */
  --brand-2: #4A4A50;       /* dunkles Grau (Reserve) */
  --accent: #FFD400;        /* CTA-Gelb */
  --accent-dark: #EDC500;
  --ink: #0B0B0C;
  --ink-2: #1C1C1F;
  --ink-deep: #141414;      /* neutrales Near-Black */
  --text: #141416;
  --muted: #5C5C62;
  --line: #E7E6E3;
  --on-dark: #FFFFFF;
  --on-dark-muted: #D6D6D0;

  --radius: 25px;           /* Tivaos-Karten/Buttons */
  --radius-sm: 10px;
  --shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.4);   /* Tivaos-Schatten */
  --shadow-soft: 0px 10px 30px -12px rgba(0, 0, 0, 0.25);

  --font: "Poppins", "Helvetica Neue", Arial, sans-serif;

  /* Tivaos 5er-Spacing-Skala */
  --space-1: 5px;  --space-2: 10px; --space-3: 15px; --space-4: 20px;
  --space-5: 25px; --space-6: 30px; --space-8: 40px; --space-10: 50px;
  --space-12: 60px; --space-15: 75px; --space-20: 100px; --space-24: 120px;

  --container: 1200px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section { position: relative; }
.section { padding-block: var(--space-20); }
.section--std { padding-block: var(--space-15); }

/* Weißes Band als Abwechslung zur grauen Fläche */
.section--paper { background: var(--card); }

main { display: block; }

/* ---------- Typografie (Poppins, Sentence-Case wie Tivaos) ---------- */
h1, h2, h3 { font-weight: 700; line-height: 1.2; text-wrap: balance; color: var(--brand); }

h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: 20px; }

.lead { font-size: 18px; color: var(--muted); max-width: 62ch; }

.txt-outline { color: inherit; }

/* Kicker-Label über Überschriften */
.meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #141416;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 999px;
}

.section-head { margin-bottom: var(--space-10); }
.section-head .meta { margin-bottom: var(--space-2); }
.section-head p { margin-top: var(--space-3); }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Buttons (Tivaos: 25px-Radius, Grow-Hover) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 54px;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-soft); }
.btn svg { flex: none; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: #141416; }
.btn--primary:hover { background: var(--accent-dark); }

.btn--ghost { background: var(--card); color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }

/* Buttons auf dunklen Bändern: Pink bleibt (wie Tivaos) */
.on-dark .btn--primary { background: var(--accent); color: #141416; }
.on-dark .btn--primary:hover { background: var(--accent-dark); }
.on-dark .btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.on-dark .btn--ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Header (weiß, sticky, wie Tivaos) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: var(--header-h);
  max-width: 1400px;
}

.brand { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; color: var(--ink); }
.brand-top { font-size: 7px; font-weight: 500; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 2px; white-space: nowrap; }
.brand-word { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.brand-sub { font-size: 8px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: var(--ink); margin-top: 3px; text-align: right; white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: var(--space-4); }
.site-nav a:not(.btn) {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  padding: 6px 2px;
  transition: color 0.18s ease;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav a:not(.btn):hover { color: var(--brand); }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--brand); font-weight: 700; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .btn { min-height: 44px; padding: 10px var(--space-5); font-size: 15px; white-space: nowrap; }

/* ---------- Leistungen-Dropdown (Desktop: Hover, Mobil: Tippen) ---------- */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 2px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease;
}
.nav-drop-btn svg { transition: transform 0.25s ease; }
.nav-drop:hover .nav-drop-btn,
.nav-drop.open .nav-drop-btn,
.nav-drop:focus-within .nav-drop-btn { color: var(--brand); }
.nav-drop:hover .nav-drop-btn svg,
.nav-drop.open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.35);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.25s;
  z-index: 110;
}
.nav-drop-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav .nav-drop-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.site-nav .nav-drop-menu a::after { content: none; }
.site-nav .nav-drop-menu a:hover { background: var(--bg); color: var(--brand); }
.site-nav .nav-drop-menu a[aria-current="page"] { font-weight: 700; color: var(--brand); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (dunkles Gradient-Band wie Tivaos, Bild + Overlay) ---------- */
.hero, .page-hero {
  position: relative;
  color: var(--on-dark);
  background: linear-gradient(160deg, #141414 0%, #4A3F00 140%);
  overflow: hidden;
}
.hero { padding-top: calc(var(--header-h) + var(--space-8)); padding-bottom: var(--space-12); }
.page-hero { padding-top: calc(var(--header-h) + var(--space-8)); padding-bottom: var(--space-10); }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 18, 16, 0.35) 0%, rgba(18, 18, 16, 0.94) 100%);
}
.hero .container, .page-hero .container { position: relative; z-index: 2; }

.hero h1, .page-hero h1 { color: #fff; max-width: 21ch; }
.hero .lead, .page-hero .lead { color: var(--on-dark-muted); margin-top: var(--space-4); }
.hero .meta, .page-hero .meta { margin-bottom: var(--space-3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

/* Häkchen-Zeile im Hero (Tivaos: 3 Checkpunkte) */
.hero-checks { display: grid; gap: var(--space-2); margin-top: var(--space-4); }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
  color: #fff;
}
.hero-checks svg { flex: none; color: #fff; background: rgba(255,255,255,0.14); border-radius: 50%; padding: 4px; }

/* ---------- Service-Karten (Startseite, Tivaos "Unsere Lösungen") ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.4); }
.svc-card figure { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-2); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.svc-card:hover img { transform: scale(1.05); }
.svc-card .sc-body { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-5); flex: 1; }
.svc-card h3 { font-size: 19px; }
.svc-card p { color: var(--muted); font-size: 15px; }
.svc-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-3);
  font-weight: 600;
  color: var(--ink);
}
.svc-card .sc-link svg { transition: transform 0.2s ease; }
.svc-card:hover .sc-link svg { transform: translateX(4px); }

/* ---------- Info-Karten (Unterseiten) ---------- */
.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.info-card:hover { transform: translateY(-4px); }
.info-card .ic-num { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.info-card .ic-icon { width: 44px; height: 44px; color: var(--brand); }
.info-card h3 { font-size: 19px; }
.info-card p { color: var(--muted); font-size: 15px; }
.info-card .ic-foot { margin-top: auto; padding-top: var(--space-2); }

/* Hervorgehobene Karte: dunkel (wie Tivaos-Lila-Karte) */
.info-card--hi { background: linear-gradient(150deg, var(--ink-deep) 0%, #3A3200 100%); color: #fff; }
.info-card--hi h3 { color: #fff; }
.info-card--hi p { color: var(--on-dark-muted); }
.info-card--hi .badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #141416;
}

/* Check-Listen */
.check-list { display: grid; gap: var(--space-2); }
.check-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
}
.check-list svg { flex: none; margin-top: 3px; color: #141416; background: var(--accent); border-radius: 50%; padding: 3px; }
.info-card--hi .check-list li { color: var(--on-dark-muted); }
.info-card--hi .check-list svg { color: #fff; background: rgba(255,255,255,0.15); }

/* ---------- Prozess-Schritte (Tivaos "Wie läuft eine Zusammenarbeit ab?") ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.step {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-6);
  transition: transform 0.22s ease;
}
.step:hover { transform: translateY(-4px); }
.step .st-num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #141416;
  font-weight: 700;
  font-size: 20px;
}
.step h3 { font-size: 18px; margin-top: var(--space-4); }
.step p { font-size: 15px; color: var(--muted); margin-top: var(--space-2); }

/* ---------- Zähler ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.stat {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-6);
  text-align: center;
}
.stat-val { font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--brand); }
.stat-val .suffix { color: var(--accent); }
.stat-lbl { margin-top: var(--space-2); font-size: 14px; font-weight: 500; color: var(--muted); }

/* ---------- Referenzen: Kunden-Logo-Slider ---------- */
.logo-slider {
  overflow: hidden;
  padding-block: var(--space-3);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: var(--space-4);
}
.logo-track.ready { animation: marquee 48s linear infinite; }
.logo-slider:hover .logo-track.ready { animation-play-state: paused; }
.logo-card {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 115px;
  padding: 0 var(--space-4);
  background: transparent;
  transition: transform 0.22s ease;
}
.logo-card:hover { transform: translateY(-4px) scale(1.04); }
.logo-card img { max-width: 100%; max-height: 78px; object-fit: contain; }
.logo-card--dark img { filter: brightness(0); }

/* Optischer Feinabgleich: jedes Logo gleich stark */
.lg-partykit img { max-height: 104px; }
.lg-koenigsberg img { max-height: 92px; }
.lg-royalcards img { max-height: 90px; }
.lg-phoenix img { max-height: 98px; }
.lg-zeichen img { max-height: 74px; }
.lg-unikat img { max-height: 68px; }
.lg-max img { max-height: 82px; }
.lg-tucholsky img { max-height: 70px; opacity: 0.95; }
.lg-atrium img { max-height: 92px; }
@keyframes marquee { to { transform: translateX(calc(-50% - var(--space-2))); } }

/* ---------- Team (Tivaos-Team-Karten) ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.team-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-card figure { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }
.team-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 0.4s ease; }
.team-card:hover img { transform: scale(1.04); }
.team-card figure.img-missing::after {
  content: "Foto folgt — Datei in assets/img ablegen";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--ink-2);
}
.team-card figure.img-missing img { display: none; }
.team-card .tm-body { padding: var(--space-5); }
.team-card .tm-role { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #A88B00; }
.team-card .tm-body h3 { font-size: 20px; margin-top: 4px; }
.team-card .tm-body p { color: var(--muted); font-size: 15px; margin-top: var(--space-2); }

/* ---------- CTA-Band (dunkel, wie Tivaos-Farbband) ---------- */
.cta-band {
  background: var(--accent);
  color: #141416;
}
.cta-band .btn--primary { background: #141416; color: #fff; }
.cta-band .btn--primary:hover { background: #2E2E33; }
.cta-band .btn--ghost { color: #141416; border-color: #141416; }
.cta-band .btn--ghost:hover { background: #141416; color: #fff; }
.cta-band p { color: rgba(20, 20, 22, 0.78); }
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-15);
}
.cta-band h2 { color: #141416; max-width: 20ch; }
.cta-band p { color: rgba(20, 20, 22, 0.78); margin-top: var(--space-2); max-width: 46ch; }

/* ---------- Social-Media: Phone + Feed ---------- */
.social-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 18.5;
  border: 10px solid var(--ink);
  border-radius: 44px;
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.phone::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 3;
}
.phone-feed { display: flex; flex-direction: column; animation: feed-scroll 16s linear infinite; }
.phone:hover .phone-feed { animation-play-state: paused; }
@keyframes feed-scroll { to { transform: translateY(-50%); } }
.feed-item { position: relative; flex: none; }
.feed-item img { width: 100%; aspect-ratio: 9 / 13; object-fit: cover; }
.feed-ui {
  position: absolute;
  inset: auto 10px 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-2);
  z-index: 2;
}
.feed-cap { font-size: 11px; font-weight: 600; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.feed-rail { display: flex; flex-direction: column; gap: 10px; color: #fff; }
.feed-rail svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); }
.feed-rail .like { animation: like-pop 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes like-pop { 0%, 78%, 100% { transform: scale(1); } 84% { transform: scale(1.35); } 90% { transform: scale(1); } }

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-4);
  background: var(--card);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: chip-float 5s ease-in-out infinite;
  z-index: 4;
}
.float-chip svg { width: 16px; height: 16px; }
.fc-1 { top: 8%; left: 0; animation-delay: 0s; }
.fc-2 { top: 30%; right: 0; animation-delay: 1.2s; }
.fc-3 { bottom: 26%; left: -4px; animation-delay: 2.1s; }
.fc-4 { bottom: 6%; right: 4px; animation-delay: 3s; }
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.platform-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.platform-row span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-4);
  background: var(--card);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.platform-row svg { width: 16px; height: 16px; color: var(--ink); }

/* Tag-Chips (z.B. "Perfekt für") */
.svc-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.svc-tags span {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  color: var(--text);
}

/* ---------- Showcase (Werbematerial) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); }
.filter-btn {
  padding: 10px var(--space-5);
  min-height: 44px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.18s ease;
}
.filter-btn:hover { color: var(--ink); transform: translateY(-2px); }
.filter-btn.active { background: var(--brand); color: #fff; }

.show-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-5); }
.show-card {
  position: relative;
  grid-column: span 2;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease;
}
.show-card:hover { transform: translateY(-6px); }
.show-card--wide { grid-column: span 3; }
.show-card.hide { display: none; }
.show-card figure { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-2); }
.show-card--wide figure { aspect-ratio: 3 / 2; }
.show-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.show-card:hover img { transform: scale(1.05); }
.show-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--accent);
  color: #141416;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.show-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
}
.show-card .ttl { font-weight: 700; font-size: 16px; color: var(--brand); }
.show-card .cat { font-size: 12px; font-weight: 500; color: var(--muted); }

.show-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-8);
  background: linear-gradient(150deg, var(--ink-deep) 0%, #3A3200 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.show-cta h3 { color: #fff; font-size: clamp(20px, 2.2vw, 26px); max-width: 20ch; }
.show-cta p { color: var(--on-dark-muted); }

/* Teaser-Karten (Startseite) */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.teaser-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease;
}
.teaser-card:hover { transform: translateY(-6px); }
.teaser-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.45s ease; }
.teaser-card:hover img { transform: scale(1.05); }
.teaser-card .tc-lbl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand);
}

/* ---------- Anfrage-Konfigurator ---------- */
.config-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.config-step { margin-bottom: var(--space-8); }
.config-step > .step-lbl {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  min-height: 56px;
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}
.chip:hover { transform: translateY(-2px); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip .box {
  flex: none;
  width: 20px; height: 20px;
  border: 2px solid #c9c9c4;
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}
.chip .box::after { content: ""; width: 9px; height: 9px; border-radius: 2px; background: #fff; transform: scale(0); transition: transform 0.15s ease; }
.chip.checked { background: var(--brand); color: #fff; }
.chip.checked .box { border-color: #fff; }
.chip.checked .box::after { transform: scale(1); }

.config-summary {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
  background: linear-gradient(160deg, var(--ink-deep) 0%, #3A3200 100%);
  color: #fff;
  padding: var(--space-6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.config-summary .meta { margin-bottom: var(--space-3); }
.sum-lines li {
  display: flex;
  gap: var(--space-2);
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}
.sum-lines li::before { content: "→"; color: var(--on-dark-muted); }
.sum-lines li.empty { color: var(--on-dark-muted); }
.sum-lines li.empty::before { content: "—"; }
.config-summary .btn { width: 100%; margin-top: var(--space-5); background: var(--accent); color: #141416; }
.config-summary .btn:hover { background: var(--accent-dark); }
.config-note { margin-top: var(--space-3); font-size: 13px; color: var(--on-dark-muted); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: start;
}
.contact-items { display: grid; gap: var(--space-3); margin-top: var(--space-6); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.contact-item:hover { transform: translateY(-2px); }
.contact-item svg { flex: none; color: var(--brand); }
.contact-item .cl { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.contact-item .cv { font-weight: 600; color: var(--brand); overflow-wrap: anywhere; }

.form {
  display: grid;
  gap: var(--space-4);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 14px var(--space-4);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,89,12,0.14);
}
.form-note { font-size: 13px; color: var(--muted); }

/* ---------- Footer (dunkel, wie Tivaos) ---------- */
.site-footer { background: var(--ink-deep); color: #fff; margin-top: var(--space-15); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
}
.footer-brand .logo-lockup { line-height: 1; display: inline-block; }
.footer-brand .l1 { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; color: var(--on-dark-muted); margin-bottom: 6px; }
.footer-brand .l2 { display: block; font-weight: 800; font-size: 32px; letter-spacing: -0.02em; color: #fff; }
.footer-brand .l3 { display: block; font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase; margin-top: 6px; color: #fff; text-align: right; }
.footer-brand p { margin-top: var(--space-4); color: var(--on-dark-muted); font-size: 15px; max-width: 34ch; }

.footer-col .fc-ttl { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: var(--space-4); }
.footer-col ul { display: grid; gap: var(--space-2); }
.footer-col a { font-size: 15px; color: var(--on-dark-muted); transition: color 0.18s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: var(--on-dark-muted);
}

/* ---------- Unterseiten (Impressum/Datenschutz) ---------- */
.legal { padding-top: calc(var(--header-h) + var(--space-15)); padding-bottom: var(--space-15); }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: var(--space-8); }
.legal h2 { font-size: 22px; margin-top: var(--space-8); margin-bottom: var(--space-3); }
.legal p, .legal li { color: var(--muted); margin-bottom: var(--space-3); }
.legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.legal ul { list-style: disc; padding-left: var(--space-5); }

/* ---------- Reveal-Animationen (Tivaos: grow / slideInRight) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal--right { transform: translateX(40px); }
.reveal--right.in { transform: none; }
.reveal--grow { transform: scale(0.92); }
.reveal--grow.in { transform: scale(1); }

/* ---------- Fliegende Social-Icons ---------- */
.fly-zone { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.fly {
  position: absolute;
  width: 54px; height: 54px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
  animation: fly-a 7s ease-in-out infinite;
}
.fly svg { width: 100%; height: 100%; }
.fly-1 { top: 16%; right: 8%; animation-delay: 0s; }
.fly-2 { top: 48%; right: 20%; width: 64px; height: 64px; animation-name: fly-b; animation-duration: 8.5s; animation-delay: 0.8s; }
.fly-3 { top: 70%; right: 6%; width: 46px; height: 46px; animation-delay: 1.6s; }
.fly-4 { top: 12%; right: 30%; width: 44px; height: 44px; animation-name: fly-b; animation-duration: 9s; animation-delay: 2.4s; }
.fly-5 { top: 62%; right: 34%; width: 50px; height: 50px; animation-delay: 3.1s; }
@keyframes fly-a {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(-14px, -22px) rotate(7deg); }
}
@keyframes fly-b {
  0%, 100% { transform: translate(0, 0) rotate(5deg) scale(1); }
  50% { transform: translate(12px, -26px) rotate(-8deg) scale(1.08); }
}
@media (max-width: 900px) {
  .fly { width: 40px; height: 40px; }
  .fly-2 { width: 46px; height: 46px; }
  .fly-1 { top: 10%; right: 6%; }
  .fly-2 { top: 30%; right: 16%; }
  .fly-3 { top: 52%; right: 5%; }
  .fly-4 { top: 8%; right: 32%; }
  .fly-5 { top: 46%; right: 30%; }
}

/* Legacy-Klassen aus früherem Design — neutralisiert */
.vf::before, .vf::after { content: none; }
.cursor-dot, .cursor-ring { display: none !important; }
.marquee, .outro-word, .hero-deco, .hero-index { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding-block: var(--space-15); }
  .section--std { padding-block: var(--space-12); }
  .card-grid, .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .config-grid { grid-template-columns: 1fr; }
  .config-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-stage { grid-template-columns: 1fr; gap: var(--space-10); }
}

@media (max-width: 1279px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-2) var(--space-4) var(--space-5);
    background: #fff;
    box-shadow: 0 20px 34px -20px rgba(0, 0, 0, 0.3);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(calc(-100% - var(--header-h)));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }
  .nav-open .site-nav { transform: translateY(0); }

  /* Menüpunkte fliegen gestaffelt hinein */
  .site-nav > a, .site-nav > .nav-drop {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.28s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-open .site-nav > a, .nav-open .site-nav > .nav-drop { opacity: 1; transform: translateY(0); }
  .nav-open .site-nav > :nth-child(1) { transition-delay: 0.08s; }
  .nav-open .site-nav > :nth-child(2) { transition-delay: 0.12s; }
  .nav-open .site-nav > :nth-child(3) { transition-delay: 0.16s; }
  .nav-open .site-nav > :nth-child(4) { transition-delay: 0.2s; }
  .nav-open .site-nav > :nth-child(5) { transition-delay: 0.24s; }
  .nav-open .site-nav > :nth-child(6) { transition-delay: 0.28s; }
  .nav-open .site-nav > :nth-child(7) { transition-delay: 0.32s; }
  .nav-open .site-nav > :nth-child(8) { transition-delay: 0.38s; }

  .nav-drop { width: 100%; }
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-4) var(--space-1);
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .nav-drop-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 var(--space-4);
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  /* Desktop-Zentrierung auf Mobil aufheben (sonst rutscht das Menü aus dem Bild) */
  .nav-drop .nav-drop-menu,
  .nav-drop.open .nav-drop-menu,
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    transform: none;
    left: auto;
    top: auto;
  }
  .site-nav .nav-drop-menu a {
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: var(--space-3) var(--space-1);
  }

  /* Seite scrollt nicht, solange das Menü offen ist */
  body.nav-open { overflow: hidden; }
  .site-nav a:not(.btn) {
    padding: var(--space-4) var(--space-1);
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .site-nav .btn { margin-top: var(--space-4); width: 100%; min-height: 54px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section, .section--std { padding-block: var(--space-10); }
  .hero { padding-top: calc(var(--header-h) + var(--space-6)); padding-bottom: var(--space-8); }
  .page-hero { padding-top: calc(var(--header-h) + var(--space-6)); padding-bottom: var(--space-8); }
  .container { padding-inline: var(--space-4); }


  .card-grid, .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .stat { padding: var(--space-4); }
  .show-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .show-grid > * { grid-column: 1 / -1 !important; }
  .teaser-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: var(--space-5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); padding-block: var(--space-8); }

  .float-chip { position: static; animation: none; }
  .phone-wrap { flex-direction: column; align-items: center; gap: var(--space-4); }
  .float-chips-mobile { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-track, .phone-feed { animation: none; }
  .logo-track { flex-wrap: wrap; width: auto; }
  .float-chip, .feed-rail .like, .fly { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ---------- Fliegende Social-Icons im Startseiten-Hero (rechte Seite) ---------- */
.fly-zone--hero .fly-1 { top: 14%; right: 6%; width: 58px; height: 58px; }
.fly-zone--hero .fly-2 { top: 36%; right: 17%; width: 66px; height: 66px; }
.fly-zone--hero .fly-3 { top: 60%; right: 7%; width: 50px; height: 50px; }
.fly-zone--hero .fly-4 { top: 78%; right: 22%; width: 46px; height: 46px; }
.fly-zone--hero .fly-5 { top: 18%; right: 27%; width: 48px; height: 48px; }
@media (max-width: 1024px) {
  .fly-zone--hero .fly-2 { right: 8%; }
  .fly-zone--hero .fly-4 { right: 12%; }
  .fly-zone--hero .fly-5 { right: 16%; }
}
@media (max-width: 768px) {
  .fly-zone--hero { display: none; }
}

/* ---------- Schwebender WhatsApp-Button (alle Seiten, unten rechts) ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.06); background: #1EBE5A; }
.wa-fab svg { width: 36px; height: 36px; }
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: wa-ping 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-fab { right: 15px; bottom: 15px; width: 56px; height: 56px; }
  .wa-fab svg { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { animation: none; opacity: 0; }
}

/* ---------- Referenzen: Laptop+Phone-Mockups ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-15) var(--space-10);
}
.ref-card { text-align: center; }
.ref-scene { position: relative; padding-right: 8%; }
.ref-laptop {
  background: #16161A;
  border-radius: 14px;
  padding: 10px 10px 0;
  box-shadow: var(--shadow);
}
.ref-laptop img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-radius: 6px 6px 0 0;
}
.ref-laptop::after {
  content: "";
  display: block;
  height: 14px;
  margin: 0 -3.5%;
  background: #26262C;
  border-radius: 0 0 12px 12px;
}
.ref-phone {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: 23%;
  border: 5px solid #101013;
  border-radius: 20px;
  overflow: hidden;
  background: #101013;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}
.ref-phone img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top;
}
.ref-url { margin-top: var(--space-6); font-style: italic; color: var(--muted); font-size: 15px; overflow-wrap: anywhere; }
.ref-card .btn { margin-top: var(--space-3); }
@media (max-width: 768px) {
  .ref-grid { grid-template-columns: 1fr; gap: var(--space-12); }
}

/* ---------- Produktseiten: Bestell-Widget ---------- */
.bestell-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: start;
}
.bestell-widget {
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-8);
}
.chip-grid--menge { grid-template-columns: repeat(3, 1fr); }
.chip-grid--menge .chip { min-height: 48px; justify-content: center; text-align: center; padding: var(--space-2) var(--space-3); }
.chip-grid--menge .chip .box { display: none; }
.bestell-hinweis {
  margin-top: var(--space-3);
  font-size: 14px;
  color: var(--muted);
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-2) var(--space-3);
}
.bestell-notiz {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 16px;
  padding: 12px var(--space-3);
  resize: vertical;
}
.bestell-notiz:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,26,28,0.08); }
.bestell-buttons { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1EBE5A; color: #fff; }
@media (max-width: 900px) {
  .bestell-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .chip-grid--menge { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Direktversand ---------- */
.bestell-kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 640px) { .bestell-kontakt { grid-template-columns: 1fr; } }
.form-status, .bestell-status {
  font-weight: 600;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: #E7F6E9;
  color: #1B6B2F;
}
.form-status.fehler, .bestell-status.fehler { background: #FBEAEA; color: #9A2B2B; }

/* ---------- Datei-Upload im Bestell-Widget ---------- */
.datei-feld {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
  padding: var(--space-4);
  border: 2px dashed #C9C9C4;
  border-radius: var(--radius-sm);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.datei-feld:hover { border-color: var(--brand); background: var(--bg); }
.datei-feld input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.datei-feld .datei-icon { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #141416; }
.datei-feld .datei-text { font-weight: 600; font-size: 15px; color: var(--text); overflow-wrap: anywhere; }
.datei-feld .datei-text em { font-style: normal; font-weight: 400; color: var(--muted); }
.datei-feld.hat-datei { border-style: solid; border-color: var(--brand); }
.datei-status { margin-top: var(--space-2); }
.datei-status.fehler { color: #9A2B2B; font-weight: 600; }
.bestell-kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 640px) { .bestell-kontakt { grid-template-columns: 1fr; } }
