/* =========================================================
   SCHRADER BAU — INDUSTRIAL CONCRETE BRUTALIST
   Weboro Media · Designkonzept 2026
   ========================================================= */

:root {
  /* PALETTE */
  --bg: #1A1A1A;
  --surface: #2A2A2A;
  --card: #303030;
  --text: #F2F2F0;
  --text-muted: #A8A6A0;
  --accent: #E85C1F;
  --accent-dim: #B8481A;
  --steel: #6E6E6E;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.22);

  /* Legacy aliases for sub-page compatibility */
  --dark: #0D0D0D;
  --dark-2: #1F1F1F;
  --muted: var(--text-muted);
  --accent-dark: var(--accent-dim);
  --accent-light: rgba(232, 92, 31, 0.10);
  --border-dark: rgba(255, 255, 255, 0.10);

  /* FONTS */
  --font-display: 'Inter Tight', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --container: 1360px;
  --pad: clamp(20px, 4.6vw, 72px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--text);
  text-transform: uppercase;
}
.display em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
}

.h-hero { font-size: clamp(64px, 13vw, 160px); }
.h-section { font-size: clamp(44px, 7vw, 96px); }
.h-sub { font-size: clamp(28px, 3.4vw, 44px); }

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.kicker.on-dark { color: var(--accent); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
  font-weight: 400;
}
.lead.on-dark { color: var(--text-muted); }

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  background: var(--bg);
  color: var(--text);
}
.section.dark {
  background: var(--surface);
  color: var(--text);
}
.section.dark .display { color: var(--text); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 64px;
  max-width: 920px;
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav.on-dark:not(.is-scrolled) .nav-brand,
.nav.on-dark:not(.is-scrolled) .nav-link { color: var(--text); }
.nav.on-dark:not(.is-scrolled) .nav-link::after { background: var(--text); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-brand em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { background: var(--accent); transform: scaleX(1); }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
  font-family: var(--font-mono);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-light {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-light:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-dark:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* =========================================================
   HERO — STARTSEITE (BRUTALIST FULL-BLEED)
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 0;
  overflow: hidden;
  border-bottom: 2px solid var(--text);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: grayscale(0.4) contrast(1.05);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.45) 0%, rgba(13, 13, 13, 0.70) 55%, rgba(13, 13, 13, 0.94) 100%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.50) 0%, rgba(13, 13, 13, 0.10) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad) 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.hero-content { max-width: 1280px; }
.hero-kicker {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-kicker::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 13vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero-title em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}

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

/* HERO STATS — Mono Counter mit 2px-Linien */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--text);
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}
.hero-stats > div {
  padding: 28px 28px 32px;
  border-right: 2px solid var(--border-strong);
  text-align: left;
}
.hero-stats > div:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  right: var(--pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.scroll-line {
  width: 56px;
  height: 2px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* =========================================================
   PAGE HERO (sub-pages compat)
   ========================================================= */

.page-hero {
  padding: 200px 0 80px;
  position: relative;
  background: var(--bg);
}
.page-hero .kicker { margin-bottom: 28px; }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--text);
}
.page-hero-title em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 620px;
}

/* =========================================================
   MARQUEE — Standorte mit ★-Trennern
   ========================================================= */

.marquee {
  background: var(--accent);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after {
  content: '★';
  color: #000;
  font-size: 12px;
  opacity: 0.85;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SERVICES — VERTIKALE STACK-LISTE
   ========================================================= */

.services-scroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  overflow: visible;
  scroll-snap-type: none;
}
.services-scroll::-webkit-scrollbar { display: none; }

.service-card {
  flex: 1 1 auto;
  background: var(--bg);
  padding: 32px 36px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--border-strong);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  display: grid;
  grid-template-columns: 140px 1fr 320px;
  gap: 36px;
  align-items: center;
  min-height: auto;
  cursor: default;
  scroll-snap-align: none;
}
.service-card:last-child { border-bottom: none; }
.service-card::before { display: none; }
.service-card:hover {
  background: var(--surface);
  transform: translateX(24px);
  box-shadow: none;
  border-color: var(--accent);
}

.service-num {
  position: relative;
  top: auto;
  right: auto;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}
.service-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
  justify-content: flex-end;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--border-strong);
  border-radius: 0;
  color: var(--text-muted);
  background: transparent;
}

/* =========================================================
   PROJEKTE — TIMELINE (1999 → 2026)
   ========================================================= */

.projects-grid {
  display: block;
  position: relative;
  padding-left: 0;
  margin-top: 24px;
}
.projects-grid .project-card:nth-child(2),
.projects-grid .project-card:nth-child(4) {
  margin-top: 0;
}

