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

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --ink:       #0E0F11;
  --ink-2:     #16181C;
  --ink-3:     #1E2028;
  --teal:      #00D4AA;
  --teal-dim:  #00A688;
  --teal-glow: rgba(0,212,170,0.15);
  --white:     #FFFFFF;
  --off:       #F4F5F0;
  --mist:      #8B8F99;
  --border:    rgba(255,255,255,0.07);
  --border-l:  #E2E4EB;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --nav-h: 68px;
  --max:   1240px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─────────────────────────────────────────
   UTILS
───────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }

.label {
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.label::before {
  content: '';
  display: inline-block; width: 24px; height: 2px;
  background: var(--teal); flex-shrink: 0;
}

.h1 {
  font-family: var(--font-head);
  font-weight: 800; line-height: 0.92;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h2 {
  font-family: var(--font-head);
  font-weight: 800; line-height: 0.95;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h3 {
  font-family: var(--font-head);
  font-weight: 700; line-height: 1.1;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  text-transform: uppercase; letter-spacing: 0.01em;
}

.body-lg { font-size: 1.15rem; line-height: 1.65; font-weight: 300; color: var(--mist); }
.body-md { font-size: 0.95rem; line-height: 1.7; color: var(--mist); }
.teal { color: var(--teal); }
.white { color: var(--white); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap; border: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-teal { background: var(--teal); color: var(--ink); }
.btn-teal:hover { background: #00f0c2; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,212,170,0.3); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(14,15,17,0.2); }
.btn-ghost-dark:hover { border-color: var(--teal-dim); color: var(--teal-dim); }
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
  background: rgba(0,212,170,0.1); color: var(--teal);
  border: 1px solid rgba(0,212,170,0.2);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,15,17,0.96);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}
.nav-logo-img {
  display: block;
  height: 36px;
  width: auto;
}
.footer-logo-img {
  display: block;
  height: 28px;
  width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-links a {
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--teal); transition: right 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: white; transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--ink-2); z-index: 199;
  flex-direction: column; padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6); padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { margin-top: 32px; width: 100%; justify-content: center; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--ink);
}

/* Animated grid background */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Teal orb */
.hero-orb {
  position: absolute; top: 10%; right: 5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.12) 0%, transparent 65%);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 1;
  padding: 80px 0 96px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--teal); }
.hero-eyebrow-text {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
}

.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  color: transparent;
}
.hero-title .filled { color: var(--white); }
.hero-title .accent { color: var(--teal); }

.hero-bottom {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-desc { max-width: 480px; }
.hero-desc p { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 12px; }

.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
}
.hero-stat {
  padding: 28px 48px 28px 0;
  border-right: 1px solid var(--border);
  margin-right: 48px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1;
  color: var(--white); letter-spacing: -0.02em;
}
.hero-stat-num span { color: var(--teal); }
.hero-stat-label {
  font-size: 0.78rem; color: var(--mist);
  margin-top: 4px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   TICKER / ACQUIRER STRIP
───────────────────────────────────────── */
.ticker {
  background: var(--teal);
  overflow: hidden; padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker 22s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: 0.4; }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how { background: var(--ink-2); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 72px;
  border: 1px solid var(--border);
}
.how-step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--ink-3); }
.how-step-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--teal); margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
}
.how-step-num::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0.3;
}
.how-step-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 14px;
}
.how-step-body { font-size: 0.88rem; color: var(--mist); line-height: 1.65; }
.how-step-arrow {
  position: absolute; right: 20px; bottom: 32px;
  color: rgba(255,255,255,0.12); transition: color 0.3s;
}
.how-step:hover .how-step-arrow { color: var(--teal); }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services { background: var(--ink); }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--ink-2);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--ink-3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.wide { grid-column: span 2; }

.service-card-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--teal);
  margin-bottom: 24px; opacity: 0.7;
}
.service-card-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  color: var(--teal); opacity: 0.85;
}
.service-card-icon svg { width: 100%; height: 100%; }
.service-card-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 12px;
}
.service-card-body { font-size: 0.875rem; color: var(--mist); line-height: 1.65; margin-bottom: 20px; }
.service-card-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
}
.service-feature-tag {
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card-bg-num {
  position: absolute; right: 24px; bottom: 16px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 5rem; line-height: 1; color: rgba(255,255,255,0.02);
  pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
}

/* ─────────────────────────────────────────
   IC++ EXPLAINER
───────────────────────────────────────── */
.icpp { background: var(--teal); color: var(--ink); padding: 96px 0; }
.icpp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.icpp .h2 { color: var(--ink); margin-bottom: 20px; }
.icpp .body-lg { color: rgba(14,15,17,0.65); }
.icpp-label { color: rgba(14,15,17,0.5); }
.icpp-label::before { background: var(--ink); opacity: 0.3; }
.icpp-table {
  background: rgba(14,15,17,0.08);
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(14,15,17,0.1);
}
.icpp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(14,15,17,0.08);
  font-size: 0.9rem;
}
.icpp-row:last-child { border-bottom: none; background: rgba(14,15,17,0.12); }
.icpp-row-label { font-weight: 500; color: rgba(14,15,17,0.7); }
.icpp-row-val { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.icpp-row.total .icpp-row-label { font-weight: 700; color: var(--ink); font-size: 1rem; }
.icpp-note { font-size: 0.78rem; margin-top: 12px; color: rgba(14,15,17,0.4); }
.icpp-actions { margin-top: 36px; display: flex; gap: 12px; }
.btn-ink { background: var(--ink); color: var(--teal); }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   WHY US — COMPARISON
───────────────────────────────────────── */
.why { background: var(--ink-2); }
.why-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; }
.comparison-table {
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  margin-top: 48px;
}
.comparison-head {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink-3);
  border-bottom: 1px solid var(--border);
}
.comp-head-cell {
  padding: 14px 20px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.comp-head-cell.us { color: var(--teal); }
.comp-head-cell.them { color: var(--mist); }
.comparison-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(255,255,255,0.02); }
.comp-cell {
  padding: 16px 20px; font-size: 0.875rem;
  display: flex; align-items: center; gap: 8px;
}
.comp-cell.feature { color: var(--mist); font-weight: 400; }
.comp-cell.us { color: var(--white); font-weight: 500; }
.comp-cell.them { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.comp-tick { color: var(--teal); font-size: 1rem; }
.comp-cross { color: rgba(255,255,255,0.15); }

.why-aside { padding-top: 8px; }
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.why-point { display: flex; gap: 18px; }
.why-point-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
  line-height: 1; color: var(--teal); opacity: 0.3; flex-shrink: 0;
  width: 44px;
}
.why-point-title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 6px;
}
.why-point-body { font-size: 0.875rem; color: var(--mist); line-height: 1.6; }

