/* =============================================================
   Noragentic — site styles
   Tokens lifted from design system (beige/black + single turquoise
   accent, Inter Light + Regular dominant, understated radii, flat
   shadows, fade + 4–8px translate motion).
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,200..700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* brand */
  --color-beige:       #f7f7f4;
  --color-beige-warm:  #f2f1ed;
  --color-black:       #000000;
  --color-green-mild:  #e1efe3;
  --color-turquoise:   #41bbcb;

  /* roles */
  --bg: var(--color-beige);
  --bg-alt: var(--color-beige-warm);
  --bg-inverse: var(--color-black);
  --bg-soft: var(--color-green-mild);

  --fg1: var(--color-black);
  --fg2: rgba(0,0,0,0.72);
  --fg3: rgba(0,0,0,0.52);
  --fg4: rgba(0,0,0,0.32);
  --fg-on-dark: var(--color-beige);
  --fg2-on-dark: rgba(247,247,244,0.72);
  --fg3-on-dark: rgba(247,247,244,0.52);
  --fg4-on-dark: rgba(247,247,244,0.32);

  --border: rgba(0,0,0,0.12);
  --border-strong: rgba(0,0,0,0.24);
  --border-on-dark: rgba(247,247,244,0.16);

  --accent: var(--color-turquoise);

  /* fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  --container: 1280px;

  /* tweak knobs (overridden by JS) */
  --hero-bg: var(--color-beige);
  --hero-fg: var(--color-black);
  --hero-fg-muted: rgba(0,0,0,0.45);
  --hero-lead: rgba(0,0,0,0.72);
  --hero-border: rgba(0,0,0,0.12);

  --typo-tracking: -0.025em;
  --typo-leading: 1.02;

  --pattern-opacity: 1;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; transition: opacity var(--dur-fast) var(--ease-out); }
a:hover { opacity: 0.7; }

img { max-width: 100%; display: block; }

::selection { background: var(--color-turquoise); color: #000; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(247,247,244,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.nav.scrolled { border-bottom-color: rgba(0,0,0,0.08); }
.nav .brand img { height: 20px; }
.nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.nav ul a {
  color: var(--fg2); font-weight: 450;
  position: relative; padding: 6px 0;
}
.nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur-base) var(--ease-out);
}
.nav ul a:hover, .nav ul a.active { opacity: 1; color: var(--fg1); }
.nav ul a.active::after { transform: scaleX(1); }
.nav .cta {
  font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px;
  background: #000; color: #f7f7f4;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.nav .cta:hover { background: #1a1a1a; opacity: 1; }
.nav .cta:active { transform: translateY(1px); }
.nav .cta .pulse { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 0 rgba(65,187,203,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(65,187,203,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(65,187,203,0); }
  100% { box-shadow: 0 0 0 0 rgba(65,187,203,0); }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-fg);
  overflow: hidden;
  transition: background var(--dur-slow) var(--ease-out), color var(--dur-slow) var(--ease-out);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 40px 140px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hero-fg-muted); font-weight: 500;
  margin-bottom: 32px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--hero-border);
  border-radius: 999px;
  background: transparent;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); animation: pulse-dot 2.4s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 300;
  letter-spacing: var(--typo-tracking);
  line-height: var(--typo-leading);
  margin: 0 0 36px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--hero-fg-muted); font-weight: 300; }
.hero .lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--hero-lead);
  max-width: 54ch;
  margin: 0 0 48px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  font: inherit; font-size: 15px; font-weight: 500;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #000; color: #f7f7f4; }