.timeline {
  position: relative;
  border-left: 2px solid var(--border-strong);
  padding-left: clamp(32px, 5vw, 72px);
  margin-left: clamp(80px, 12vw, 160px);
}
.timeline-item {
  position: relative;
  padding: 28px 0 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute;
  left: calc(clamp(32px, 5vw, 72px) * -1 - 2px);
  top: 28px;
  transform: translateX(calc(-100% - 16px));
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(clamp(32px, 5vw, 72px) * -1 - 8px);
  top: 38px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 2px solid var(--bg);
  z-index: 2;
}
.timeline-content { padding-top: 6px; }
.timeline-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 2px solid var(--border-strong);
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.timeline-info {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.6;
}
.timeline-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--border-strong);
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.timeline-item:hover .timeline-image img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}

/* Legacy project-card support for sub-pages */
.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 0;
}
.project-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.project-card:hover .project-img-wrap img { transform: scale(1.04); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.85) 100%);
  transition: background 0.4s var(--ease);
}
.project-card:hover .project-overlay {
  background: linear-gradient(180deg, rgba(232, 92, 31, 0.30) 0%, rgba(184, 72, 26, 0.90) 100%);
}
.project-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.project-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.project-info {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.project-arrow {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--border-strong);
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.project-arrow svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}
.project-card:hover .project-arrow {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

/* =========================================================
   STATS — Brutalist linework
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--text);
  border-radius: 0;
  overflow: hidden;
}
.stat {
  padding: 40px 28px;
  text-align: left;
  border-right: 2px solid var(--border-strong);
  background: var(--bg);
  transition: background 0.3s var(--ease);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--surface); }

.section.dark .stats { border-color: var(--text); }
.section.dark .stat { border-right-color: var(--border-strong); }
.section.dark .stat:hover { background: var(--card); }

.stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.section.dark .stat-num { color: var(--text); }
.stat-suffix {
  font-family: var(--font-mono);
  font-size: 0.6em;
  color: var(--accent);
  font-weight: 600;
}
.stat-label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section.dark .stat-label { color: var(--text-muted); }

/* =========================================================
   ABOUT TEASER — 50/50 Split mit S/W-Foto + Spruch
   ========================================================= */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid var(--text);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.10);
  transition: filter 0.6s var(--ease);
}
.about-image:hover img { filter: grayscale(0.7) contrast(1.05); }
.about-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  z-index: 2;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.about-content { padding: 0; }
.about-content .display { margin: 24px 0 24px; }
.about-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-content p.about-pull {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 28px;
  padding: 24px 0;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.values-list {
  margin-top: 36px;
  list-style: none;
  border-top: 2px solid var(--border-strong);
}
.value-item {
  padding: 22px 0;
  border-bottom: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: default;
}
.value-item:last-child { border-bottom: 2px solid var(--border-strong); }
.value-item:hover {
  background: transparent;
  border-color: var(--accent);
  padding-left: 24px;
}
.value-item:hover + .value-item { border-top-color: var(--accent); }
.value-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--accent);
}

