/* ============================================================
 * NORDFORM · Industrievertrieb GmbH · Musterort
 * ============================================================
 * Modern & Minimalistisch — viel Weißraum, klare Typografie,
 * dezente Farben mit Signal-Orange-Akzent. Linear/SaaS-inspiriert.
 */

:root {
  /* Farben */
  --ink: #1a1d22;
  --ink-soft: #2b2f37;
  --paper: #ffffff;
  --paper-soft: #f7f8fa;
  --paper-deep: #eef0f4;
  --line: #e0e3e8;
  --line-strong: #cdd2da;
  --muted: #4a4f59;
  --muted-soft: #707682;
  --signal: #ed6a2a;
  --signal-deep: #c7541f;
  --signal-soft: #fde7da;
  --positive: #22a06b;
  --positive-soft: #d4f0e2;

  /* Typo */
  --sans: 'Inter Tight', 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --nav-h: 72px;
  --container: 1280px;
  --radius: 6px;
  --radius-sm: 4px;

    --demo-banner-bg: #1a1d22;
    --demo-banner-fg: #f7f8fa;
    --demo-banner-accent: #ed6a2a;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01", "ss03";
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--signal-soft); color: var(--ink); }

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; font-weight: 600; }
em { font-style: normal; color: var(--signal); }
p { margin: 0 0 1em; }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "//";
  color: var(--muted-soft);
  font-weight: 400;
}
.eyebrow--mute { color: var(--muted); }
.eyebrow--mute::before { color: var(--line-strong); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--mute { background: var(--paper-soft); }
.section--ink {
  background: var(--ink);
  color: var(--paper-soft);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink em { color: var(--signal); }
.section--ink .eyebrow { color: var(--signal); }
.section__head { max-width: 760px; margin: 0 auto 64px; }
.section__head--center { text-align: center; }
.section__head--left { margin: 0 0 64px; max-width: 720px; }
.section__head p { color: var(--muted); font-size: 1.06rem; margin: 16px 0 0; max-width: 580px; }
.section__head--center p { margin: 16px auto 0; }
.section--ink .section__head p { color: rgba(247, 248, 250, 0.7); }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.nav__brand-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-name span {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted-soft);
  margin-left: 8px;
  letter-spacing: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--signal); }
.nav__links a[aria-current="page"] { color: var(--signal); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--signal);
  border-radius: 1px;
}
.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s ease;
  border: 1px solid var(--ink);
}
.nav__cta:hover { background: var(--ink-soft); }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
  border-radius: 1px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.btn--signal {
  background: var(--signal);
  border-color: var(--signal);
}
.btn--signal:hover { background: var(--signal-deep); border-color: var(--signal-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--paper-deep); border-color: var(--line-strong); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--paper:hover { background: var(--paper-soft); border-color: var(--paper-soft); }
.btn--paper-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 248, 250, 0.3);
}
.btn--paper-ghost:hover { background: rgba(247, 248, 250, 0.08); border-color: rgba(247, 248, 250, 0.5); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Hero */
.hero {
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy h1 { margin-bottom: 24px; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}
.chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--positive);
}
.chip__dot--signal { background: var(--signal); }
.hero__media {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26, 29, 34, 0.18);
  display: grid;
  gap: 4px;
  font-family: var(--body);
  max-width: 280px;
}
.hero__badge strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__badge strong em {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--positive);
  font-weight: 500;
  letter-spacing: 0;
}
.hero__badge span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Metrics */
.metrics {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.metrics__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metrics__cell {
  border-left: 1px solid rgba(247, 248, 250, 0.12);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metrics__cell:first-child { border-left: 0; padding-left: 0; }
.metrics__num {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.025em;
}
.metrics__num em {
  font-style: normal;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.62em;
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}
.metrics__label {
  font-family: var(--body);
  font-size: 0.84rem;
  color: rgba(247, 248, 250, 0.66);
  line-height: 1.4;
}

/* Services / Leistungen */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.service:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.service__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin: 0 0 24px;
  background: var(--paper-soft);
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service:hover .service__media img { transform: scale(1.03); }
.service__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--signal);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.service__title { font-size: 1.35rem; margin-bottom: 10px; }
.service__desc {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1;
}
.service__link {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.service__link:hover { color: var(--signal); }
.service__link::after {
  content: "→";
  font-family: var(--mono);
  transition: transform 0.2s ease;
}
.service__link:hover::after { transform: translateX(4px); }

/* Spec table */
.specs {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: 0.94rem;
  margin-top: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs th, .specs td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs th {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.specs tr:last-child td { border-bottom: 0; }
.specs td.specs__name { font-weight: 600; color: var(--ink); width: 36%; }
.specs td.specs__val { font-family: var(--mono); font-size: 0.88rem; color: var(--ink-soft); }
.specs__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  background: var(--positive-soft);
  color: #166548;
}
.specs__stock--low { background: var(--signal-soft); color: var(--signal-deep); }
.specs__stock::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--positive);
}
.specs__stock--low::before { background: var(--signal); }

/* Process / Vorteile */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.feature__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--signal);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.6; }