.btn-primary:hover { background: #1a1a1a; opacity: 1; }
.btn-secondary { background: transparent; color: inherit; border-color: var(--hero-border); }
.btn-secondary:hover { border-color: currentColor; opacity: 1; }
.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: #6cd2e0; opacity: 1; }
.btn-light { background: #f7f7f4; color: #000; }
.btn-light:hover { background: #fff; opacity: 1; }

.hero-on-dark {
  --hero-bg: #000;
  --hero-fg: #f7f7f4;
  --hero-fg-muted: rgba(247,247,244,0.45);
  --hero-lead: rgba(247,247,244,0.72);
  --hero-border: rgba(247,247,244,0.18);
}

/* hero live panel on the right */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-panel {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  border: 1px solid var(--hero-border);
  background: rgba(0,0,0,0.02);
  overflow: hidden;
  min-height: 520px;
  backdrop-filter: blur(1px);
}
.hero-on-dark .hero-panel { background: rgba(247,247,244,0.025); }

/* floating symbol as soft watermark inside panel */
.hero-panel-symbol {
  position: absolute;
  right: -12%; bottom: -10%;
  width: 90%;
  opacity: 0.08;
  pointer-events: none;
}

/* agent flow mini-diagram */
.agent-flow {
  position: absolute; inset: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 2;
}
.af-header {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--hero-fg-muted); letter-spacing: 0.02em;
}
.af-header .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); animation: pulse-dot 1.6s infinite; }
.af-steps { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; }
.af-step {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 12px;
  padding: 14px 14px 14px 10px;
  border: 1px solid var(--hero-border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--hero-bg) 82%, transparent);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.af-step.active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--hero-bg));
  transform: translateY(-1px);
}
.af-step.done { opacity: 0.55; }
.af-step .num {
  font-family: var(--font-mono); font-size: 10px;
  width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--hero-border);
  color: var(--hero-fg-muted);
}
.af-step.active .num { border-color: var(--accent); color: var(--accent); }
.af-step.done .num { background: var(--accent); color: #000; border-color: var(--accent); }
.af-step .label { font-size: 13px; font-weight: 500; }
.af-step .meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--hero-fg-muted); }
.af-step .bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform-origin: left;
  transform: scaleX(0); transition: transform 900ms linear;
}
.af-step.active .bar { transform: scaleX(1); }
.af-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed var(--hero-border);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--hero-fg-muted);
}
.af-footer .result { color: var(--hero-fg); }

/* =============================================================
   SECTIONS / GENERAL
   ============================================================= */
.section { padding: 120px 40px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head .right { padding-bottom: 6px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 20px; height: 1px; background: currentColor;
}
h2.section-title {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.06;
  margin: 0; max-width: 18ch; text-wrap: balance;
}
.section-head p {
  font-size: 17px; color: var(--fg2);
  line-height: 1.55; margin: 0; max-width: 44ch;
}

/* =============================================================
   STATS strip
   ============================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: var(--container);
  margin: 0 auto;
}
.stat {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-size: clamp(44px, 4vw, 64px); font-weight: 300; letter-spacing: -0.02em;
  line-height: 1; margin: 0 0 12px;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline;
}
.stat .num .suffix { font-size: 0.5em; margin-left: 2px; color: var(--fg3); font-weight: 400; }
.stat .lbl { font-size: 13px; color: var(--fg3); margin: 0; max-width: 28ch; line-height: 1.4; }
.stat .src { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg4); margin: 10px 0 0; letter-spacing: 0.02em; }
.stat::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent);
  transition: width var(--dur-slow) var(--ease-out);
}
.stat.in-view::after { width: 40px; }

/* =============================================================
   Løsninger / Features
   ============================================================= */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.feat-grid.feat-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feat-grid.feat-grid-4 .feat { padding: 32px 28px 28px; min-height: 300px; min-width: 0; }
.feat-grid.feat-grid-4 .feat h3 { font-size: 20px; }
.feat-grid.feat-grid-4 .feat p { font-size: 13.5px; }
.feat {
  background: var(--bg);
  padding: 40px 36px 36px;
  min-height: 340px;
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.feat:last-child { border-right: 0; }
.feat:hover { background: var(--bg-alt); }
.feat:hover .feat-sparkle { transform: translate(0, 0); opacity: 1; }
.feat:hover .feat-illu { transform: translateY(-4px); }
.feat .idx {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg4); margin: 0;
  display: flex; justify-content: space-between; align-items: center;
}
.feat h3 {
  font-size: 24px; font-weight: 400; letter-spacing: -0.01em;
  line-height: 1.2; margin: 0;
}
.feat p {
  font-size: 14.5px; color: var(--fg2); line-height: 1.55;
  margin: 0; flex: 1;
}
.feat .bullets {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--fg2);
}
.feat .bullets li { display: flex; gap: 10px; align-items: center; }
.feat .bullets li::before { content: "→"; color: var(--fg4); font-family: var(--font-mono); font-size: 11px; }
.feat-arr {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; margin-top: auto;
}
.feat-arr span:last-child { transition: transform var(--dur-base) var(--ease-out); }
.feat:hover .feat-arr span:last-child { transform: translateX(4px); }