/* ─────────────────────────────────────────
   SECTORS
───────────────────────────────────────── */
.sectors { background: var(--ink); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.sector-card {
  background: var(--ink-2); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.sector-card:hover { background: var(--ink-3); }
.sector-icon {
  font-size: 2.2rem; margin-bottom: 20px; display: block;
  filter: grayscale(0.4);
  transition: filter 0.3s, transform 0.3s;
}
.sector-card:hover .sector-icon { filter: none; transform: scale(1.1); }
.sector-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 10px;
}
.sector-body { font-size: 0.85rem; color: var(--mist); line-height: 1.6; }
.sector-arrow {
  position: absolute; right: 20px; bottom: 20px;
  color: rgba(255,255,255,0.08); transition: color 0.3s, transform 0.3s;
}
.sector-card:hover .sector-arrow { color: var(--teal); transform: translate(4px, -4px); }

/* ─────────────────────────────────────────
   ACQUIRER PANEL
───────────────────────────────────────── */
.panel { background: var(--ink-2); }
.panel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.panel-card {
  background: var(--ink-3); padding: 32px;
  transition: background 0.3s;
}
.panel-card:hover { background: var(--ink-2); }
.panel-name {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 8px;
}
.panel-type {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.panel-desc { font-size: 0.85rem; color: var(--mist); line-height: 1.6; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.panel-tag {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
  background: rgba(0,212,170,0.06); color: rgba(0,212,170,0.6);
  border: 1px solid rgba(0,212,170,0.1);
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  padding: 120px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(6rem, 16vw, 16rem);
  text-transform: uppercase; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 0.95; margin-bottom: 24px;
}
.cta-body { font-size: 1.1rem; font-weight: 300; color: var(--mist); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { background: var(--ink-2); }
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; }

.contact-info { padding-top: 8px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.contact-item { display: flex; gap: 16px; }
.contact-item-icon {
  width: 42px; height: 42px; border-radius: 4px;
  background: var(--ink-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 4px;
}
.contact-item-val { font-size: 0.9rem; color: var(--white); font-weight: 400; }

.contact-form-wrap {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 6px; padding: 48px;
}
.form-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 6px;
}
.form-sub { font-size: 0.875rem; color: var(--mist); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-label {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
}
.form-control {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: rgba(255,255,255,0.18); }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,170,0.08); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--ink-2); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; margin-top: 10px; line-height: 1.6; }
.form-note a { color: rgba(0,212,170,0.6); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-body {
  font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.3);
  line-height: 1.75; max-width: 300px; margin-top: 16px;
}
.footer-col-label {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 32px; display: flex;
  justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.76rem; color: rgba(255,255,255,0.2);
  line-height: 1.85; max-width: 680px;
}
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }
.footer-regs { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; }
.footer-reg {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  border: 1px solid var(--border); color: rgba(255,255,255,0.2);
}

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  background: var(--ink); padding: 148px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}
.page-hero-orb {
  position: absolute; bottom: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 0.92; color: var(--white); margin-bottom: 20px;
}
.page-hero-body { font-size: 1.1rem; font-weight: 300; color: var(--mist); max-width: 520px; }

/* Legal pages */
.legal-page { background: var(--off); color: var(--ink); padding: 72px 0; }
.legal-wrap { max-width: 780px; }
.legal-meta-bar {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 0.82rem; padding: 16px 20px;
  background: white; border: 1px solid var(--border-l);
  border-radius: 4px; margin-bottom: 48px; color: #666;
}
.legal-meta-bar strong { color: var(--ink); }
.legal-page h2 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); margin: 48px 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--teal-dim);
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page p { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 14px; }
.legal-page ul { margin: 14px 0 14px 20px; }
.legal-page ul li { font-size: 0.92rem; color: #444; line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.85rem; }
.legal-page table th { background: var(--ink); color: white; padding: 10px 14px; text-align: left; font-family: var(--font-head); font-weight: 600; }
.legal-page table td { padding: 10px 14px; border-bottom: 1px solid var(--border-l); color: #555; }
.legal-page table tr:nth-child(even) td { background: #f9f9f9; }
.legal-page a { color: var(--teal-dim); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(3rem, 8vw, 5rem); }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }
  .icpp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .panel-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 1.8rem; }
}
