/* ══════════════════════════════════════════════════════
   mgap — Website v2
   Marketing & AI für die Immobilienwirtschaft
══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Tokens ── */
:root {
  --lime:       #B8FB3C;
  --lime-dk:    #8FCC1A;
  --lime-pale:  #F1FFD6;
  --lime-glow:  rgba(184,251,60,0.22);
  --lime-faint: rgba(184,251,60,0.06);
  --navy:       #001F54;
  --navy-mid:   #002D7A;
  --navy-dk:    #000D2A;
  --bg:         #050C1A;
  --bg-card:    #080F1E;
  --bg-card-2:  #0A1428;
  --arctic:     #EBF1FF;
  --arctic-dim: rgba(235,241,255,0.60);
  --mid:        #7A8BAD;
  --soft:       #3D4E6B;
  --white:      #FFFFFF;
  --rule:       rgba(184,251,60,0.14);
  --rule-dim:   rgba(235,241,255,0.07);
  --nav-h:      60px;
  --page-w:     1160px;
  --r:          3px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--arctic);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ── Global ambient layer ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 220px 220px;
  mix-blend-mode: overlay;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 92% 5%,  rgba(0,29,84,0.6) 0%,  transparent 60%),
    radial-gradient(ellipse 35% 30% at 4%  96%,  rgba(0,45,122,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 25% 20% at 50% 50%,  rgba(184,251,60,0.02) 0%, transparent 60%);
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  background: rgba(5,12,26,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule-dim);
  z-index: 100;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.nav--visible { transform: translateY(0); }

.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 28px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--arctic-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lime); }

.nav-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  background: transparent;
  color: var(--lime) !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(184,251,60,0.4);
  border-radius: var(--r);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(184,251,60,0.08);
  border-color: var(--lime);
  box-shadow: 0 0 16px rgba(184,251,60,0.15);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--arctic);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(5,12,26,0.98);
  backdrop-filter: blur(20px);
  padding: 28px 40px 36px;
  z-index: 99;
  flex-direction: column; gap: 20px;
  border-bottom: 1px solid var(--rule-dim);
}
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--arctic-dim);
  letter-spacing: 0.03em;
}
.nav-mobile a:hover { color: var(--lime); }
.nav-mobile .nav-cta { align-self: flex-start; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: calc(var(--nav-h) + 100px) 40px 120px;
}

/* Dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,251,60,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0;
  mask-image:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(0,0,0,0.5) 0%, transparent 65%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(0,0,0,0.5) 0%, transparent 65%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  pointer-events: none; z-index: 1;
}

/* Subtle depth vignette */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 95% 8%, rgba(0,29,84,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 5% 90%, rgba(184,251,60,0.02) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}

/* Hero WebGL canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  display: block;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--page-w);
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  height: clamp(32px, 4vw, 56px);
  width: auto;
  margin-bottom: 44px;
  filter: drop-shadow(0 0 24px rgba(184,251,60,0.35));
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--lime);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--arctic);
  margin-bottom: 32px;
  max-width: 860px;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--arctic-dim);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--lime);
  color: var(--navy-dk);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.2s, box-shadow 0.25s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--lime-dk);
  box-shadow: 0 0 32px rgba(184,251,60,0.35), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  color: var(--arctic-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--rule-dim);
  border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(235,241,255,0.2);
  color: var(--arctic);
}

/* ══════════════════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════════════════ */
.ticker {
  position: relative; z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--rule-dim);
  border-bottom: 1px solid var(--rule-dim);
  padding: 14px 0;
  background: rgba(184,251,60,0.02);
}
.ticker-track {
  display: flex; align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-sep {
  color: var(--lime);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   SHARED SECTION LAYOUT
══════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 104px 40px;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--lime);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--arctic);
  margin-bottom: 56px;
  max-width: 620px;
}

/* ══════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════ */
.problem {
  border-top: 1px solid var(--rule-dim);
}
.problem-list {
  display: flex;
  flex-direction: column;
}
.problem-row {
  display: grid;
  grid-template-columns: 68px 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--rule-dim);
  position: relative;
  cursor: default;
}
.problem-row:first-child { border-top: none; }
.problem-row:last-child { border-bottom: 1px solid var(--rule-dim); }
.problem-row::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--lime) 0%, transparent 80%);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.problem-row:hover::after { width: 100%; }

.problem-row-icon {
  display: flex;
  align-items: center; justify-content: center;
  width: 68px; height: 68px;
  color: var(--lime);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.problem-row:hover .problem-row-icon { opacity: 1; }
.problem-row-num { display: none; }
.problem-row-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--arctic);
  line-height: 1.15;
}
.problem-row-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════
   SOLUTION SECTION
