/* ============================================
   MAXMTB — STYLES
   Raw Dirt Theme
   ============================================ */

/* --- TOKENS --- */
:root {
  --bg:          #141414;
  --bg-2:        #1c1b19;
  --bg-3:        #222018;
  --sand:        #e8dcc8;
  --sand-dim:    #b5a990;
  --sand-muted:  #6e6558;
  --white:       #f5f2ed;
  --accent:      #c9a96e;   /* warm gold / dirt ochre */
  --accent-dim:  #8a6f42;
  --border:      rgba(232,220,200,0.08);
  --border-med:  rgba(232,220,200,0.14);

  /* Video carousel speed */
  --vc-speed: 0.45s;

  /* Type */
  --font-body: 'Inter', system-ui, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--sand);
  font-family: var(--font-body);
  font-weight: var(--fw-normal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- CONTAINER --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION SHARED --- */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--accent);
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(20,20,20,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo ist weiß auf schwarz — mix-blend-mode macht schwarzen BG transparent */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 16px;
}

.nav-links a {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--sand-dim);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-contact {
  margin-left: auto;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  padding: 8px 18px;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-contact:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-m-link {
  font-size: 17px;
  font-weight: var(--fw-medium);
  color: var(--sand-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-m-link:hover { color: var(--white); }
.nav-m-cta {
  color: var(--accent);
  border-bottom: none;
  margin-top: 8px;
  font-weight: var(--fw-semibold);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.3) 0%,
    rgba(20,20,20,0.1) 40%,
    rgba(20,20,20,0.6) 70%,
    rgba(20,20,20,0.92) 100%
  );
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1812 0%, #2a2620 50%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-placeholder-inner {
  color: var(--sand-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px dashed var(--sand-muted);
  padding: 16px 32px;
  border-radius: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: var(--fw-black);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-word { display: block; }
.hero-word--accent { color: var(--accent); }

.hero-subline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--sand-dim);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.5;
  font-weight: var(--fw-normal);
}

.hero-br { display: none; }
@media (min-width: 640px) { .hero-br { display: inline; } }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  padding: 14px 28px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sand); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--sand);
  font-size: 14px;
  font-weight: var(--fw-medium);
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-med);
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--sand-dim); color: var(--white); transform: translateY(-1px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- TRUSTED BY --- */
.trusted {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-muted);
  margin-bottom: 40px;
}

.trusted-block { }

.trusted-group-label {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.trusted-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trusted-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 130px;
  height: 80px;
}