.feat-illu {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  transition: transform var(--dur-base) var(--ease-out);
  margin-bottom: 8px;
}
.feat-illu svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* =============================================================
   Agent-flow (full section, interactive)
   ============================================================= */
.flow-section {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.flow-stage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.flow-tabs { display: flex; flex-direction: column; gap: 4px; }
.flow-tab {
  display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: center;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  transition: all var(--dur-base) var(--ease-out);
  font-family: inherit;
}
.flow-tab .num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg3);
  width: 26px; height: 26px; border-radius: 8px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.flow-tab .ttl { font-size: 14px; font-weight: 500; }
.flow-tab .sub { font-size: 11.5px; color: var(--fg3); font-family: var(--font-mono); }
.flow-tab:hover { border-color: var(--border-strong); }
.flow-tab.active {
  background: #000; color: #f7f7f4; border-color: #000;
}
.flow-tab.active .num { color: var(--accent); border-color: var(--border-on-dark); }
.flow-tab.active .sub { color: rgba(247,247,244,0.55); }

.flow-canvas {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #000;
  color: #f7f7f4;
  min-height: 520px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.flow-canvas::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/pattern/pattern_beige_outline_on_black.png');
  background-size: 420px auto;
  opacity: 0.08;
  pointer-events: none;
}
.flow-panel { position: relative; z-index: 1; display: grid; gap: 20px; }
.flow-panel h3 { font-size: 28px; font-weight: 300; letter-spacing: -0.015em; margin: 0; }
.flow-panel p { color: rgba(247,247,244,0.65); margin: 0; font-size: 15px; max-width: 52ch; }

.flow-diagram { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 8px; }
.fd-node {
  border: 1px solid var(--border-on-dark);
  border-radius: 10px;
  padding: 14px 12px;
  background: rgba(247,247,244,0.03);
  position: relative;
  min-height: 96px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.fd-node .n-ttl { font-size: 12.5px; font-weight: 500; }
.fd-node .n-sub { font-family: var(--font-mono); font-size: 10.5px; color: rgba(247,247,244,0.5); }
.fd-node.lit { border-color: var(--accent); background: rgba(65,187,203,0.08); }
.fd-node.lit .n-sub { color: var(--accent); }

.flow-log {
  margin-top: 12px;
  border: 1px dashed var(--border-on-dark);
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-mono); font-size: 12.5px;
  color: rgba(247,247,244,0.75);
  min-height: 160px;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(0,0,0,0.4);
}
.log-line { opacity: 0; transform: translateY(4px); transition: all var(--dur-base) var(--ease-out); }
.log-line.show { opacity: 1; transform: none; }
.log-line .t { color: rgba(247,247,244,0.4); margin-right: 10px; }
.log-line .ok { color: var(--accent); }

.flow-controls { display: flex; gap: 10px; align-items: center; margin-top: 12px; font-family: var(--font-mono); font-size: 12px; color: rgba(247,247,244,0.55); }
.flow-controls button {
  background: transparent;
  color: inherit;
  font: inherit;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.flow-controls button:hover { border-color: #f7f7f4; }

/* =============================================================
   Pattern banner (quote)
   ============================================================= */
.quote-band {
  margin: 0;
  background: #000;
  color: #f7f7f4;
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/pattern/pattern_beige_on_black.png');
  background-size: 440px auto;
  background-repeat: repeat;
  opacity: calc(0.22 * var(--pattern-opacity));
}
.quote-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.4));
}
.quote-band .inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: center;
}
.quote-band blockquote {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300; letter-spacing: -0.015em;
  line-height: 1.18; margin: 0; text-wrap: pretty;
}
.quote-band blockquote span.quot { color: var(--accent); }
.quote-band cite { font-style: normal; font-size: 14px; color: rgba(247,247,244,0.6); display: block; margin-top: 28px; }
.quote-band cite b { color: #f7f7f4; font-weight: 500; display: block; margin-bottom: 2px; }

.case-mini {
  border: 1px solid var(--border-on-dark);
  border-radius: 16px;
  padding: 24px;
  background: rgba(247,247,244,0.04);
  backdrop-filter: blur(8px);
}
.case-mini .label { font-family: var(--font-mono); font-size: 11px; color: rgba(247,247,244,0.5); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 10px; }
.case-mini .big { font-size: 44px; font-weight: 300; letter-spacing: -0.02em; margin: 0; line-height: 1; }
.case-mini .desc { font-size: 13px; color: rgba(247,247,244,0.65); margin: 10px 0 0; line-height: 1.5; }
.case-mini .divider { height: 1px; background: var(--border-on-dark); margin: 18px 0; }
.case-mini .tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }

