/* ============================================================
   leanAM Design System — Engineering Timeline Aesthetic
   Fonts: self-hosted in /fonts/ (no Google CDN calls)
   ============================================================ */

/* ---------- Self-hosted @font-face ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url('../fonts/material-symbols-outlined.woff2') format('woff2');
}

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --lam-ink:        #0A1628;
  --lam-ink-2:      #102542;
  --lam-ink-deep:   #060E1C;
  --lam-cyan:       #6FD8F1;
  --lam-cyan-deep:  #1FA9D6;
  --lam-paper:      #F4F8FB;
  --lam-muted:      rgba(244,248,251,.72);
  --lam-muted-2:    rgba(244,248,251,.5);
  --lam-muted-3:    rgba(244,248,251,.35);
  --lam-line:       rgba(111,216,241,.15);
  --lam-line-soft:  rgba(111,216,241,.08);
  --lam-glass:      rgba(255,255,255,.03);

  /* Type */
  --lam-font-ui:   'Inter', system-ui, sans-serif;
  --lam-font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Shape */
  --lam-r-sm: 0;
  --lam-r-md: 0;
  --lam-r-lg: 0;
  --lam-r-xl: 0;

  /* Spacing */
  --lam-pad-y: clamp(80px, 8vw, 120px);
  --lam-pad-x: clamp(20px, 5vw, 80px);
  --lam-max:   1320px;

  /* ── Legacy aliases (subpages + druckfarm-rechner) ── */
  --navy:         #0A1628;
  --navy-2:       #102542;
  --cyan:         #6FD8F1;
  --teal:         #6FD8F1;
  --teal-2:       #1FA9D6;
  --white:        #F4F8FB;
  --offwhite:     #f5f7fa;
  --mid-grey:     #8899aa;
  --light-grey:   rgba(244,248,251,.72);
  --border-light: rgba(111,216,241,.15);
  --radius-lg:    0px;
  --shadow-card:  0 2px 16px rgba(0,0,0,.3);
  --maxw:         1320px;
  --gutter:       clamp(20px,5vw,80px);
}

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

html, body {
  background: var(--lam-ink);
  color: var(--lam-paper);
  font-family: var(--lam-font-ui);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
body { font-size: 16px; line-height: 1.6; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Material Icons / Material Symbols Outlined ---------- */
.material-icons,
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'opsz' 24, 'wght' 400, 'FILL' 0, 'GRAD' 0;
  vertical-align: middle;
}

/* ---------- Atoms ---------- */
.lam-eyebrow {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--lam-cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.lam-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--lam-font-ui);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .12s;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.lam-btn .material-icons { font-size: 18px; }
.lam-btn--primary { background: var(--lam-cyan); color: var(--lam-ink); }
.lam-btn--primary:hover { background: #8FE3F5; }
.lam-btn--ghost {
  background: transparent;
  color: var(--lam-paper);
  border: 1px solid var(--lam-line);
}
.lam-btn--ghost:hover { background: var(--lam-glass); }

.lam-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--lam-glass);
  border: 1px solid var(--lam-line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lam-paper);
}
.lam-pill .material-icons { font-size: 16px; color: var(--lam-cyan); }

.lam-card {
  background: var(--lam-glass);
  border: 1px solid var(--lam-line);
  backdrop-filter: blur(8px);
}

.lam-section {
  padding: var(--lam-pad-y) var(--lam-pad-x);
  position: relative;
  overflow: hidden;
}
.lam-section__inner { max-width: var(--lam-max); margin: 0 auto; }