.trusted-logo-card img {
  max-height: 36px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.trusted-logo-card:hover img { opacity: 1; }

.trusted-logo-card--past {
  opacity: 0.5;
}
.trusted-logo-card--past img {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.trusted-since {
  font-size: 9px;
  font-weight: var(--fw-medium);
  color: var(--sand-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trusted-logos-row--customers .trusted-logo-card {
  background: transparent;
  border-color: var(--border);
  width: 110px;
  height: 68px;
}
.trusted-logos-row--customers .trusted-logo-card img {
  max-height: 28px;
  max-width: 80px;
  opacity: 0.55;
}

/* --- VIDEO CAROUSEL --- */
.vc-section {
  padding: 100px 0 80px;
  background: var(--bg);
  overflow: hidden;
}

.vc-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 520px;
  position: relative;
  margin-top: 48px;
  cursor: pointer;
  user-select: none;
  touch-action: pan-y;
}

.vc-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform var(--vc-speed) cubic-bezier(0.4, 0, 0.2, 1),
    width var(--vc-speed) cubic-bezier(0.4, 0, 0.2, 1),
    height var(--vc-speed) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--vc-speed) cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--vc-speed) ease,
    filter var(--vc-speed) ease;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.vc-card[data-role="center"] {
  width: 280px; height: 480px;
  transform: translateX(0) scale(1);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  filter: none;
}
.vc-card[data-role="left"] {
  width: 220px; height: 390px;
  transform: translateX(-260px) scale(0.92);
  z-index: 5;
  opacity: 0.7;
  filter: brightness(0.6);
}
.vc-card[data-role="right"] {
  width: 220px; height: 390px;
  transform: translateX(260px) scale(0.92);
  z-index: 5;
  opacity: 0.7;
  filter: brightness(0.6);
}
.vc-card[data-role="hidden-left"] {
  width: 180px; height: 320px;
  transform: translateX(-460px) scale(0.84);
  z-index: 2;
  opacity: 0.25;
  filter: brightness(0.4);
}
.vc-card[data-role="hidden-right"] {
  width: 180px; height: 320px;
  transform: translateX(460px) scale(0.84);
  z-index: 2;
  opacity: 0.25;
  filter: brightness(0.4);
}

.vc-thumb-poster,
.vc-thumb-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.vc-thumb-video { opacity: 0; transition: opacity 0.5s; }
.vc-card.is-video-ready .vc-thumb-video { opacity: 1; }

.vc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.vc-card[data-role="center"]:hover .vc-overlay { opacity: 0; }

.vc-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-play svg { width: 22px; margin-left: 3px; }

.vc-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(20,20,20,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.vc-card[data-role="center"] .vc-meta { opacity: 1; transform: translateY(0); }

.vc-brand {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.vc-title {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

/* Placeholder card bg */
.vc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1c18, #252318);
  z-index: 0;
}
.vc-thumb-poster, .vc-thumb-video, .vc-overlay, .vc-meta { z-index: 1; }

.vc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.vc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand-muted);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.vc-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* --- SERVICES --- */
.services {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.svc-card:hover { border-color: var(--border-med); }

.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.svc-num {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--sand-muted);
  letter-spacing: 0.08em;
}

.svc-tag {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,169,110,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.svc-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: var(--fw-black);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.svc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sand-dim);
  margin-bottom: 28px;
}

.svc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-list li {
  font-size: 13px;
  color: var(--sand);
  padding-left: 16px;
  position: relative;
}
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: var(--fw-semibold);
}

.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  transition: gap 0.2s;
}
.svc-cta svg {
  width: 18px; height: 18px;
  transition: transform 0.2s;
}
.svc-cta:hover svg { transform: translate(3px, -3px); }

.svc-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--sand-muted);
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 8px;
}

/* --- CASES --- */
.cases {
  padding: 100px 0;
  background: var(--bg);
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.case-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.case-item:last-child { border-bottom: none; padding-bottom: 0; }

.case-item--flip {
  grid-template-columns: 1.4fr 1fr;
}
.case-item--flip .case-media { order: -1; }

.case-brand-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 16px;
  display: block;
}

.case-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--fw-black);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.case-format {
  font-size: 13px;
  color: var(--sand-muted);
  margin-bottom: 32px;
}

.case-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.case-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.kpi-value {
  font-size: 1.3rem;
  font-weight: var(--fw-black);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.kpi-label {
  font-size: 11px;
  color: var(--sand-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.case-media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border: 1px dashed var(--border-med);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-media-placeholder span {
  font-size: 12px;
  color: var(--sand-muted);
  letter-spacing: 0.06em;
}

/* --- REACH / SOCIAL INSIGHTS --- */
.reach {
  padding: 100px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 56px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.reach-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 36px 28px;
  background: var(--bg);
}

.reach-stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.reach-stat-label {
  font-size: 12px;
  color: var(--sand-muted);
  letter-spacing: 0.04em;
}

/* Drei Monats-Karten */
.insights-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.insights-month-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.insights-month-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}

.insights-month-label {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

.insights-month-platform {
  font-size: 10px;
  color: var(--sand-muted);
  letter-spacing: 0.04em;
}

.insights-rows {
  margin-bottom: 16px;
}

.insights-month-placeholder {
  font-size: 11px;
  color: var(--sand-muted);
  text-align: center;
  padding: 12px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* Audience grid darunter */
.reach-audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.reach-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.reach-detail-title {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.reach-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.reach-detail-row:last-of-type { border-bottom: none; }

.reach-detail-label {
  font-size: 13px;
  color: var(--sand-dim);
}
.reach-detail-value {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--white);
  white-space: nowrap;
}

.reach-detail-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.reach-detail-bar:last-of-type { border-bottom: none; }
.reach-bar-label { font-size: 13px; color: var(--sand-dim); width: 52px; flex-shrink: 0; }
.reach-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border-med);
  border-radius: 2px;
  overflow: hidden;
}
.reach-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1s ease;
}
.reach-bar-pct { font-size: 12px; color: var(--sand-dim); width: 36px; text-align: right; flex-shrink: 0; }

.reach-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  transition: opacity 0.2s;
}
.reach-ig-link svg { width: 16px; height: 16px; }
.reach-ig-link:hover { opacity: 0.7; }

