/* =========================================================
   ProzessFabrik — Sovereign Infrastructure / Blueprint
   IBM Plex Sans + IBM Plex Mono · Navy #131A26 / Accent #0EA5E9
   ========================================================= */

:root {
  --ink: #0A0E16;
  --navy: #131A26;
  --navy-soft: #1B2433;
  --navy-line: rgba(255, 255, 255, 0.08);
  --accent: #0EA5E9;
  --accent-2: #22D3EE;
  --accent-dark: #0284C7;
  --warn: #F4B740;
  --bg: #FFFFFF;
  --bg-tinted: #F4F7FA;
  --border: #E3E8EF;
  --border-strong: #CBD5E1;
  --text: #0F1722;
  --text-muted: #586273;
  --text-light: #8A94A3;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1180px;
  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 22px 50px rgba(11, 16, 24, 0.14);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--accent-2); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-line);
  padding: 13px 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
}
.nav-logo-img { display: block; height: 48px; width: auto; }
.nav.scrolled .nav-logo-img { height: 42px; }
.nav-logo-img--footer { height: 56px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 172px 0 112px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; top: -12%; right: -8%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.09) 0%, transparent 64%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 28px;
}
.hero-kicker::before { content: ""; width: 36px; height: 1px; background: var(--accent); flex: none; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 74px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero h1 .accent { color: var(--accent); display: block; font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-proof {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--accent-2);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-microcopy { font-size: 14px; color: rgba(255, 255, 255, 0.5); max-width: 520px; }

/* hero blueprint flow */
.hero-visual { position: relative; }
.flow {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: none;
}
.flow-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 18px;
}
.flow-node {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-line);
  border-radius: 9px;
  padding: 12px 15px;
}
.flow-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--accent-2); }
.flow-name { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.flow-conn { width: 1px; height: 16px; margin-left: 22px; background: linear-gradient(var(--accent), transparent); }
.flow-in { border-left: 2px solid rgba(255, 255, 255, 0.25); }
.flow-ai { border-color: rgba(14, 165, 233, 0.5); background: rgba(14, 165, 233, 0.08); }
.flow-out { border-left: 2px solid var(--accent-2); }

/* ============ TRUST BAR ============ */
.trustbar { background: var(--navy); border-bottom: 1px solid var(--navy-line); }
.trustbar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px;
  padding: 20px 24px;
}
.trust-item {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 18px;
}
.trust-item::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

/* ============ SECTIONS ============ */
.section { padding: 118px 0; scroll-margin-top: 80px; }
.section-tinted { background: var(--bg-tinted); }
.section-header { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
  color: var(--navy); margin-bottom: 18px;
}
.section-sub { font-size: 18px; color: var(--text-muted); }

/* dark section variant */
.section-dark { background: var(--ink); color: #fff; position: relative; }
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.68); }

/* ============ PAIN CARDS ============ */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: all var(--transition);
}
.pain-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-badge {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #9a6b00; background: rgba(244, 183, 64, 0.16);
  border: 1px solid rgba(244, 183, 64, 0.4);
  border-radius: 999px; padding: 4px 11px; margin-bottom: 16px;
}
.pain-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pain-text { color: var(--text-muted); font-size: 15px; line-height: 1.62; margin-bottom: 18px; }
.pain-fix {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border-strong);
  font-size: 14.5px; font-weight: 500; color: var(--navy);
}
.fix-mark { color: var(--accent); font-weight: 700; margin-right: 4px; }

/* ============ SOLUTION CARDS ============ */
.sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sol-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: all var(--transition);
}
.sol-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sol-card--feature { background: var(--navy); color: #fff; border-color: var(--navy); }
.sol-num {
  display: block; font-family: var(--font-mono); font-size: 13px;
  color: var(--accent-dark); margin-bottom: 14px;
}
.sol-card--feature .sol-num { color: var(--accent-2); }
.sol-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 9px; line-height: 1.3; }
.sol-card--feature h3 { color: #fff; }
.sol-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.sol-card--feature p { color: rgba(255, 255, 255, 0.78); }

/* ============ OPERATING MODELS ============ */
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ops-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition);
}
.ops-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ops-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 165, 233, 0.1); color: var(--accent-dark); margin-bottom: 20px;
}
.ops-icon svg { width: 26px; height: 26px; }
.ops-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ops-card p { color: var(--text-muted); font-size: 15px; }