.lam-h1 {
  font-size: clamp(40px,5.4vw,72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.lam-h2 {
  font-size: clamp(32px,4.4vw,52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.lam-h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.lam-lede {
  font-size: clamp(15px,1.3vw,17px);
  color: rgba(244,248,251,.65);
  line-height: 1.55;
  margin: 0;
}

.lam-icon-tile {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(111,216,241,.18), rgba(111,216,241,.04));
  border: 1px solid var(--lam-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lam-cyan);
}
.lam-icon-tile .material-icons { font-size: 28px; }
.lam-icon-tile--sm { width: 44px; height: 44px; }
.lam-icon-tile--sm .material-icons { font-size: 22px; }

.lam-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.lam-section-header .lam-h2 { margin: 0 auto 18px; max-width: 820px; }
.lam-section-header .lam-lede { max-width: 680px; margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ======================================================
   HEADER
   ====================================================== */
.lam-header {
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lam-line);
  padding: 14px clamp(20px,5vw,40px);
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: var(--lam-font-ui);
  color: var(--lam-paper);
}
.lam-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lam-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.lam-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.lam-header__nav a {
  padding: 8px 14px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--lam-muted);
  font-family: var(--lam-font-ui);
  position: relative;
  transition: color .2s;
}
.lam-header__nav a:hover { color: var(--lam-paper); }
.lam-header__nav a.active {
  color: var(--lam-paper);
  font-weight: 600;
}
.lam-header__nav a.active::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 2px;
  height: 2px;
  background: var(--lam-cyan);
}
.lam-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lam-header__lang {
  font-family: var(--lam-font-mono);
  font-size: 12px;
  color: var(--lam-muted-2);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.lam-header__lang a { color: inherit; text-decoration: none; }
.lam-header__lang a:hover { color: var(--lam-paper); }
.lam-header__lang .active { color: var(--lam-paper); }
.lam-header__lang .sep { color: var(--lam-muted-3); margin: 0 4px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lam-paper);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.lam-mobile-nav {
  background: var(--lam-ink-2);
  border-top: 1px solid var(--lam-line);
}
.lam-mobile-nav nav { display: flex; flex-direction: column; }
.lam-mobile-nav a {
  padding: 13px 24px;
  color: var(--lam-muted);
  font-size: 15px;
  border-bottom: 1px solid var(--lam-line-soft);
  transition: color .2s;
}
.lam-mobile-nav a:hover, .lam-mobile-nav a.active { color: var(--lam-paper); }
.lam-mobile-nav .mobile-cta {
  background: var(--lam-cyan);
  color: var(--lam-ink);
  font-weight: 700;
  text-align: center;
  margin: 12px 16px 16px;
  border: none;
  padding: 13px 24px;
}

/* ======================================================
   HERO
   ====================================================== */
.lam-hero {
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(31,169,214,.18) 0%, transparent 60%), var(--lam-ink);
  padding: clamp(80px,9vw,140px) var(--lam-pad-x);
  position: relative;
  overflow: hidden;
  font-family: var(--lam-font-ui);
  color: var(--lam-paper);
}
.lam-hero__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.lam-hero__inner {
  max-width: var(--lam-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.lam-hero__h1 {
  font-size: clamp(40px,5.4vw,72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.lam-hero__accent {
  font-style: italic;
  font-weight: 500;
  color: var(--lam-cyan);
}
.lam-hero__lede {
  font-size: clamp(16px,1.3vw,19px);
  color: rgba(244,248,251,.7);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 32px;
}
.lam-hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.lam-hero__pills { display: flex; gap: 10px; flex-wrap: wrap; }
.lam-hero__card {
  background: var(--lam-glass);
  border: 1px solid var(--lam-line);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px -32px rgba(111,216,241,.2);
}
.lam-hero__card-title {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lam-hero__card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lam-line-soft);
  font-size: 14px;
  color: var(--lam-paper);
  line-height: 1.5;
}
.lam-hero__card-item:last-child { border-bottom: none; }
.lam-hero__card-item .material-icons { font-size: 18px; color: var(--lam-cyan); margin-top: 2px; flex-shrink: 0; }

/* ======================================================
   DREI SÄULEN
   ====================================================== */
.lam-pillars { background: var(--lam-ink); }
.lam-pillars__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lam-pillars__card {
  background: var(--lam-glass);
  border: 1px solid var(--lam-line);
  padding: 32px 30px 34px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.lam-pillars__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lam-cyan), transparent);
}
.lam-pillars__card:nth-child(1)::before { opacity: 0.6; }
.lam-pillars__card:nth-child(2)::before { opacity: 0.45; }
.lam-pillars__card:nth-child(3)::before { opacity: 0.3; }
.lam-pillars__kicker {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-muted-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 24px 0 8px;
  display: block;
}
.lam-pillars__title { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 14px; }
.lam-pillars__body { font-size: 14.5px; color: var(--lam-muted); line-height: 1.6; margin: 0 0 22px; }
.lam-pillars__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lam-pillars__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--lam-paper);
}
.lam-pillars__list .material-icons { font-size: 16px; color: var(--lam-cyan); }