/* --- ABOUT --- */
.about {
  padding: 100px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  min-height: 480px;
}

.about-body {
  padding-top: 8px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sand);
  margin-top: 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.about-tag {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--sand-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.testi-track-wrap {
  overflow: hidden;
  cursor: grab;
}
.testi-track-wrap.is-dragging { cursor: grabbing; }

.testi-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.testi-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sand);
  flex: 1;
}

.testi-footer { display: flex; align-items: center; gap: 14px; }

.testi-name {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--white);
}
.testi-role {
  display: block;
  font-size: 12px;
  color: var(--sand-muted);
  margin-top: 2px;
}

/* --- CONTACT --- */
.contact {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-header {
  margin-bottom: 56px;
}

.contact-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: var(--fw-black);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 15px;
  color: var(--sand-dim);
  max-width: 480px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

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

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand-muted);
}

.req { color: var(--accent); }

.field-input,
.field-textarea,
.field-select {
  background: var(--bg-2);
  border: 1px solid var(--border-med);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field-input:focus, .field-textarea:focus, .field-select:focus {
  border-color: var(--accent);
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--sand-muted); }
.field-textarea { min-height: 140px; resize: vertical; }
.field-select { cursor: pointer; }
.field-select option { background: var(--bg-2); }

.form-consent {
  font-size: 12px;
  color: var(--sand-muted);
}
.form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
}

.btn-submit {
  align-self: flex-start;
  background: var(--accent);
  color: var(--bg);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  padding: 16px 40px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-submit:hover { background: var(--sand); transform: translateY(-1px); }

.contact-alt {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-alt-label {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-muted);
}

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

.contact-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--sand);
  transition: color 0.2s;
}
.contact-alt-link svg { width: 16px; height: 16px; color: var(--accent); }
.contact-alt-link:hover { color: var(--white); }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--sand-muted);
}