/* =============================================================
   Kundecase grid
   ============================================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.case {
  background: var(--bg);
  padding: 32px 28px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.case:hover { background: var(--bg-alt); }
.case-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg3);
}
.case-logo {
  height: 28px; font-weight: 500; font-size: 14px; color: var(--fg1);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
}
.case-logo .mark { width: 22px; height: 22px; border-radius: 4px; background: var(--fg1); color: var(--bg); display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.case h3 {
  font-size: 22px; font-weight: 400; letter-spacing: -0.01em;
  line-height: 1.25; margin: 0; text-wrap: pretty;
}
.case-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto;
}
.case-metrics div .n { font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 2px; }
.case-metrics div .l { font-size: 11.5px; color: var(--fg3); font-family: var(--font-mono); }
.case-metrics div .n.accent { color: var(--accent); }

/* =============================================================
   Prosess / tidslinje (used on løsninger page also)
   ============================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  position: relative;
}
.process::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px;
  height: 1px; background: var(--fg1);
  width: var(--process-progress, 0%);
  transition: width 1s var(--ease-out);
}
.p-step { position: relative; }
.p-step .n {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg3);
  margin: 0 0 14px;
  display: flex; gap: 10px; align-items: center;
}
.p-step .n::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--fg1);
}
.p-step h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 8px; }
.p-step p { font-size: 14px; color: var(--fg2); margin: 0; line-height: 1.55; }

/* =============================================================
   ROI-kalkulator
   ============================================================= */
.roi {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
}
.roi-controls { padding: 44px 44px; border-right: 1px solid var(--border); }
.roi-display { padding: 44px; background: #000; color: #f7f7f4; position: relative; overflow: hidden; }
.roi-display::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px;
  background: url('assets/logo/symbol_white.svg') no-repeat center / contain;
  opacity: 0.05;
}

.roi-field { margin-bottom: 28px; }
.roi-field:last-child { margin-bottom: 0; }
.roi-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--fg2); margin-bottom: 10px;
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.roi-field .val {
  font-family: var(--font-mono); color: var(--fg1);
  font-size: 14px; font-weight: 500;
}
.roi-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 28px;
  cursor: pointer;
}
.roi-field input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--fg1) var(--fill, 0%), var(--border) var(--fill, 0%));
}
.roi-field input[type="range"]::-moz-range-track {
  height: 2px;
  background: linear-gradient(to right, var(--fg1) var(--fill, 0%), var(--border) var(--fill, 0%));
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--fg1);
  margin-top: -6px;
  border: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.roi-field input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.2); }
.roi-field input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 999px; background: var(--fg1); border: 0; }

.roi-ticks {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--fg4);
  margin-top: 4px;
}