/* ======================================================
   WARUM LEANAM
   ====================================================== */
.lam-warum { background: var(--lam-ink-deep); }
.lam-warum__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--lam-line);
  overflow: hidden;
}
.lam-warum__cell {
  padding: 30px 28px;
  min-height: 200px;
  border-right: 1px solid var(--lam-line-soft);
  position: relative;
}
.lam-warum__cell:nth-child(4n) { border-right: none; }
.lam-warum__cell:nth-child(n+5) { border-top: 1px solid var(--lam-line-soft); }
.lam-warum__num {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-cyan);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  display: block;
}
.lam-warum__title { font-size: 17px; font-weight: 600; margin: 0 0 10px; line-height: 1.25; letter-spacing: -0.005em; }
.lam-warum__body { font-size: 13px; color: var(--lam-muted); line-height: 1.55; margin: 0; }

/* ======================================================
   LEISTUNGEN
   ====================================================== */
.lam-leistungen { background: var(--lam-ink); }
.lam-leistungen__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lam-leistungen__card {
  background: var(--lam-glass);
  border: 1px solid var(--lam-line);
  padding: 36px 30px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}
.lam-leistungen__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.lam-leistungen__kicker { font-family: var(--lam-font-mono); font-size: 10px; color: var(--lam-muted-2); letter-spacing: 0.14em; }
.lam-leistungen__title { font-size: 30px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 14px; }
.lam-leistungen__body { font-size: 14.5px; color: var(--lam-muted); line-height: 1.6; margin: 0 0 24px; }
.lam-leistungen__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.lam-leistungen__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--lam-paper);
  line-height: 1.45;
}
.lam-leistungen__list .material-icons { font-size: 18px; color: var(--lam-cyan); margin-top: 1px; flex-shrink: 0; }
.lam-leistungen__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lam-cyan);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid var(--lam-line-soft);
  text-decoration: none;
  transition: opacity .2s;
}
.lam-leistungen__more:hover { opacity: .7; }
.lam-leistungen__more .material-icons { font-size: 16px; }

/* ======================================================
   UNSER PROZESS (lam-prozess — scoped tokens)
   ====================================================== */