.footer-col-heading {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--sand-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-copy { font-size: 12px; color: var(--sand-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .nav-links, .nav-contact { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }

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

  .vc-card[data-role="center"] { width: 240px; height: 410px; }
  .vc-card[data-role="left"] { transform: translateX(-220px) scale(0.9); width: 190px; height: 330px; }
  .vc-card[data-role="right"] { transform: translateX(220px) scale(0.9); width: 190px; height: 330px; }
  .vc-card[data-role="hidden-left"] { transform: translateX(-370px) scale(0.8); opacity: 0.1; }
  .vc-card[data-role="hidden-right"] { transform: translateX(370px) scale(0.8); opacity: 0.1; }
  .vc-stage { height: 440px; }

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

  .case-item, .case-item--flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-item--flip .case-media { order: 0; }

  .reach-stats { grid-template-columns: repeat(2, 1fr); }
  .reach-details { grid-template-columns: 1fr; }
  .insights-months { grid-template-columns: 1fr; }
  .reach-audience { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 4/3; }
  .about-img-placeholder { min-height: 260px; }

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

@media (max-width: 600px) {
  .hero-content { padding: 0 20px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .vc-card[data-role="center"] { width: 200px; height: 350px; }
  .vc-card[data-role="left"] { transform: translateX(-185px) scale(0.88); width: 160px; height: 280px; }
  .vc-card[data-role="right"] { transform: translateX(185px) scale(0.88); width: 160px; height: 280px; }
  .vc-stage { height: 380px; }

  .reach-stats { grid-template-columns: 1fr 1fr; }
  .reach-audience { grid-template-columns: 1fr; }

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

  .contact-alt { flex-direction: column; align-items: flex-start; gap: 16px; }

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

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   V3 PATCHES
   ============================================ */

.logo-img { height: 52px !important; }

.trusted-logo-card img[alt="KMC Chain Europe"],
.trusted-logo-card img[alt="Gravity Card"],
.trusted-logo-card img[alt="Snocks"],
.trusted-logo-card img[alt="HAMA"],
.trusted-logo-card img[alt="Insta360"],
.trusted-logo-card img[alt="Messingschlager"],
.trusted-logo-card img[alt="Naturbummler"] {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.trusted-logo-card img[alt="ROSE Bikes"],
.trusted-logo-card img[alt="MOTUL"],
.trusted-logo-card img[alt="Goodyear"],
.trusted-logo-card img[alt="Ford"],
.trusted-logo-card img[alt="NC-17"],
.trusted-logo-card img[alt="U Micro Mobility"] {
  filter: none;
  opacity: 0.85;
}

.trusted-logo-card--past img { opacity: 0.4 !important; }

.case-brand-logo { filter: brightness(0) invert(1); opacity: 0.85; }

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.insights-month-card--highlight {
  border-color: var(--accent);
}


/* ============================================
   V4 LOGO FILTER (Final)
   ============================================ */

/* Reset: default kein Filter */
.trusted-logo-card img,
.case-brand-logo {
  filter: none;
  opacity: 0.85;
}

/* Filter brightness(0) invert(1) → macht Logo weiß */
.trusted-logo-card img[alt="Snocks"],
.trusted-logo-card img[alt="HAMA"],
.trusted-logo-card img[alt="Insta360"],
.trusted-logo-card img[alt="Messingschlager"],
.trusted-logo-card img[alt="Naturbummler"] {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Kein Filter (bereits weiß auf transparent oder Kontrast-Design) */
.trusted-logo-card img[alt="ROSE Bikes"],
.trusted-logo-card img[alt="MOTUL"],
.trusted-logo-card img[alt="Goodyear"],
.trusted-logo-card img[alt="Ford"],
.trusted-logo-card img[alt="NC-17"],
.trusted-logo-card img[alt="U Micro Mobility"],
.trusted-logo-card img[alt="KMC Chain Europe"],
.trusted-logo-card img[alt="Gravity Card"] {
  filter: none;
  opacity: 1;
}

/* Past partner dimmen */
.trusted-logo-card--past img {
  opacity: 0.45 !important;
}

/* Case brand logos */
.case-brand-logo[alt="ROSE Bikes"] {
  filter: none;
  opacity: 1;
}
.case-brand-logo[alt="KMC Chain Europe"] {
  filter: none;
  opacity: 1;
}

/* ============================================
   V5 FIXES
   ============================================ */

/* Alle Logos einheitliche Opacity 0.85, keine ausgeblassten */
.trusted-logo-card--past img {
  opacity: 0.85 !important;
}
.trusted-logo-card--past {
  opacity: 1;
}

/* Poster immer sichtbar in allen Karten (auch nicht-Center) */
.vc-thumb-poster {
  opacity: 1;
  z-index: 1;
}
/* Video liegt über Poster, wird bei loadeddata sichtbar */
.vc-thumb-video {
  z-index: 2;
}

/* ============================================
   V6 — off-stage Rolle für Karten außerhalb ±2
   ============================================ */
.vc-card[data-role="off-stage"] {
  width: 180px;
  height: 320px;
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* V7 — Text unter Video komplett raus */
.vc-meta { display: none !important; }

/* V8 — Case Bilder */
.case-media-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}