══════════════════════════════════════════════════════ */
.solution { border-top: 1px solid var(--rule-dim); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--rule-dim);
  border-radius: var(--r);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
/* Top lime accent */
.solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--lime);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.solution-card:hover::before { width: 100%; }

/* Ghost number */
.solution-card::after {
  content: attr(data-num);
  position: absolute;
  right: -12px; bottom: -24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 110px; font-weight: 700;
  line-height: 1;
  color: rgba(184,251,60,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.solution-card:hover::after { color: rgba(184,251,60,0.065); }

.solution-card:hover {
  border-color: rgba(184,251,60,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,251,60,0.06);
  transform: translateY(-3px);
}

.solution-nr {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  opacity: 0.8;
}
.solution-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--arctic);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative; z-index: 1;
}
.solution-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════
   KPI STRIP
══════════════════════════════════════════════════════ */
.kpi-strip {
  position: relative;
  background: var(--lime);
  overflow: hidden;
}
/* Corner accent */
.kpi-strip::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(0,13,42,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.kpi-strip::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -20px;
  width: 160px; height: 160px;
  background: rgba(0,13,42,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.kpi-strip .section-inner {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.kpi-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 40px;
}
.kpi-item + .kpi-item {
  border-left: 1px solid rgba(0,13,42,0.15);
}
.kpi-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  color: var(--navy-dk);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.kpi-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(0,13,42,0.6);
  max-width: 140px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   CTA / KONTAKT
══════════════════════════════════════════════════════ */
.cta-section { border-top: 1px solid var(--rule-dim); }
.cta-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}

.cta-left .section-title { margin-bottom: 20px; }

.cta-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-proof {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--lime);
  padding-left: 14px;
  border-left: 2px solid var(--lime);
  line-height: 1.5;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--rule-dim);
  border-top: 2px solid var(--lime);
  border-radius: var(--r);
  padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid);
}
.form-group input {
  background: rgba(235,241,255,0.03);
  border: 1px solid rgba(235,241,255,0.08);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--arctic);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder { color: var(--soft); }
.form-group input:focus {
  border-color: rgba(184,251,60,0.4);
  background: rgba(184,251,60,0.02);
  box-shadow: 0 0 0 3px rgba(184,251,60,0.05);
}

.form-submit {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 4px;
}
.form-submit .btn-primary {
  justify-content: center;
  padding: 16px 28px;
  font-size: 13px;
}
.form-note {
  font-size: 11px;
  color: var(--soft);
  text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--mid); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--rule-dim);
}
.footer-inner {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 20px;
}
.footer-logo { height: 16px; width: auto; }
.footer-sep {
  width: 1px; height: 14px;
  background: var(--soft);
  opacity: 0.4;
}
.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft);
}
.footer-meta {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.footer-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mid);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--lime); }

/* ══════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════ */
.legal-page {
  padding: calc(var(--nav-h) + 72px) 40px 104px;
  position: relative; z-index: 1;
}
.legal-inner { max-width: 700px; margin: 0 auto; }

.legal-inner h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--arctic);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-dim);
}
.legal-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--arctic);
  margin: 44px 0 12px;
}
.legal-inner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--arctic);
  margin: 24px 0 8px;
}
.legal-inner p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-inner a { color: var(--lime); }
.legal-inner a:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal-inner ul { list-style: none; padding: 0; margin-bottom: 12px; }
.legal-inner ul li {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  padding-left: 20px;
  position: relative;
}
.legal-inner ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--lime); opacity: 0.7;
}
.placeholder {
  background: rgba(184,251,60,0.1);
  color: var(--lime);
  padding: 1px 7px;
  border-radius: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .problem-row {
    grid-template-columns: 52px 1fr;
    gap: 20px 24px;
    padding: 32px 0;
  }
  .problem-row-desc { grid-column: 1 / -1; padding-left: 0; }
  .problem-row-icon { width: 52px; height: 52px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }

  .kpi-strip .section-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 56px 32px;
  }
  .kpi-item {
    padding: 36px 0;
    border-left: none !important;
  }
  .kpi-item + .kpi-item { border-top: 1px solid rgba(0,13,42,0.15); }

  .cta-section .section-inner { grid-template-columns: 1fr; gap: 52px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .section-inner { padding: 72px 24px; }
  .hero { padding: calc(var(--nav-h) + 72px) 24px 96px; }
  .legal-page { padding: calc(var(--nav-h) + 40px) 24px 72px; }
  .contact-form { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .solution-grid { grid-template-columns: 1fr; }
  .ticker-item { padding: 0 24px; }
}