.lam-prozess {
  --ink:    #0A1628;
  --ink-2:  #102542;
  --cyan:   #6FD8F1;
  --paper:  #F4F8FB;
  --muted:  rgba(244,248,251,.7);
  --muted-2: rgba(244,248,251,.5);
  --line:   rgba(111,216,241,.15);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px,8vw,96px) clamp(20px,5vw,80px) clamp(80px,10vw,120px);
  font-family: var(--lam-font-ui);
  position: relative;
  overflow: hidden;
}
.lam-prozess__inner { max-width: 1320px; margin: 0 auto; }
.lam-prozess__head { text-align: center; margin-bottom: clamp(48px,6vw,72px); }
.lam-prozess__eyebrow {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.lam-prozess__title {
  font-size: clamp(32px,5vw,56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 880px;
}
.lam-prozess__lede {
  font-size: clamp(15px,1.4vw,17px);
  color: rgba(244,248,251,.65);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.lam-prozess__axis {
  display: flex;
  align-items: center;
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: rgba(111,216,241,.7);
  margin-bottom: 18px;
  padding: 0 4px;
}
.lam-prozess__axis-line {
  flex: 1;
  height: 1px;
  margin: 0 14px;
  background: linear-gradient(90deg, rgba(111,216,241,.4), rgba(111,216,241,.1));
}
.lam-prozess__bars { display: grid; grid-template-columns: 10fr 25fr 40fr 25fr; gap: 4px; margin-bottom: 8px; }
.lam-prozess__bar { height: 10px; border-radius: 3px; display: block; }
.lam-prozess__bar--0 { background: rgba(111,216,241,.35); }
.lam-prozess__bar--1 { background: rgba(111,216,241,.55); }
.lam-prozess__bar--2 { background: rgba(111,216,241,.85); }
.lam-prozess__bar--3 { background: linear-gradient(90deg, var(--cyan), rgba(111,216,241,.15)); }
.lam-prozess__phases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 10fr 25fr 40fr 25fr;
  gap: 4px;
}
.lam-prozess__phase {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px 26px;
  backdrop-filter: blur(8px);
}
.lam-prozess__phase-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.lam-prozess__phase-code {
  font-family: var(--lam-font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: .1em;
}
.lam-prozess__phase-duration {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--muted-2);
}
.lam-prozess__phase-title { font-size: 22px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; }
.lam-prozess__phase-body { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0 0 18px; }
.lam-prozess__deliverables { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.lam-prozess__deliverables li {
  font-size: 12px;
  color: rgba(244,248,251,.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lam-prozess__deliverables li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ======================================================
   DRUCKFARM RECHNER TEASER
   ====================================================== */
.lam-druckfarm { background: var(--lam-ink-deep); }
.lam-druckfarm__wrap {
  background: linear-gradient(135deg, rgba(31,169,214,.08), rgba(111,216,241,.02));
  border: 1px solid var(--lam-line);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.lam-druckfarm__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.lam-druckfarm__title {
  font-size: clamp(32px,3.6vw,44px);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lam-druckfarm__body { font-size: 16px; color: var(--lam-muted); line-height: 1.55; margin: 0 0 28px; max-width: 520px; }
.lam-druckfarm__checklist { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lam-druckfarm__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--lam-paper);
  line-height: 1.45;
}
.lam-druckfarm__checklist .material-icons { font-size: 16px; color: var(--lam-cyan); margin-top: 2px; flex-shrink: 0; }
.lam-druckfarm__mock {
  background: rgba(10,22,40,.6);
  border: 1px solid var(--lam-line);
  padding: 24px;
  font-family: var(--lam-font-mono);
  font-size: 12px;
  color: var(--lam-paper);
}
.lam-druckfarm__mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lam-line-soft);
}
.lam-druckfarm__mock-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--lam-line-soft);
  font-size: 12px;
}
.lam-druckfarm__mock-row .lbl { color: var(--lam-muted); }
.lam-druckfarm__mock-row .val { font-weight: 600; }
.lam-druckfarm__mock-row .val-cyan { font-weight: 600; color: var(--lam-cyan); }

/* ======================================================
   FAQ
   ====================================================== */
.lam-faq { background: var(--lam-ink); }
.lam-faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.lam-faq__left-title {
  font-size: clamp(32px,3.6vw,46px);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.lam-faq__left-body { font-size: 15.5px; color: var(--lam-muted); line-height: 1.55; margin: 0; }
.lam-faq__accordion { border: 1px solid var(--lam-line); overflow: hidden; }
.lam-faq__item { border-bottom: 1px solid var(--lam-line-soft); }
.lam-faq__item:last-child { border-bottom: none; }
.lam-faq__btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--lam-paper);
  font-family: var(--lam-font-ui);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color .2s;
}
.lam-faq__btn.is-open { color: var(--lam-cyan); }
.lam-faq__btn-label { display: flex; align-items: center; gap: 14px; }
.lam-faq__num {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-muted-2);
  letter-spacing: 0.1em;
  width: 24px;
  flex-shrink: 0;
}
.lam-faq__btn.is-open .lam-faq__num { color: var(--lam-cyan); }
.lam-faq__icon { font-size: 20px; color: var(--lam-muted-2); transition: transform .3s, color .2s; flex-shrink: 0; }
.lam-faq__btn.is-open .lam-faq__icon { color: var(--lam-cyan); transform: rotate(45deg); }
.lam-faq__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.lam-faq__body.is-open { max-height: 400px; }
.lam-faq__body-inner { padding: 0 26px 22px 64px; font-size: 14px; color: var(--lam-muted); line-height: 1.6; }

/* ======================================================
   KONTAKT CTA
   ====================================================== */
.lam-cta {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(31,169,214,.18) 0%, transparent 60%), var(--lam-ink);
}
.lam-cta__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.lam-cta__h2 {
  font-size: clamp(40px,5vw,64px);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.lam-cta__accent { font-style: italic; font-weight: 500; color: var(--lam-cyan); }
.lam-cta__body { font-size: 18px; color: var(--lam-muted); line-height: 1.55; margin: 0 0 36px; }
.lam-cta__btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.lam-cta__meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-muted-2);
  letter-spacing: 0.1em;
}

/* ======================================================
   FOOTER
   ====================================================== */