/* =========================================================
   CTA BAND (Sticky-Bottom-Bar)
   ========================================================= */

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.cta-band::before {
  content: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.cta-title em { font-style: normal; font-weight: 900; color: #000; }
.cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  max-width: 48ch;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-cta {
  background: var(--bg);
  color: #fff;
  border: 2px solid var(--bg);
  padding: 18px 30px;
  font-weight: 600;
}
.btn-cta:hover {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--bg);
}

/* STICKY BOTTOM CTA BAR */
.sticky-cta {
  position: fixed;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 var(--pad);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta-inner {
  pointer-events: auto;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 14px 14px 26px;
  border: 2px solid var(--text);
  box-shadow: 4px 4px 0 0 var(--text);
  max-width: 100%;
}
.sticky-cta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sticky-cta-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--bg);
  color: #fff;
  padding: 12px 18px;
  border: 2px solid var(--bg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.sticky-cta-phone:hover { background: #fff; color: var(--bg); border-color: #fff; }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field { position: relative; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-strong);
  padding: 10px 0 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  border-radius: 0;
  transition: border-color 0.25s var(--ease);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23E85C1F' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(168, 166, 160, 0.5); }

.contact-info {
  background: var(--surface);
  padding: 44px 40px;
  border: 2px solid var(--border-strong);
  border-radius: 0;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-block:last-child { margin-bottom: 0; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.contact-info-value a:hover { color: var(--accent); }
.contact-info-small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.form-success {
  display: none;
  padding: 36px 32px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-left: 6px solid var(--accent);
  text-align: left;
}
.form-success.is-visible {
  display: block;
  animation: fadeUp 0.6s var(--ease);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.form-success p { color: var(--text-muted); }

/* =========================================================
   LEISTUNGEN PAGE (compat)
   ========================================================= */

.service-block {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.service-block.alt { background: var(--surface); color: var(--text); }
.service-block.alt .display { color: var(--text); }
.service-block-num {
  position: absolute;
  top: 40px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 1;
  color: rgba(232, 92, 31, 0.10);
  letter-spacing: -0.06em;
  pointer-events: none;
  z-index: 0;
}
.service-block.alt .service-block-num { color: rgba(232, 92, 31, 0.16); }
.service-block-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.service-block.reverse .service-block-grid { direction: rtl; }
.service-block.reverse .service-block-grid > * { direction: ltr; }
.service-block-num.right { right: 40px; left: auto; }
.service-block-num.left { left: 40px; }

.service-block-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--border-strong);
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.service-block:hover .service-block-image img { transform: scale(1.04); filter: grayscale(0); }
.service-block-content { padding: 20px 0; }
.service-block-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.service-block-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text);
}
.service-block-title em { font-style: normal; font-weight: 900; color: var(--accent); }
.service-block-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.service-block.alt .service-block-desc { color: var(--text-muted); }

.deliverables { list-style: none; margin-top: 28px; }
.deliverables-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.deliverable {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 2px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.service-block.alt .deliverable { border-top-color: var(--border-strong); }
.deliverable:last-child { border-bottom: 2px solid var(--border-strong); }
.service-block.alt .deliverable:last-child { border-bottom-color: var(--border-strong); }
.deliverable::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 0;
  flex: 0 0 8px;
}

/* =========================================================
   PROJEKTE PAGE (compat)
   ========================================================= */

.project-full {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  background: var(--bg);
}
.project-full + .project-full { border-top: 2px solid var(--border-strong); }
.project-full-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.project-full.reverse .project-full-grid { grid-template-columns: 1fr 1.6fr; }
.project-full.reverse .project-full-grid .project-full-image { order: 2; }
.project-full.reverse .project-full-grid .project-full-content { order: 1; }
.project-full-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 2px solid var(--border-strong);
}
.project-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.project-full:hover .project-full-image img { transform: scale(1.04); filter: grayscale(0); }
.project-full-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.project-full-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text);
}
.project-full-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}
.project-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--border-strong);
}
.project-spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.project-spec-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* =========================================================
   UEBER UNS (compat)
   ========================================================= */

.history-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.history-year {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--accent);
  position: relative;
}
.history-year em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 600;
  font-size: 0.14em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 18px;
}
.history-text p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.history-text p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  border: 2px solid var(--border-strong);
  border-radius: 0;
}
.team-mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: background 0.35s var(--ease);
}
.team-card:nth-child(even) .team-mono { background: var(--card); }
.team-card:hover .team-mono { background: var(--accent); color: var(--bg); }
.team-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.96) 60%);
  color: var(--text);
  transform: translateY(60%);
  transition: transform 0.4s var(--ease);
}
.team-card:hover .team-info { transform: translateY(0); }
.team-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-bio {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease) 0.05s, transform 0.4s var(--ease) 0.05s;
}
.team-card:hover .team-bio { opacity: 1; transform: translateY(0); }

.values-stack { margin-top: 32px; border-top: 2px solid var(--border-strong); }
.value-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0 36px 28px;
  border-bottom: 2px solid var(--border-strong);
  border-left: 4px solid transparent;
  transition: border-left-color 0.3s var(--ease), padding-left 0.3s var(--ease), background 0.3s var(--ease);
  cursor: default;
}
.value-block:hover {
  border-left-color: var(--accent);
  padding-left: 40px;
  background: var(--surface);
}
.value-block-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.value-block-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text);
}
.value-block-desc {
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================================
   KONTAKT PAGE (compat)
   ========================================================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-sidebar {
  background: var(--surface);
  color: var(--text);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
  border: 2px solid var(--border-strong);
}
.contact-sidebar h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--text);
}
.contact-sidebar .contact-info-block { margin-bottom: 28px; }
.contact-sidebar .contact-info-label { color: var(--accent); }
.contact-sidebar .contact-info-value { color: var(--text); font-size: 20px; }
.contact-sidebar .contact-info-small { color: var(--text-muted); }

