/* ============================================================
   dasdensch – Apple Product Page Style
   Dark, fullscreen sections, centered type, dramatic reveals
   ============================================================ */

html {
  --bg:       #000000;
  --bg-alt:   #101010;
  --surface:  #1d1d1f;
  --border:   rgba(255,255,255,0.08);
  --text:     #f5f5f7;
  --text-dim: #86868b;
  --text-sub: #a1a1a6;
  --blue:     #ffffff;
  --nav-h:    48px;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --max-w:    980px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

::selection { background: #f5f5f7; color: #000; }

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

/* ── Typography ────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

.section-sub {
  font-size: 1.25rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 50ch;
}

.section-header { margin-bottom: 64px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: #f5f5f7;
  color: #1d1d1f;
  border: none;
}
.btn--primary:hover { background: #e8e8ed; }

.btn--ghost {
  background: none;
  color: var(--text-sub);
  border: none;
  padding: 12px 4px;
}
.btn--ghost:hover { color: #fff; }

.btn--full { width: 100%; justify-content: center; }

/* ── Dark Theme Glow (for hero titles) ─────────────────────── */
[data-glow] {
  background: linear-gradient(180deg, #48484a 0%, #48484a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 1.2s ease;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

[data-glow].glow-active {
  background: linear-gradient(180deg, #f5f5f7 30%, #86868b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service card hover (keep existing) */
.service-card {
  transition: background 0.4s;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(0,0,0,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}

.nav__logo { font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.nav__logo span { opacity: 0.3; }

.nav__menu { display: flex; align-items: center; gap: 0; }

.nav__link {
  padding: 8px 12px; font-size: 0.75rem; font-weight: 400;
  color: var(--text-sub); transition: color 0.3s;
}
.nav__link:hover { color: #fff; }
.nav__link.active { color: #fff; }

.nav__link--cta {
  color: #1d1d1f; background: #f5f5f7;
  border-radius: 980px; padding: 6px 16px;
  font-weight: 500; margin-left: 8px;
}
.nav__link--cta:hover { background: #e8e8ed; color: #1d1d1f; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 8px 6px; justify-content: center;
}
.nav__burger span {
  display: block; width: 18px; height: 1px; background: var(--text-sub); transition: var(--transition);
}
.nav__burger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero (fullscreen, centered) ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 35%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
  overflow: hidden;
}

.hero__content { will-change: transform, opacity; }

.hero__content { max-width: 800px; }

.hero__title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #f5f5f7 30%, #86868b 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 44ch;
  margin: 0 auto 36px;
}

.hero__actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.hero__scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Services (Apple Highlights Carousel) ──────────────────── */
.services {
  padding: 120px 0 80px;
}

.services .section-header { text-align: left; }

/* Carousel */
.hl-carousel {
  padding: 40px 0 0;
  overflow: visible;
}

.hl-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
}
.hl-track::-webkit-scrollbar { display: none; }

.hl-card {
  flex: 0 0 min(85vw, 680px);
  scroll-snap-align: center;
}

.hl-card__inner {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 48px 44px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hl-card__inner:hover {
  transform: scale(0.985);
}

.hl-card__num {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.hl-card__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.hl-card__lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hl-card__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 420px;
}

.hl-card__visual {
  margin-top: auto;
  padding-top: 32px;
}

.hl-icon-row {
  display: flex;
  gap: 16px;
}

.hl-emoji {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Dots navigation */
.hl-nav {
  display: flex;
  justify-content: center;
  padding: 28px 0 0;
  gap: 16px;
  align-items: center;
}

.hl-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.hl-dot.active {
  width: 28px;
  background: var(--text);
}

/* ── Produkte (Interactive Panel + Visuals) ────────────────── */
.produkte {
  padding: 120px 0;
  background: var(--bg);
}

.produkte .section-header { margin-bottom: 48px; }

.produkte-panel {
  background: var(--bg-alt);
  border-radius: 28px;
  border: 1px solid var(--border);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pills overlay – floats over visual */
.produkte-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 380px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.produkte-pills {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.produkt-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-top: 6px;
  border-radius: 980px;
  background: rgba(29,29,31,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  font-family: var(--font);
  width: fit-content;
}
.produkt-pill:first-child { margin-top: 0; }

.produkt-pill:hover {
  background: rgba(29,29,31,0.8);
  border-color: rgba(255,255,255,0.15);
}

.produkt-pill.active {
  background: rgba(29,29,31,0.85);
  border-color: rgba(255,255,255,0.2);
}

.produkt-pill__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.produkt-pill.active .produkt-pill__dot {
  transform: scale(1.2);
}

.produkt-pill__name { pointer-events: none; }

/* Info accordion – frosted glass dropdown under pill */
.produkt-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1),
              opacity 0.35s ease,
              margin 0.4s ease,
              padding 0.4s ease;
  background: rgba(29,29,31,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 0 20px;
  border: 1px solid transparent;
}
.produkt-info.active {
  max-height: 240px;
  opacity: 1;
  margin: 8px 0 4px;
  padding: 18px 20px;
  border-color: rgba(255,255,255,0.06);
}

.produkt-info__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.produkt-info__desc strong {
  color: var(--text);
}

.produkt-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.produkt-info__cta:hover { gap: 10px; }
.produkt-info__cta svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Nav arrows – beside the pills */
.produkte-nav {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.produkte-nav button {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  font-family: var(--font);
}
.produkte-nav button:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Visual: fills right side of panel */
.produkte-visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  left: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  overflow: hidden;
}

.pv {
  opacity: 0;
  position: absolute;
  transform: scale(0.85) translateX(40px) rotateY(-12deg);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
              transform 1.2s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.pv.active {
  opacity: 1;
  position: relative;
  transform: scale(1) translateX(0) rotateY(0);
  pointer-events: all;
}

/* Staggered children fly in */
.pv.active .pv-stagger {
  animation: pvItemIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  opacity: 0;
}
.pv.active .pv-stagger:nth-child(1) { animation-delay: 0.15s; }
.pv.active .pv-stagger:nth-child(2) { animation-delay: 0.3s; }
.pv.active .pv-stagger:nth-child(3) { animation-delay: 0.45s; }
.pv.active .pv-stagger:nth-child(4) { animation-delay: 0.6s; }
.pv.active .pv-stagger:nth-child(5) { animation-delay: 0.75s; }
.pv.active .pv-stagger:nth-child(6) { animation-delay: 0.9s; }
.pv.active .pv-stagger:nth-child(7) { animation-delay: 1.05s; }

@keyframes pvItemIn {
  from { opacity: 0; transform: translateX(30px) rotateY(-15deg) scale(0.9); }
  to { opacity: 1; transform: translateX(0) rotateY(0) scale(1); }
}

/* ── Visual: denschLink ── */
.pv-link {
  background: #fff; border-radius: 28px; padding: 40px 32px 24px;
  width: 320px; text-align: center;
  box-shadow: 0 30px 80px rgba(4,120,87,0.2);
}
.pv-link-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, #047857, #34d399);
  margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #fff;
  box-shadow: 0 6px 24px rgba(4,120,87,0.3);
}
.pv-link-name { font-size: 18px; font-weight: 700; color: #1d1d1f; margin-bottom: 2px; }
.pv-link-bio { font-size: 13px; color: #86868b; margin-bottom: 20px; }
.pv-link-btn {
  padding: 14px; border-radius: 14px; font-size: 14px; font-weight: 600;
  color: #1d1d1f; background: #f5f5f7; margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,0.04);
}
.pv-link-btn.primary { background: #047857; color: #fff; }
.pv-link-footer { margin-top: 18px; font-size: 10px; color: #c4c4c4; }
.pv-link-footer b { color: #047857; }

/* ── Visual: denschCollabs ── */
.pv-collabs { width: 340px; display: flex; flex-direction: column; gap: 10px; }
.pv-deal {
  background: #fff; border-radius: 20px; padding: 22px 24px;
  border-left: 5px solid; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.pv-deal-brand { font-size: 17px; font-weight: 700; color: #1d1d1f; flex: 1; }
.pv-deal-amount { font-size: 18px; font-weight: 800; }
.pv-deal-status { font-size: 12px; color: #86868b; display: flex; align-items: center; gap: 6px; width: 100%; }
.pv-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ── Visual: denschMargin ── */
.pv-margin {
  width: 340px; background: #F0FDFE; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(14,116,144,0.15);
}
.pv-margin-head {
  background: #0C5F73; padding: 18px 20px 14px;
  font-size: 16px; font-weight: 700; color: #fff;
}
.pv-margin-head b { color: #22D3EE; }
.pv-margin-head em { font-size: 9px; font-style: normal; color: rgba(255,255,255,0.5); margin-left: 8px; }
.pv-margin-greeting { font-size: 18px; font-weight: 700; color: #1a1a1a; padding: 16px 18px 6px; }
.pv-margin-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 18px 18px; }
.pv-mtile {
  border-radius: 14px; padding: 14px 12px; font-size: 11px; color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.06);
}
.pv-mtile b { display: block; font-size: 22px; font-weight: 800; margin: 4px 0; }

/* ── Visual: denschQ ── */
.pv-q {
  width: 340px; background: #111; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(157,23,77,0.2);
}
.pv-q-now {
  background: linear-gradient(135deg, #9D174D, #be185d, #db2777);
  padding: 28px 24px 18px; text-align: center;
}
.pv-q-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.pv-q-title { font-size: 20px; font-weight: 800; color: #fff; margin: 8px 0 4px; }
.pv-q-artist { font-size: 13px; color: rgba(255,255,255,0.6); }
.pv-q-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 24px; margin-top: 12px;
}
.pv-q-bars span {
  width: 3px; border-radius: 2px; background: rgba(255,255,255,0.5);
  animation: eqBounce var(--d, 0.8s) ease-in-out infinite alternate;
}
@keyframes eqBounce { 0% { height: var(--h1, 8px); } 100% { height: var(--h2, 24px); } }
.pv-q-queue { padding: 16px 20px; }
.pv-q-track {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px; font-weight: 600; color: #f5f5f7;
  display: flex; align-items: center; gap: 10px;
}
.pv-q-track:last-child { border-bottom: none; }
.pv-q-track em { font-style: normal; font-weight: 400; color: #4a4a4a; margin-left: auto; font-size: 12px; }
.pv-q-num { font-size: 12px; font-weight: 800; color: #f472b6; min-width: 16px; }

/* ── About ("Kameras" Style – Logo + Facts) ───────────────── */
.about {
  padding: 0;
  overflow: hidden;
}

.about__header {
  text-align: center;
  padding: 120px 24px 48px;
}

.about__panel {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Logo: big, slides in from left */
.about__logo-wrap {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  max-width: 900px;
  will-change: transform, opacity;
}

.about__logo-img {
  width: 100%;
  height: auto;
  opacity: 0.08;
  filter: brightness(1.5);
}

/* Facts overlay on right */
.about__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding: 60px 60px 60px 0;
  max-width: 720px;
}

.about__text p {
  font-size: 1.05rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px;
}

.about__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.about__fact {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.about__fact:last-child { border-bottom: none; }

.about__fact-num {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-width: 110px;
  background: linear-gradient(180deg, #f5f5f7 30%, #48484a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

.about__fact-label {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ── Referenzen (Scroll-based Logo Ticker) ─────────────────── */
.referenzen { padding: 120px 0 100px; overflow: hidden; }

.referenzen .section-header { text-align: center; }

.logo-ticker {
  padding: 40px 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  scrollbar-width: none;
}
.logo-ticker::-webkit-scrollbar { display: none; }
.logo-ticker:active { cursor: grabbing; }

.logo-ticker__track {
  display: flex;
  gap: 80px;
  width: max-content;
  align-items: center;
  will-change: transform;
  /* No CSS animation – driven by JS scroll */
}

.logo-ticker__track img {
  height: 48px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.4s;
  flex-shrink: 0;
  display: inline-block;
}

.logo-ticker__track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg-alt);
}

.contact .section-header { margin-bottom: 48px; }

.contact__inner { max-width: 560px; margin: 0 auto; }

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #48484a; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-sub);
  box-shadow: 0 0 0 3px rgba(41,151,255,0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #ff453a; }

.form-status { font-size: 0.875rem; text-align: center; min-height: 20px; }
.form-status.success { color: #30d158; }
.form-status.error { color: #ff453a; }

.contact__meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
  font-size: 0.85rem; color: var(--text-dim);
}
.contact__meta a { color: var(--text-sub); transition: opacity 0.3s; }
.contact__meta a:hover { opacity: 0.7; }
.contact__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-dim); opacity: 0.5;
}

/* ── Footer (lp-footer shared style) ───────────────────────── */
.lp-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-heart { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Produkte: stack vertically */
  .produkte-panel {
    min-height: auto;
    position: relative;
  }
  .produkte-left {
    position: relative;
    width: 100%;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
  }
  .produkte-visual {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    min-height: 380px;
    padding: 32px 24px;
  }
  .produkte-nav { display: none; }
  .pv-link, .pv-collabs, .pv-margin, .pv-q { width: 100%; max-width: 320px; }

  .about__logo-wrap { width: 80%; left: -10%; }
  .about__content { padding: 40px 24px; max-width: none; }
  .about__panel { min-height: 500px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center; gap: 4px;
    opacity: 0; pointer-events: none; transition: opacity var(--transition);
  }
  .nav__menu.open { opacity: 1; pointer-events: all; }
  .nav__link { font-size: 1.5rem; font-weight: 600; color: var(--text); padding: 14px 24px; }
  .nav__link--cta { margin-left: 0; margin-top: 12px; font-size: 1.1rem; }
  .nav__burger { display: flex; }

  .services, .produkte, .contact { padding: 80px 0; }
  .referenzen { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .hl-card__inner { padding: 36px 28px; min-height: 360px; }
  .hl-emoji { width: 56px; height: 56px; font-size: 2rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact__meta { flex-wrap: wrap; justify-content: center; }

  .about__logo-wrap { position: relative; left: 0; top: 0; transform: none; width: 100%; margin-bottom: -60px; }
  .about__panel { flex-direction: column; min-height: auto; }
  .about__content { margin-left: 0; padding: 0 24px 60px; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero { min-height: 90vh; }
  .about__fact-num { font-size: 2rem; min-width: 70px; }
  .pv-link, .pv-collabs, .pv-margin, .pv-q { max-width: 280px; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