.lam-footer {
  background: var(--lam-ink-deep);
  color: var(--lam-paper);
  padding: 72px var(--lam-pad-x) 32px;
  font-family: var(--lam-font-ui);
  border-top: 1px solid var(--lam-line);
}
.lam-footer__inner { max-width: var(--lam-max); margin: 0 auto; }
.lam-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--lam-line-soft);
}
.lam-footer__col-title {
  font-family: var(--lam-font-mono);
  font-size: 11px;
  color: var(--lam-cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.lam-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lam-footer__list a { color: var(--lam-muted); font-size: 13.5px; transition: color .2s; }
.lam-footer__list a:hover { color: var(--lam-paper); }
.lam-footer__tagline { font-size: 13.5px; color: var(--lam-muted); line-height: 1.6; margin: 0 0 18px; max-width: 320px; }
.lam-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.lam-footer__copy { font-size: 12px; color: var(--lam-muted-2); }
.lam-footer__legal { display: flex; gap: 24px; }
.lam-footer__legal a { color: var(--lam-muted-2); font-size: 12px; transition: color .2s; }
.lam-footer__legal a:hover { color: var(--lam-paper); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1200px) {
  .lam-hero__inner { grid-template-columns: 1fr; }
  .lam-hero__card { display: none; }
}

@media (max-width: 1024px) {
  .lam-header__nav { display: none; }
  .nav-toggle { display: flex; }
  .lam-pillars__grid { grid-template-columns: 1fr 1fr; }
  .lam-warum__grid { grid-template-columns: 1fr 1fr; }
  .lam-warum__cell:nth-child(2n) { border-right: none; }
  .lam-warum__cell:nth-child(4n) { border-right: none; }
  .lam-warum__cell:nth-child(n+3) { border-top: 1px solid var(--lam-line-soft); }
  .lam-leistungen__grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .lam-faq__grid { grid-template-columns: 1fr; }
  .lam-footer__grid { grid-template-columns: 1fr 1fr; }
  .lam-druckfarm__grid { grid-template-columns: 1fr; }
  .lam-druckfarm__wrap { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .lam-pillars__grid { grid-template-columns: 1fr; }
  .lam-warum__grid { grid-template-columns: 1fr 1fr; }
  .lam-druckfarm__checklist { grid-template-columns: 1fr; }
  .lam-cta__meta { gap: 16px; }
  .lam-hero__cta-row { flex-direction: column; align-items: flex-start; }
  .lam-prozess__bars, .lam-prozess__axis { display: none; }
  .lam-prozess__phases { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 600px) {
  .lam-warum__grid { grid-template-columns: 1fr; }
  .lam-warum__cell { border-right: none !important; }
  .lam-warum__cell:nth-child(n+2) { border-top: 1px solid var(--lam-line-soft); }
  .lam-footer__grid { grid-template-columns: 1fr; }
  .lam-footer__bottom { flex-direction: column; align-items: flex-start; }
  .lam-prozess__phases { grid-template-columns: 1fr !important; position: relative; padding-left: 24px; }
  .lam-prozess__phases::before {
    content: '';
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--lam-cyan), rgba(111,216,241,.1));
  }
  .lam-prozess__phase { position: relative; }
  .lam-prozess__phase::before {
    content: '';
    position: absolute;
    left: -22px; top: 28px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--lam-cyan);
    box-shadow: 0 0 0 4px var(--lam-ink), 0 0 0 5px rgba(111,216,241,.3);
  }
}

/* ======================================================
   SUBPAGE BRIDGE — legacy class compatibility
   Covers all classes used by subpages (mes, prozessberatung,
   entwicklung, ueber-uns, kontakt, druckfarm-rechner)
   ====================================================== */

/* Container */
.container {
  max-width: var(--lam-max);
  margin: 0 auto;
  padding: 0 var(--lam-pad-x);
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(64px,7vw,100px) 0;
  background: var(--lam-ink);
  color: var(--lam-paper);
}
.section.light   { background: var(--lam-ink-2); }
.section.offwhite{ background: #0d1e33; }
.section.teal    { background: var(--lam-ink-deep); }
.section.dark    { background: var(--lam-ink-deep); }

/* Nav helper used on some pages */
.nav { display: flex; align-items: center; gap: 24px; }

/* Page hero */
.page-hero {
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(31,169,214,.15) 0%, transparent 60%), var(--lam-ink);
  padding: clamp(64px,8vw,100px) 0 clamp(48px,6vw,80px);
  color: var(--lam-paper);
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--lam-muted-2); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--lam-muted-2); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--lam-cyan); }
.page-hero .breadcrumb .material-icons,
.page-hero .breadcrumb .material-symbols-outlined { font-size: 14px; }
.page-hero .eyebrow {
  font-family: var(--lam-font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--lam-cyan); text-transform: uppercase;
  margin-bottom: 18px; display: block;
}
.page-hero h1 {
  font-size: clamp(36px,5vw,60px); font-weight: 700; line-height: 1.05;
  letter-spacing: -.025em; margin: 0 0 18px;
}
.page-hero h1 .accent { color: var(--lam-cyan); font-style: italic; font-weight: 500; }
.page-hero .lead {
  font-size: clamp(15px,1.3vw,18px); color: var(--lam-muted);
  line-height: 1.55; max-width: 640px; margin: 0 0 32px;
}
.page-hero .badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Section head */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow,
.section-head span.eyebrow {
  font-family: var(--lam-font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--lam-cyan); text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.section-head.center { text-align: center; }
.section-head p {
  font-size: 15.5px; color: var(--lam-muted); line-height: 1.55;
  max-width: 600px; margin: 18px auto 0;
}

/* Inline eyebrow (used outside .section-head) */
.eyebrow {
  font-family: var(--lam-font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--lam-cyan); text-transform: uppercase;
  margin-bottom: 16px; display: block;
}

/* Headings */
.h2 {
  font-size: clamp(28px,4vw,48px); font-weight: 700; line-height: 1.07;
  letter-spacing: -.02em; margin: 0;
}
.h2 .cyan { color: var(--lam-cyan); }
.h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin: 0; }