/* Branchen / Referenzen */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.industry:hover { border-color: var(--ink); transform: translateY(-2px); }
.industry__media { aspect-ratio: 4 / 3; overflow: hidden; }
.industry__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.industry:hover .industry__media img { transform: scale(1.04); }
.industry__body { padding: 24px 28px 28px; }
.industry__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--signal);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: block;
}
.industry h3 { font-size: 1.3rem; margin-bottom: 10px; }
.industry p { color: var(--muted); font-size: 0.92rem; margin: 0 0 14px; line-height: 1.5; }
.industry__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.industry__list li { display: flex; gap: 8px; }
.industry__list li::before {
  content: "▸";
  color: var(--signal);
  font-weight: 700;
}

/* Cases / Reference */
.case-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.case {
  display: grid;
  grid-template-columns: 80px 2.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.case__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-soft);
  padding-top: 6px;
}
.case__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case__title h3 { font-size: 1.2rem; margin: 0; font-weight: 600; }
.case__title p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.55; }
.case__meta {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.case__meta strong { display: block; color: var(--ink); font-family: var(--body); font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.case__tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  background: var(--paper-deep);
  color: var(--muted);
  font-weight: 500;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: border-color 0.2s ease; }
.team-card:hover { border-color: var(--ink); }
.team-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin: 0 0 18px;
  background: var(--paper-deep);
}
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card__media img { transform: scale(1.04); }
.team-card h3 { font-size: 1.1rem; margin: 0 0 4px; }
.team-card__role {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--signal);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.team-card__bio {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* About-Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body h2 { margin-bottom: 22px; }
.about-split__body p { color: var(--muted); margin: 0 0 16px; line-height: 1.7; max-width: 540px; }
.about-split__quote {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.about-split__sig {
  display: block;
  margin-top: 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.about-split__sig-role {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--signal);
  font-weight: 500;
  margin-top: 4px;
}

/* Timeline */
.timeline { max-width: 720px; margin: 0 auto; }
.timeline__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline__row:first-child { border-top: 1px solid var(--ink); }
.timeline__year {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--signal);
}
.timeline__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.timeline__body p { color: var(--muted); margin: 0; font-size: 0.96rem; line-height: 1.6; max-width: 540px; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 50px 22px 0;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--signal);
  font-weight: 400;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--muted);
  padding: 0 0 22px;
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq__answer p { margin-bottom: 12px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* Job-Liste */
.jobs { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.job {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 180px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.job h3 { font-size: 1.15rem; margin-bottom: 6px; }
.job__tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.job__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--paper-deep);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.job__cell {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--muted);
}
.job__cell strong { display: block; color: var(--ink); font-family: var(--body); font-size: 0.94rem; font-weight: 600; margin-bottom: 2px; }
.job__apply { display: flex; justify-content: flex-end; }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card__label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin: 0 0 12px;
}
.contact-card__value {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.contact-card__value a { text-decoration: none; }
.contact-card__value a:hover { color: var(--signal); }
.contact-card__sub {
  display: block;
  margin-top: 8px;
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Hours */
.hours { display: grid; gap: 0; font-family: var(--body); max-width: 380px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__day { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 0.86rem; }
.hours__row--closed { color: var(--muted-soft); font-style: italic; }

/* Form */
.form {
  background: var(--paper);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__radios { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.form__radios label {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px;
  cursor: pointer;
  letter-spacing: normal;
  font-size: 0.92rem;
  text-transform: none;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-family: var(--body);
}
.form__radios input { accent-color: var(--signal); }
.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--muted);
  margin: 12px 0 20px;
}
.form__consent input { margin-top: 4px; accent-color: var(--signal); }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  display: none;
  background: var(--positive-soft);
  border-left: 3px solid var(--positive);
  padding: 14px 18px;
  color: #0e4a31;
  margin-bottom: 16px;
  font-size: 0.92rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Map */
.map {
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, var(--signal-soft) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(26, 29, 34, 0.04) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(26, 29, 34, 0.04) 60px 61px),
    var(--paper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--signal);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--signal), 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--signal);
  opacity: 0.4;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Big CTA */
.big-cta {
  background: var(--ink);
  color: var(--paper-soft);
  padding: clamp(56px, 7vw, 88px) clamp(32px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--signal);
}
.big-cta h2 { color: var(--paper); margin-bottom: 14px; max-width: 540px; }
.big-cta em { color: var(--signal); font-style: normal; }
.big-cta p { color: rgba(247, 248, 250, 0.72); max-width: 540px; margin: 0; }

/* Footer */
.footer {
  background: var(--paper-soft);
  color: var(--muted);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink);
  text-decoration: none;
}
.footer__brand-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 4px;
}
.footer__brand-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer__about { font-size: 0.92rem; line-height: 1.65; max-width: 340px; margin-bottom: 18px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin: 0 0 18px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--signal); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted-soft);
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
}
.footer__legal a:hover { color: var(--signal); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Page hero (subpages) */
.page-hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 60px);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-end;
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.page-hero__crumbs a { color: var(--signal); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero h1 { margin: 0; max-width: 640px; }
.page-hero p { color: var(--muted); max-width: 480px; font-size: 1.04rem; margin: 0; }

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 440px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(26, 29, 34, 0.3);
  z-index: 200;
  display: none;
  border-left: 3px solid var(--signal);
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--paper);
  margin: 0 0 6px;
  font-weight: 600;
}
.cookie p {
  font-size: 0.88rem;
  margin: 0 0 16px;
  color: rgba(247, 248, 250, 0.78);
  line-height: 1.55;
}
.cookie__row { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie .btn { padding: 8px 16px; font-size: 0.84rem; }

/* Responsive */
@media (max-width: 1024px) {
  .team-grid, .industries, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; row-gap: 28px; }
  .metrics__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .case { grid-template-columns: 60px 2fr 1fr 1fr; }
  .case__num { grid-column: 1; }
  .job { grid-template-columns: 1.6fr 1fr 1fr; }
  .job__apply { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 860px) {
  :root { --nav-h: 64px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__links a { font-size: 1.3rem; font-family: var(--sans); font-weight: 600; }
  body.menu-open .nav__links { transform: none; }
  .hero__inner, .about-split, .page-hero__inner { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .big-cta { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 8px; }
  .case__num { display: none; }
  .timeline__row { grid-template-columns: 64px 1fr; gap: 16px; }
}
@media (max-width: 520px) {
  .team-grid, .industries, .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .job { grid-template-columns: 1fr; }
}