.roi-display .label { font-family: var(--font-mono); font-size: 11px; color: rgba(247,247,244,0.5); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 12px; }
.roi-display .big {
  font-size: clamp(56px, 6vw, 96px); font-weight: 300; letter-spacing: -0.02em;
  line-height: 0.95; margin: 0;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 10px;
}
.roi-display .big .unit { font-size: 0.35em; color: rgba(247,247,244,0.55); font-weight: 400; }
.roi-display .sep { height: 1px; background: var(--border-on-dark); margin: 32px 0; }
.roi-display .row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(247,247,244,0.72); padding: 8px 0; border-bottom: 1px solid rgba(247,247,244,0.08); }
.roi-display .row:last-child { border-bottom: 0; }
.roi-display .row .v { font-family: var(--font-mono); color: #f7f7f4; }
.roi-display .row .v.accent { color: var(--accent); }
.roi-note { margin-top: 24px; font-size: 12px; color: rgba(247,247,244,0.42); max-width: 44ch; line-height: 1.5; font-family: var(--font-mono); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 19px; font-weight: 400; letter-spacing: -0.005em;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.faq-q:hover { opacity: 0.75; }
.faq-plus {
  width: 22px; height: 22px; flex: 0 0 22px;
  position: relative;
}
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: currentColor;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.open .faq-plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 28px; padding-right: 46px;
  font-size: 15.5px; color: var(--fg2); line-height: 1.6;
  max-width: 70ch;
}

/* =============================================================
   Om / team
   ============================================================= */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.team-card {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  min-width: 0;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.team-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.team-portrait {
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.team-portrait .grain { position: absolute; inset: 0; background: url('assets/pattern/pattern_black_outline_on_beige.png'); background-size: 200px auto; opacity: 0.22; }
.team-body { padding: 18px 18px 22px; }
.team-body h4 { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 4px; }
.team-body .role { font-size: 12.5px; color: var(--fg3); margin: 0 0 10px; }
.team-body .bio { font-size: 13px; color: var(--fg2); line-height: 1.5; margin: 0; }

/* =============================================================
   Kontakt / booking
   ============================================================= */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.booking-form { padding: 48px; background: var(--bg); }
.booking-side { padding: 48px; background: #000; color: #f7f7f4; position: relative; overflow: hidden; }
.booking-side::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/pattern/pattern_fragment_white.png') no-repeat right bottom / 80% auto;
  opacity: 0.5; pointer-events: none;
}
.booking-side > * { position: relative; }
.booking-side h3 { font-size: 28px; font-weight: 300; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 20px; max-width: 14ch; }
.booking-side p { color: rgba(247,247,244,0.72); margin: 0 0 32px; max-width: 36ch; line-height: 1.55; }
.booking-side ul { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.booking-side ul li { display: flex; gap: 12px; align-items: flex-start; }
.booking-side ul li::before { content: "→"; color: var(--accent); font-family: var(--font-mono); }
.booking-side .contact-row { display: grid; grid-template-columns: auto 1fr; gap: 14px 16px; font-size: 13.5px; font-family: var(--font-mono); color: rgba(247,247,244,0.72); }
.booking-side .contact-row .k { color: rgba(247,247,244,0.45); }

.booking-form h3 { font-size: 24px; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 8px; }
.booking-form p.sub { font-size: 14px; color: var(--fg2); margin: 0 0 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 12.5px; color: var(--fg3); font-family: var(--font-mono); letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 14.5px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg1);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--fg1);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.field.invalid input, .field.invalid textarea, .field.invalid select {
  border-color: #c0392b;
  background: #fff5f3;
}
.field .err { font-size: 11.5px; color: #c0392b; display: none; }
.field.invalid .err { display: block; }

.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: all var(--dur-fast) var(--ease-out);
  user-select: none;
}
.choice input { display: none; }
.choice:hover { border-color: var(--border-strong); }
.choice.selected { background: #000; color: #f7f7f4; border-color: #000; }

.booking-submit {
  display: flex; justify-content: space-between; align-items: center; margin-top: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.booking-submit .meta { font-size: 12px; color: var(--fg3); font-family: var(--font-mono); }
.booking-submitted {
  display: none;
  padding: 40px; text-align: center;
  flex-direction: column; gap: 16px; align-items: center; justify-content: center;
}
.booking-submitted.show { display: flex; }
.booking-submitted .ok {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent); color: #000;
  display: grid; place-items: center;
  font-size: 24px;
}

/* =============================================================
   CTA big
   ============================================================= */
.cta-band {
  background: #000; color: #f7f7f4;
  padding: 140px 40px;
  position: relative; overflow: hidden;
}
.cta-band .pat {
  position: absolute; right: -40px; top: -40px; width: 36%; height: 55%;
  background: url('assets/pattern/pattern_fragment_white.png') no-repeat right top / contain;
  opacity: calc(0.42 * var(--pattern-opacity));
  pointer-events: none;
}
.cta-band .inner {
  max-width: var(--container); margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: end;
}
.cta-band h2 {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.02;
  margin: 0; max-width: 16ch; text-wrap: balance;
}
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; position: relative; z-index: 2; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #0a0a0a; color: rgba(247,247,244,0.7);
  padding: 80px 40px 32px; font-size: 13.5px;
}
.footer-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(247,247,244,0.1); }
.footer-top img.mark { height: 22px; margin-bottom: 24px; }
.footer-top p { color: rgba(247,247,244,0.6); max-width: 34ch; margin: 0 0 24px; line-height: 1.55; }
.footer-top h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,247,244,0.45); margin: 0 0 18px; font-weight: 500; }
.footer-top ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-top ul a { color: rgba(247,247,244,0.78); }
.footer-top ul a:hover { opacity: 1; color: #f7f7f4; }
.footer-bot { max-width: var(--container); margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(247,247,244,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bot .status { display: inline-flex; align-items: center; gap: 8px; }
.footer-bot .status .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 0 rgba(65,187,203,0.6); animation: pulse 2.4s infinite; }

/* =============================================================
   PAGE HEADER (subpages)
   ============================================================= */
.page-head {
  padding: 100px 40px 40px;
  position: relative;
  overflow: hidden;
}
.page-head .inner { max-width: var(--container); margin: 0 auto; }
.page-head h1 {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300; letter-spacing: -0.025em;
  line-height: 1.02; margin: 0 0 24px; max-width: 18ch;
  text-wrap: balance;
}
.page-head p.lead {
  font-size: 20px; color: var(--fg2);
  max-width: 60ch; margin: 0; line-height: 1.5;
}
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--fg3); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.crumbs a { color: var(--fg3); }
.crumbs a:hover { color: var(--fg1); opacity: 1; }
.crumbs .sep { opacity: 0.4; }

/* =============================================================
   TWEAKS panel
   ============================================================= */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  z-index: 100;
  font-size: 13px;
  display: none;
  animation: panel-in 220ms var(--ease-out);
}
.tweaks-panel.show { display: block; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.tweaks-panel h5 {
  font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg3);
  margin: 0 0 16px; font-weight: 500;
  display: flex; justify-content: space-between;
}
.tweaks-panel h5 .close { cursor: pointer; font-family: inherit; }
.tweak-group { border-top: 1px solid var(--border); padding: 14px 0 12px; }
.tweak-group:first-of-type { border-top: 0; padding-top: 0; }
.tweak-group .name { font-size: 12px; color: var(--fg3); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: baseline; }
.tweak-group .val { font-family: var(--font-mono); color: var(--fg1); font-size: 11.5px; }
.tweak-opts { display: flex; gap: 6px; }
.tweak-opt {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font: inherit; font-size: 12px;
  text-align: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.tweak-opt:hover { border-color: var(--border-strong); }
.tweak-opt.on { background: #000; color: #f7f7f4; border-color: #000; }
.tweak-slider { width: 100%; }

/* =============================================================
   ICP Hub — compact flagship callout
   ============================================================= */
.icp {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
}
.icp-body { padding: 44px; display: flex; flex-direction: column; gap: 20px; }
.icp-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg3); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 999px; width: fit-content;
}
.icp-tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.icp-body h3 { font-size: clamp(28px, 3vw, 40px); font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; margin: 0; max-width: 18ch; }
.icp-body p.lead { font-size: 16px; color: var(--fg2); line-height: 1.55; margin: 0; max-width: 50ch; }
.icp-feats { list-style: none; margin: 0; padding: 8px 0 0; display: grid; gap: 10px; font-size: 14px; color: var(--fg2); }
.icp-feats li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px solid var(--border); }
.icp-feats li::before { content: attr(data-n); font-family: var(--font-mono); font-size: 11px; color: var(--fg4); flex: 0 0 32px; padding-top: 2px; }
.icp-actions { display: flex; gap: 10px; margin-top: 8px; }
.icp-visual {
  background: #000; color: #f7f7f4;
  padding: 44px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 460px;
}
.icp-visual::before {
  content: ""; position: absolute; inset: 0;
  background: url('assets/pattern/pattern_beige_outline_on_black.png') right center / 380px auto no-repeat;
  opacity: 0.25;
}
.icp-visual > * { position: relative; }
.icp-visual .big { font-size: clamp(44px, 5vw, 68px); font-weight: 300; letter-spacing: -0.02em; line-height: 1; margin: 0; }
.icp-visual .sub { color: rgba(247,247,244,0.55); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; margin: 12px 0 0; text-transform: uppercase; }
.icp-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border-on-dark); padding-top: 20px; }
.icp-pricing div { padding: 4px 12px 0 0; border-right: 1px solid var(--border-on-dark); }
.icp-pricing div:last-child { border-right: 0; padding-left: 16px; padding-right: 0; }
.icp-pricing .t { font-family: var(--font-mono); font-size: 11px; color: rgba(247,247,244,0.5); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 8px; }
.icp-pricing .p { font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.icp-pricing .p .s { font-size: 12px; color: rgba(247,247,244,0.5); font-family: var(--font-mono); margin-left: 4px; }

/* =============================================================
   Testimonials grid (real quotes)
   ============================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.testimonial {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 340px;
}
.testimonial .mark {
  font-size: 48px; font-weight: 300; line-height: 0.6;
  color: var(--accent); height: 24px;
}
.testimonial blockquote {
  font-size: 16px; font-weight: 400; line-height: 1.55;
  margin: 0; color: var(--fg1); flex: 1; text-wrap: pretty;
}
.testimonial cite {
  font-style: normal; font-size: 13px; color: var(--fg3);
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.testimonial cite b { color: var(--fg1); font-weight: 500; font-size: 14px; }
.testimonial cite a { color: var(--fg2); text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   Media / recognition row
   ============================================================= */
.media-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.media-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  align-items: center;
  transition: all var(--dur-base) var(--ease-out);
}
.media-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.media-thumb {
  aspect-ratio: 1/1; border-radius: 8px; overflow: hidden;
  background: var(--bg-alt);
  display: grid; place-items: center;
  border: 1px solid var(--border);
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-card .eyebrow { margin: 0 0 8px; font-size: 11px; }
.media-card h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 6px; line-height: 1.25; }
.media-card p { font-size: 13.5px; color: var(--fg2); margin: 0 0 12px; line-height: 1.5; }
.media-card .arr { font-family: var(--font-mono); font-size: 12px; color: var(--fg3); }
.media-card:hover .arr { color: var(--fg1); }