/* Utility */
.body   { font-size: 15px; line-height: 1.6; }
.muted  { color: var(--lam-muted); }
.cyan   { color: var(--lam-cyan); }
.accent { color: var(--lam-cyan); font-style: italic; font-weight: 500; }
.mt-2   { margin-top: 16px !important; }
.mt-4   { margin-top: 32px !important; }
.mt-0   { margin-top: 0 !important; }
.cta-row{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Buttons (subpage versions) */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  font-family: var(--lam-font-ui); transition: background .2s, opacity .2s;
  letter-spacing: -.005em; white-space: nowrap;
}
.btn .material-icons,
.btn .material-symbols-outlined { font-size: 18px; }
.btn-primary { background: var(--lam-cyan); color: var(--lam-ink); }
.btn-primary:hover { background: #8FE3F5; }
.btn-outline-light {
  background: transparent; color: var(--lam-paper);
  border: 1px solid var(--lam-line);
}
.btn-outline-light:hover { background: var(--lam-glass); }
.btn-outline {
  background: transparent; color: var(--lam-paper);
  border: 1px solid var(--lam-line);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 500;
  color: var(--lam-paper); background: var(--lam-glass);
  border: 1px solid var(--lam-line);
}
.badge.solid {
  background: rgba(111,216,241,.12);
  border-color: rgba(111,216,241,.3);
}
.badge .material-icons,
.badge .material-symbols-outlined { font-size: 16px; color: var(--lam-cyan); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Grid */
.grid   { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* Feature card */
.feature-card {
  background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 28px 24px;
}
.feature-card h4 { font-size: 16px; font-weight: 700; margin: 14px 0 10px; }
.feature-card p  { font-size: 13.5px; color: var(--lam-muted); line-height: 1.55; margin: 0; }
.icon-circle {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(111,216,241,.18), rgba(111,216,241,.04));
  border: 1px solid var(--lam-line);
  display: flex; align-items: center; justify-content: center; color: var(--lam-cyan);
}
.icon-circle .material-icons,
.icon-circle .material-symbols-outlined { font-size: 26px; }

/* Feature / body lists */
.feature-list,
.body-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-list li,
.body-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5;
}
.feature-list .material-icons, .feature-list .material-symbols-outlined,
.body-list .material-icons,    .body-list .material-symbols-outlined {
  font-size: 20px; color: var(--lam-cyan); flex-shrink: 0; margin-top: 1px;
}

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.flip > :first-child { order: 2; }
.split.flip > :last-child  { order: 1; }

/* Placeholder image */
.placeholder-image {
  background: var(--lam-glass); border: 1px solid var(--lam-line);
  min-height: 280px; display: flex; align-items: center; justify-content: center;
}
.ph-content { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ph-content .material-icons,
.ph-content .material-symbols-outlined { font-size: 48px; color: var(--lam-cyan); opacity: .5; }
.ph-content .label { font-size: 12px; color: var(--lam-muted-2); font-family: var(--lam-font-mono); }

/* FAQ (details/summary subpage style) */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--lam-line); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--lam-line-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--lam-paper); user-select: none;
}
.faq-item summary h3 { display: inline; font-size: 15px; font-weight: 600; margin: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--lam-cyan); }
.faq-item p { padding: 0 24px 20px; font-size: 13.5px; color: var(--lam-muted); line-height: 1.6; margin: 0; }