.location-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--border-strong);
}
.location-svg { width: 100%; height: auto; margin-bottom: 20px; }
.location-coords {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.10em;
}

/* =========================================================
   IMPRESSUM (compat)
   ========================================================= */

.impressum-content {
  max-width: 760px;
  padding: 32px 0;
}
.impressum-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 44px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-strong);
  color: var(--text);
}
.impressum-content h2:first-of-type { margin-top: 0; }
.impressum-content p {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.65;
}
.impressum-content p.muted { color: var(--text-muted); font-size: 14px; }
.impressum-content a { color: var(--accent); border-bottom: 2px solid currentColor; }
.impressum-content a:hover { color: #fff; }

/* =========================================================
   FOOTER & DEMO BANNER
   ========================================================= */

.footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 60px 0 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-top: 2px solid var(--border-strong);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.footer-brand em { font-style: normal; font-weight: 500; color: var(--accent); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-links a:hover { color: var(--accent); }

.demo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  color: var(--text);
  padding: 12px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-top: 2px solid var(--accent);
  text-align: center;
}
.demo-banner strong { color: var(--accent); font-weight: 600; }
.demo-banner a {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.demo-banner a:hover { color: var(--accent); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .service-card {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }
  .service-tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 4px;
  }
  .service-num { font-size: 64px; }
}

@media (max-width: 880px) {
  .hero { min-height: 92vh; padding: 130px 0 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
  .hero-stats > div { padding: 20px 14px 24px; }
  .hero-stat-num { font-size: clamp(28px, 6vw, 40px); }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.14em; }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .projects-grid .project-card:nth-child(2),
  .projects-grid .project-card:nth-child(4) {
    margin-top: 0;
  }
  .timeline {
    margin-left: 64px;
    padding-left: 28px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 44px;
  }
  .timeline-year {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 12px;
  }
  .timeline-item::before { left: -36px; top: 12px; }
  .about-teaser,
  .contact-grid,
  .contact-page-grid,
  .service-block-grid,
  .history-grid {
    grid-template-columns: 1fr;
  }
  .service-block.reverse .service-block-grid { direction: ltr; }
  .project-full-grid,
  .project-full.reverse .project-full-grid {
    grid-template-columns: 1fr;
  }
  .project-full.reverse .project-full-grid .project-full-image { order: -1; }
  .project-full.reverse .project-full-grid .project-full-content { order: 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 2px solid var(--border-strong); }
  .section.dark .stat:nth-child(1),
  .section.dark .stat:nth-child(2) { border-bottom-color: var(--border-strong); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-sidebar { position: static; }
  .sticky-cta { bottom: 56px; }
  .sticky-cta-inner { padding: 10px 10px 10px 18px; gap: 14px; }
  .sticky-cta-label { font-size: 11px; }
  .sticky-cta-phone { font-size: 12px; padding: 10px 14px; }
}

@media (max-width: 540px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-inner { gap: 16px; }
  .hero { min-height: 88vh; padding: 110px 0 0; }
  .hero-inner { gap: 32px; }
  .hero-title { font-size: clamp(48px, 14vw, 84px); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { border-right: none; border-bottom: 2px solid var(--border-strong); }
  .hero-stats > div:last-child { border-bottom: none; }
  .scroll-indicator { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .service-card {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
  .service-card:hover { transform: translateX(12px); }
  .service-num { font-size: 44px; }
  .service-title { font-size: 26px; }
  .service-tags { grid-column: 1 / -1; }
  .timeline { margin-left: 0; padding-left: 24px; }
  .timeline-item::before { left: -32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 2px solid var(--border-strong); }
  .stat:last-child { border-bottom: none; }
  .section.dark .stat { border-bottom-color: var(--border-strong); }
  .section.dark .stat:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-sidebar { padding: 32px 24px; }
  .demo-banner { font-size: 11px; padding: 10px 14px; flex-direction: column; gap: 4px; }
  .value-block { grid-template-columns: 1fr; gap: 10px; padding-left: 20px; }
  .value-block:hover { padding-left: 28px; }
  .project-specs { grid-template-columns: 1fr; }
  body { padding-bottom: 64px; }
  .sticky-cta { bottom: 64px; padding: 0 12px; }
  .sticky-cta-inner { width: 100%; justify-content: space-between; gap: 10px; padding: 8px 8px 8px 14px; }
  .sticky-cta-label { font-size: 10px; letter-spacing: 0.06em; }
  .sticky-cta-phone { font-size: 11px; padding: 9px 12px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg img { transform: scale(1); animation: none; }
  .marquee-track { animation: none; }
  .scroll-line::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