/* ============ APPROACH STEPS ============ */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  counter-reset: step;
}
.step {
  position: relative; padding: 0 26px 0 0;
  border-top: 1px solid var(--navy-line); padding-top: 26px;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
}
.step:first-child { padding-left: 0; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent-2); }
.step h3 { font-size: 19px; font-weight: 700; color: #fff; margin: 8px 0 10px; }
.step p { font-size: 14.5px; color: rgba(255, 255, 255, 0.66); line-height: 1.6; padding-right: 8px; }

/* ============ COMPARISON ============ */
.compare {
  max-width: 920px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 16px 20px; font-size: 14.5px; }
.compare-head { background: var(--navy); }
.compare-head > div { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; }
.compare-head .compare-us { color: var(--accent-2); }
.compare-crit { font-weight: 600; color: var(--navy); }
.compare-them { color: var(--text-muted); border-left: 1px solid var(--border); }
.compare-us { color: var(--navy); font-weight: 500; border-left: 1px solid var(--border); background: rgba(14, 165, 233, 0.05); }
.compare-row:not(.compare-head) .compare-us { position: relative; }

/* ============ PILOT ============ */
.pilot {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  background: var(--navy); color: #fff;
  border-radius: 22px; padding: 52px 48px;
  position: relative; overflow: hidden;
}
.pilot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 20%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 80% at 80% 20%, #000, transparent 70%);
}
.pilot-content, .pilot-aside { position: relative; z-index: 1; }
.pilot-content h2 { color: #fff; margin-bottom: 16px; }
.pilot-text { color: rgba(255, 255, 255, 0.78); margin-bottom: 22px; }
.pilot-list { list-style: none; margin-bottom: 28px; display: grid; gap: 11px; }
.pilot-list li { position: relative; padding-left: 26px; font-size: 15px; color: rgba(255, 255, 255, 0.86); }
.pilot-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 700;
}
.pilot-aside { display: grid; gap: 12px; }
.pilot-stat {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--navy-line);
  border-radius: 11px; padding: 14px 16px;
}
.pilot-stat-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); }
.pilot-stat-v { font-size: 15.5px; font-weight: 600; }

/* ============ CASE TILES ============ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-tile {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.case-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--accent-dark); text-transform: uppercase; margin-bottom: 14px; }
.case-tile h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.case-tile p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.case-soon { margin-top: auto; font-size: 12.5px; font-weight: 600; color: var(--text-light); border-top: 1px dashed var(--border-strong); padding-top: 14px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 16.5px; font-weight: 600; color: var(--navy); text-align: left;
}
.faq-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p { padding: 0 22px 22px; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; }

/* ============ CONTACT / FORM ============ */
.contact-section { background: var(--ink); color: #fff; padding: 96px 0; scroll-margin-top: 80px; position: relative; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.01em; line-height: 1.12; color: #fff; margin-bottom: 16px; }
.contact-lead { color: rgba(255, 255, 255, 0.72); margin-bottom: 30px; }
.contact-direct { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: rgba(255, 255, 255, 0.85); font-size: 15px; transition: color var(--transition); }
.contact-item:hover { color: var(--accent-2); }
.contact-item-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--navy-line); display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 18px; height: 18px; }