/* Service detail (prozessberatung) */
.service-detail {
  background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 32px 28px;
}
.service-detail .icon-circle { margin-bottom: 18px; }
.service-detail h3 { font-size: 22px; font-weight: 700; margin: 12px 0 12px; letter-spacing: -.01em; }
.service-detail p  { font-size: 14px; color: var(--lam-muted); line-height: 1.6; margin: 0 0 18px; }
.service-detail ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.service-detail ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; }
.service-detail ul .material-icons,
.service-detail ul .material-symbols-outlined { font-size: 18px; color: var(--lam-cyan); flex-shrink: 0; margin-top: 1px; }
.price-line {
  font-family: var(--lam-font-mono); font-size: 11px; color: var(--lam-muted-2);
  letter-spacing: .1em; margin-bottom: 4px; display: block;
}

/* Steps (prozessberatung) */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step  { background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 28px 24px; }
.num-circle {
  width: 40px; height: 40px;
  background: rgba(111,216,241,.12); border: 1px solid var(--lam-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--lam-cyan); margin-bottom: 14px;
}
.step h4 { font-size: 16px; font-weight: 700; margin: 0 0 10px; }
.step p  { font-size: 13.5px; color: var(--lam-muted); line-height: 1.55; margin: 0; }

/* Tech grid (entwicklung) */
.tech-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.tech-chip {
  display: flex; align-items: center; gap: 14px;
  background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 16px;
}
.tech-chip .material-icons,
.tech-chip .material-symbols-outlined { font-size: 22px; color: var(--lam-cyan); flex-shrink: 0; }
.tech-name { font-size: 13.5px; font-weight: 600; color: var(--lam-paper); display: block; }
.tech-cat  { font-family: var(--lam-font-mono); font-size: 10px; color: var(--lam-muted-2); letter-spacing: .1em; display: block; }

/* Value cards (ueber-uns) */
.value-card { background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 28px 24px; }
.value-card .num {
  font-family: var(--lam-font-mono); font-size: 12px; color: var(--lam-cyan);
  letter-spacing: .1em; margin-bottom: 12px; display: block;
}
.value-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.value-card p  { font-size: 13.5px; color: var(--lam-muted); line-height: 1.55; margin: 0; }

/* Stats (ueber-uns) */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  margin-top: 48px; border-top: 1px solid var(--lam-line-soft); padding-top: 40px;
}
.stats--3   { grid-template-columns: repeat(3,1fr); }
.stat-num   { font-size: 32px; font-weight: 800; color: var(--lam-cyan); letter-spacing: -.02em; }
.stat-label { font-size: 12.5px; color: var(--lam-muted); margin-top: 6px; }

/* Vergleichstabellen: durchgehend heller Tabellenhintergrund + dunkle Schrift.
   Verhindert sowohl hell-auf-hell (helle Zebra-Zeilen) als auch dunkel-auf-dunkel
   (transparente Zeilen über dunkler Sektion). Kopfzeile bleibt weiß auf dunkel;
   farbig markierte Zellen behalten ihre Inline-Farbe. */