/* =============================================================
   Team portraits with real photos
   ============================================================= */
.team-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 22%;
}
.team-grid.team-grid-5 { grid-template-columns: repeat(5, 1fr); }
.team-grid.team-grid-5 .team-card { min-width: 0; }
.team-grid.team-grid-5 .team-body { padding: 14px 14px 18px; }
.team-grid.team-grid-5 .team-body h4 { font-size: 15px; margin: 0 0 2px; }
.team-grid.team-grid-5 .team-body .role { font-size: 11.5px; margin: 0 0 8px; }
.team-grid.team-grid-5 .team-body .bio { font-size: 12px; line-height: 1.45; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1080px) {
  .team-grid.team-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .icp, .media-row, .testimonials { grid-template-columns: 1fr; }
  .icp-visual { border-top: 1px solid var(--border-on-dark); min-height: 320px; }
  .team-grid.team-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .media-card { grid-template-columns: 80px 1fr; padding: 20px; gap: 16px; }
  .nav { padding: 14px 20px; }
  .nav ul { display: none; }
  .hero-inner { padding: 72px 20px 96px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { min-height: 420px; }
  .section { padding: 72px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .feat-grid, .feat-grid.feat-grid-4 { grid-template-columns: 1fr; }
  .feat { border-right: 0; border-bottom: 1px solid var(--border); }
  .feat:last-child { border-bottom: 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .flow-stage { grid-template-columns: 1fr; }
  .flow-diagram { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .roi, .booking { grid-template-columns: 1fr; }
  .roi-controls, .booking-form, .booking-side { border-right: 0; padding: 32px 24px; }
  .quote-band { padding: 72px 20px; }
  .quote-band .inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 80px 20px; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .cta-band .cta-actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-head { padding: 56px 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