.contact-person { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid var(--navy-line); }
.contact-person-meta { display: flex; flex-direction: column; gap: 3px; }
.contact-person-meta strong { color: #fff; font-size: 16px; font-weight: 600; }
.contact-person-meta span { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; }
.contact-person-link { color: var(--accent-2); font-size: 13.5px; text-decoration: none; margin-top: 4px; transition: color var(--transition); }
.contact-person-link:hover { color: #fff; }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.req { color: var(--accent-dark); }
.form-input, .form-textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-sans); font-size: 15px;
  color: var(--text); background: var(--bg-tinted);
  border: 1px solid var(--border); border-radius: 9px; transition: all var(--transition);
}
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23586273' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12); }
.form-input.error, .form-textarea.error { border-color: #DC2626; background: #FEF2F2; }
.form-textarea { min-height: 96px; resize: vertical; }
.form-error { display: none; font-size: 12.5px; color: #DC2626; margin-top: 5px; }
.form-input.error ~ .form-error, .form-textarea.error ~ .form-error { display: block; }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted); margin: 6px 0 12px; line-height: 1.5; }
.form-checkbox input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.form-checkbox a { color: var(--accent-dark); }
.form-micro { font-size: 12.5px; color: var(--text-light); margin-bottom: 18px; line-height: 1.5; }
.btn-submit { width: 100%; justify-content: center; }

.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: rgba(14, 165, 233, 0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.7); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--navy-line); }
.footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 340px; margin-bottom: 18px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-social a { font-family: var(--font-mono); font-size: 13px; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color var(--transition); }
.footer-social a:hover { color: var(--accent-2); }
.footer-col h5 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 13px; color: rgba(255, 255, 255, 0.45); }

/* ============ LEGAL PAGES ============ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 130px 24px 80px; }
.legal-page h1 { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.02em; }
.legal-page h2 { font-size: 21px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.legal-page a { color: var(--accent-dark); }
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }

/* ============ SOCIAL LEAD PAGES ============ */
.social-hero { background: var(--ink); color: #fff; padding: 140px 0 70px; position: relative; overflow: hidden; }
.social-hero .hero-grid-bg { background-size: 42px 42px; }
.social-inner { position: relative; z-index: 1; max-width: 760px; }
.social-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--accent-2); background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 22px;
}
.social-hero h1 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 20px; }
.social-hero h1 .accent { color: var(--accent-2); }
.social-lead { font-size: 19px; color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; }
.social-bullets { list-style: none; display: grid; gap: 12px; margin-bottom: 12px; }
.social-bullets li { position: relative; padding-left: 28px; font-size: 16px; color: rgba(255, 255, 255, 0.84); }
.social-bullets li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.social-magnet {
  background: var(--bg-tinted); border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: var(--radius-lg);
  padding: 28px 30px; margin: 8px 0 36px;
}
.social-magnet .eyebrow { margin-bottom: 8px; }
.social-magnet h2 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.social-magnet p { color: var(--text-muted); }
.social-back { display: inline-block; margin-top: 12px; font-family: var(--font-mono); font-size: 13px; color: var(--accent-dark); text-decoration: none; }
.social-back:hover { text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-logo-img { height: 36px; }
  .nav.scrolled .nav-logo-img { height: 32px; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 64px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(10, 14, 22, 0.97); border: 1px solid var(--navy-line);
    border-radius: 14px; padding: 14px; backdrop-filter: blur(14px);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 8px; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: block; }
  .nav-logo-img { height: 32px; }
  .nav.scrolled .nav-logo-img { height: 30px; }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .pilot { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-logo-img { height: 30px; }
  .nav-logo-img--footer { height: 38px; }

  .pain-grid, .ops-grid, .case-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-top: none; border-left: 1px solid var(--navy-line); padding: 0 0 26px 22px; }
  .step:not(:last-child)::after { top: 4px; left: -5px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-left: none !important; }
  .compare-them::before { content: "Standard-Tool: "; font-family: var(--font-mono); font-size: 11px; color: var(--text-light); }
  .compare-us::before { content: "ProzessFabrik: "; font-family: var(--font-mono); font-size: 11px; color: var(--accent-dark); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 70px 0; }
}