.comparison-table-wrap table { background: #ffffff; color: var(--lam-ink); border-radius: 12px; overflow: hidden; }
.comparison-table-wrap table thead th { color: #ffffff; }

/* Cloud comparison (mes) */
.problem-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-col { border: 1px solid var(--lam-line); padding: 24px; }
.comparison-col.bad  { border-color: rgba(255,100,100,.2); }
.comparison-col.good { border-color: rgba(111,216,241,.25); }
.comp-head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; margin-bottom: 16px;
}
.comp-head .material-icons,
.comp-head .material-symbols-outlined { font-size: 22px; color: var(--lam-cyan); }
.comparison-col.bad .comp-head .material-icons,
.comparison-col.bad .comp-head .material-symbols-outlined { color: rgba(255,100,100,.7); }
.comparison-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.comparison-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; }
.comparison-col li .material-icons,
.comparison-col li .material-symbols-outlined { font-size: 18px; color: var(--lam-cyan); flex-shrink: 0; margin-top: 1px; }
.comparison-col.bad li .material-icons,
.comparison-col.bad li .material-symbols-outlined { color: rgba(255,100,100,.7); }

/* Highlight block (mes bambu section) */
.highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Workflow steps (mes) */
.workflow { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.workflow-step { background: var(--lam-glass); border: 1px solid var(--lam-line); padding: 24px 20px; }
.ws-num {
  font-family: var(--lam-font-mono); font-size: 10px; color: var(--lam-cyan);
  letter-spacing: .15em; margin-bottom: 10px; display: block;
}
.workflow-step h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.workflow-step p  { font-size: 13px; color: var(--lam-muted); line-height: 1.55; margin: 0; }

/* Contact (kontakt) */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info  { display: flex; flex-direction: column; gap: 28px; }
.contact-block h4 { font-size: 15px; font-weight: 700; margin: 12px 0 8px; }
.contact-block p  { font-size: 14px; color: var(--lam-muted); line-height: 1.6; margin: 0; }
.contact-block a  { color: var(--lam-cyan); transition: opacity .2s; }
.contact-block a:hover { opacity: .8; }
.contact-block a.btn-primary { color: var(--lam-ink); }
.contact-block a.btn-outline { color: var(--lam-ink-2); }

/* Form (kontakt) */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; font-weight: 600; color: var(--lam-muted); letter-spacing: .05em;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--lam-line);
  color: var(--lam-paper); font-family: var(--lam-font-ui); font-size: 14px;
  padding: 12px 14px; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lam-cyan);
}
.field input::placeholder, .field textarea::placeholder { color: var(--lam-muted-3); }
.field textarea { min-height: 130px; resize: vertical; }
.field select    { appearance: none; cursor: pointer; color-scheme: dark; }
.field select option { background: var(--lam-ink-2); color: var(--lam-paper); }
.field-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 12.5px; color: var(--lam-muted); line-height: 1.55; cursor: pointer;
}
.field-checkbox input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--lam-cyan); }
.field-checkbox a { color: var(--lam-cyan); }

/* CTA banner (dark .section.dark.cta-banner) */
.cta-banner           { text-align: center; }
.cta-banner .eyebrow  { margin: 0 auto 16px; }
.cta-banner .h2       { max-width: 760px; margin: 0 auto 18px; }
.cta-banner p         { max-width: 600px; margin: 0 auto; color: var(--lam-muted); line-height: 1.55; }
.cta-banner .cta-row  { justify-content: center; }

/* AM Interface Advisory note block */
.section > .container > div[style*="border-left"] {
  border-color: var(--lam-line) !important;
  background: var(--lam-glass) !important;
  color: var(--lam-muted);
}

/* ROI rechner block on MES page (inline styled) */
.section .h2 span[style*="color:var(--cyan)"] { color: var(--lam-cyan) !important; }

/* ── Responsive bridge ── */
@media (max-width: 1200px) {
  .tech-grid  { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .grid-4             { grid-template-columns: repeat(2,1fr); }
  .steps              { grid-template-columns: repeat(2,1fr); }
  .stats              { grid-template-columns: repeat(2,1fr); }
  .workflow           { grid-template-columns: repeat(3,1fr); }
  .split              { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: unset; }
  .split.flip > :last-child  { order: unset; }
  .highlight          { grid-template-columns: 1fr; }
  .problem-comparison { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .tech-grid          { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3    { grid-template-columns: 1fr; }
  .tech-grid          { grid-template-columns: repeat(2,1fr); }
  .workflow           { grid-template-columns: repeat(2,1fr); }
  .form-row           { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tech-grid          { grid-template-columns: 1fr; }
  .steps              { grid-template-columns: 1fr; }
  .workflow           { grid-template-columns: 1fr; }
  .stats              { grid-template-columns: repeat(2,1fr); }
}
