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

:root {
  --blue-50:  #E6F1FB;
  --blue-100: #B5D4F4;
  --blue-200: #85B7EB;
  --blue-400: #378ADD;
  --blue-600: #185FA5;
  --blue-800: #0C447C;
  --blue-900: #042C53;
  --blue-950: #021A35;

  --teal-200: #5DCAA5;
  --teal-600: #0F6E56;
  --teal-800: #085041;

  --red-200:  #F09595;
  --red-600:  #A32D2D;

  --amber-200: #EF9F27;
  --amber-600: #854F0B;

  --gray-50:  #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;

  --ink:       #0A0E1A;
  --ink-2:     #111827;
  --ink-3:     #1C2537;
  --ink-4:     #273044;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 40px; }

/* ── FADE IN ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.45); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 14px 30px; border-radius: 8px;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.15s ease; white-space: nowrap; letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-800); }
.btn-outline-dark {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.btn-outline-light {
  background: transparent; color: var(--gray-800);
  border: 1.5px solid var(--gray-300);
}
.btn-outline-light:hover { border-color: var(--gray-600); }
.btn-sm { font-size: 13px; padding: 10px 22px; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 22px; font-weight: 900; color: var(--gray-900);
  text-decoration: none; letter-spacing: -0.04em;
}
.nav-logo span { color: var(--blue-600); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  text-decoration: none; letter-spacing: -0.01em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gray-900); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  padding: 130px 0 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,95,165,0.22) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,110,86,0.12) 0%, transparent 70%);
  bottom: 80px; left: 5%; pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24,95,165,0.12);
  border: 1px solid rgba(24,95,165,0.28);
  color: var(--blue-200); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); }

.hero h1 {
  font-size: clamp(48px, 7vw, 75px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.045em; color: #fff;
  margin: 0 auto 32px; max-width: 900px;
}
.hero h1 em { color: var(--blue-200); font-style: normal; }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 20px;
}
.hero-text-link {
  display: block; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.38); text-decoration: none;
  margin-bottom: 52px; letter-spacing: 0.01em;
  transition: color 0.15s;
}
.hero-text-link:hover { color: rgba(255,255,255,0.65); }

/* trust line */
.hero-trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 0; margin-bottom: 0;
}
.hts-item { display: flex; align-items: center; gap: 7px; }
.hts-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(15,110,86,0.2); border: 1px solid rgba(93,202,165,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hts-check svg { width: 9px; height: 9px; }
.hts-text { font-size: 12px; color: rgba(255,255,255,0.32); font-weight: 500; }

/* hero product window */
.hero-product-wrap {
  margin-top: 40px;
  position: relative;
}
.hero-product-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none; z-index: 2;
}
.hero-product {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.hp-titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.hp-dot { width: 11px; height: 11px; border-radius: 50%; }
.hp-title { font-size: 12px; color: rgba(255,255,255,0.25); margin-left: 10px; font-weight: 500; letter-spacing: 0.01em; }

.hp-body { display: grid; grid-template-columns: 220px 1fr; }

.hp-sidebar {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.hp-sidebar-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.2);
  padding: 0 16px; margin-bottom: 6px;
}
.hp-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; font-size: 13px; color: rgba(255,255,255,0.4);
  cursor: pointer;
}
.hp-sidebar-item.active {
  background: rgba(24,95,165,0.15);
  color: var(--blue-200); border-right: 2px solid var(--blue-600);
}
.hp-sidebar-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.hp-sidebar-dot { width: 7px; height: 7px; border-radius: 50%; background: #E24B4A; margin-left: auto; }

.hp-main { padding: 20px; }
.hp-search-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-400); margin-bottom: 10px; }
.hp-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--blue-600);
  border-radius: 8px; padding: 11px 14px; margin-bottom: 16px;
}
.hp-search-bar svg { width: 14px; height: 14px; color: var(--blue-400); flex-shrink: 0; }
.hp-search-bar span { font-size: 13px; color: rgba(255,255,255,0.65); font-family: var(--mono); }

.hp-results-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-200); margin-bottom: 10px; }
.hp-clip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 11px 14px; margin-bottom: 8px;
}
.hp-clip-thumb {
  width: 52px; height: 38px; border-radius: 6px;
  background: var(--blue-900); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hp-clip-thumb svg { width: 14px; height: 14px; }
.hp-clip-info { flex: 1; }
.hp-clip-cam { font-size: 13px; font-weight: 600; color: #fff; }
.hp-clip-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.hp-clip-tag {
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; flex-shrink: 0;
}
.tag-match { background: rgba(15,110,86,0.25); color: var(--teal-200); border: 1px solid var(--teal-600); }
.tag-journey { background: rgba(24,95,165,0.2); color: var(--blue-200); border: 1px solid var(--blue-600); }

.hp-alert {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(162,45,45,0.12); border: 1px solid rgba(162,45,45,0.3);
  border-radius: 8px; padding: 11px 14px; margin-top: 12px;
}
.hp-alert-dot { width: 8px; height: 8px; border-radius: 50%; background: #E24B4A; flex-shrink: 0; margin-top: 3px; }
.hp-alert-text { font-size: 12px; color: var(--red-200); line-height: 1.5; }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar { background: var(--blue-950); padding: 48px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 40px; font-weight: 900;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item { border-right: none; }
}

/* ══════════════════════════════════════════════
   TRUST BADGES (security row)
══════════════════════════════════════════════ */
.trust-section { background: var(--gray-50); padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--gray-600);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════ */
.problem-section { padding: 112px 0 80px; }
.problem-intro { margin-bottom: 64px; }
.problem-intro h2 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 20px; max-width: 760px;
}
.problem-intro p { font-size: 17px; color: var(--gray-600); max-width: 560px; line-height: 1.7; }

.scenario-block {
  background: var(--ink); border-radius: 16px;
  padding: 48px 52px; margin-bottom: 56px;
  border-left: 4px solid var(--red-600);
  position: relative; overflow: hidden;
}
.scenario-block::before {
  content: '"';
  position: absolute; top: 0; right: 40px;
  font-size: 200px; font-weight: 900; color: rgba(255,255,255,0.03);
  line-height: 1; font-family: Georgia, serif;
}
.scenario-block p {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,0.72); position: relative;
}
.scenario-block p strong { color: #fff; font-weight: 700; }

/* outcome stats */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: transform 0.2s ease;
}
.outcome-card:hover { transform: translateY(-3px); }
.oc-prevent { border-top-color: var(--red-600); }
.oc-investigate { border-top-color: var(--blue-600); }
.oc-operate { border-top-color: var(--teal-600); }

.oc-num {
  font-size: 52px; font-weight: 900; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 10px;
}
.oc-prevent .oc-num   { color: var(--red-600); }
.oc-investigate .oc-num { color: var(--blue-600); }
.oc-operate .oc-num   { color: var(--teal-600); }

.oc-label { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.oc-sub   { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

@media (max-width: 800px) { .outcome-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   THREE PILLARS — full-width alternating rows
══════════════════════════════════════════════ */
.pillars-section { padding: 0; }

.pillar-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.pillar-row.reverse { direction: rtl; }
.pillar-row.reverse > * { direction: ltr; }

.pillar-content {
  padding: 88px 72px; display: flex;
  flex-direction: column; justify-content: center;
}
.pillar-num {
  font-size: 96px; font-weight: 900; letter-spacing: -0.06em;
  line-height: 1; margin-bottom: 28px; opacity: 0.08;
  color: currentColor;
}
.pillar-row-prevent .pillar-content { background: #fff; color: var(--gray-900); }
.pillar-row-prevent .pillar-num { color: var(--red-600); opacity: 0.12; }
.pillar-row-investigate .pillar-content { background: var(--ink); color: #fff; }
.pillar-row-investigate .pillar-num { color: var(--blue-200); opacity: 0.12; }
.pillar-row-operate .pillar-content { background: #fff; color: var(--gray-900); }
.pillar-row-operate .pillar-num { color: var(--teal-600); opacity: 0.12; }

.pillar-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.prevent-eye  { color: var(--red-600); }
.investigate-eye { color: var(--blue-400); }
.operate-eye  { color: var(--teal-200); }

.pillar-content h2 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 18px;
}
.pillar-row-investigate .pillar-content h2 { color: #fff; }
.pillar-content p {
  font-size: 16px; line-height: 1.75;
  margin-bottom: 28px; max-width: 420px;
}
.pillar-row-prevent .pillar-content p,
.pillar-row-operate .pillar-content p { color: var(--gray-600); }
.pillar-row-investigate .pillar-content p { color: rgba(255,255,255,0.55); }

.pillar-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag {
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 999px; letter-spacing: 0.01em;
}
.ptag-red    { background: #FCEBEB; color: var(--red-600); }
.ptag-blue   { background: var(--blue-50); color: var(--blue-800); }
.ptag-blue-dark { background: rgba(55,138,221,0.15); color: var(--blue-200); border: 1px solid rgba(55,138,221,0.25); }
.ptag-teal   { background: #E1F5EE; color: var(--teal-800); }

.pillar-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 48px;
}
.pillar-row-prevent .pillar-visual   { background: var(--gray-50); }
.pillar-row-investigate .pillar-visual { background: var(--ink-3); }
.pillar-row-operate .pillar-visual   { background: var(--blue-50); }

/* visual cards inside pillar visuals */
.pv-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 0; overflow: hidden;
  width: 100%; max-width: 380px;
}
.pv-card-dark {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 0; overflow: hidden;
  width: 100%; max-width: 380px;
}
.pv-header {
  padding: 14px 18px; border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: space-between;
}
.pv-header-dark {
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 8px;
}
.pv-title { font-size: 12px; font-weight: 700; color: var(--gray-700); letter-spacing: 0.01em; }
.pv-title-dark { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3); }
.pv-live {
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; background: rgba(162,45,45,0.12);
  color: var(--red-200); border: 1px solid rgba(162,45,45,0.3);
  display: flex; align-items: center; gap: 5px;
}
.pv-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #E24B4A; }
.pv-body { padding: 18px; }

.alert-feed-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 8px; margin-bottom: 8px;
}
.afi-critical { background: rgba(162,45,45,0.1); border: 1px solid rgba(162,45,45,0.25); }
.afi-warning  { background: rgba(133,79,11,0.1);  border: 1px solid rgba(133,79,11,0.25); }
.afi-safe     { background: rgba(15,110,86,0.1);  border: 1px solid rgba(15,110,86,0.25); }
.afi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.dot-red    { background: #E24B4A; }
.dot-amber  { background: var(--amber-200); }
.dot-green  { background: var(--teal-200); }
.afi-content { flex: 1; }
.afi-event { font-size: 12px; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.afi-event-light { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.afi-meta { font-size: 11px; color: var(--gray-500); }
.afi-meta-light { font-size: 11px; color: rgba(255,255,255,0.3); }
.afi-action { font-size: 11px; font-weight: 700; color: var(--blue-600); margin-left: auto; padding: 3px 9px; border-radius: 4px; background: var(--blue-50); flex-shrink: 0; }

.search-demo { }
.sd-input {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50); border: 1.5px solid var(--blue-600);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 14px;
}
.sd-input svg { width: 14px; height: 14px; color: var(--blue-600); flex-shrink: 0; }
.sd-input span { font-size: 13px; color: var(--gray-700); font-family: var(--mono); }
.sd-result-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-600); margin-bottom: 8px; }
.sd-clip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: 8px; margin-bottom: 7px; background: #fff;
}
.sd-thumb {
  width: 46px; height: 34px; border-radius: 5px;
  background: var(--blue-900); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sd-thumb svg { width: 13px; height: 13px; }
.sd-clip-title { font-size: 12px; font-weight: 600; color: var(--gray-800); }
.sd-clip-meta  { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.sd-journey {
  margin-top: 12px; padding: 10px 14px;
  background: var(--blue-50); border-radius: 8px;
  border: 1px solid var(--blue-100);
  font-size: 12px; color: var(--blue-800); font-weight: 600;
  display: flex; align-items: center; gap: 7px;
}
.sd-journey svg { width: 14px; height: 14px; color: var(--blue-600); }

.ops-monitor { }
.om-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.om-title { font-size: 12px; font-weight: 700; color: var(--gray-800); }
.om-status-ok {
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; background: #E1F5EE;
  color: var(--teal-800); border: 1px solid #9FE1CB;
}
.om-line {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: 8px; margin-bottom: 8px;
}
.om-line-name { font-size: 12px; font-weight: 600; color: var(--gray-800); flex: 1; }
.om-bar-wrap { width: 80px; height: 6px; background: var(--gray-200); border-radius: 999px; overflow: hidden; }
.om-bar { height: 100%; border-radius: 999px; }
.om-bar-ok    { background: var(--teal-200); }
.om-bar-warn  { background: var(--amber-200); }
.om-bar-bad   { background: #E24B4A; }
.om-flag {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 999px;
}
.om-flag-ok   { background: #E1F5EE; color: var(--teal-800); }
.om-flag-warn { background: #FAEEDA; color: var(--amber-600); }
.om-flag-bad  { background: #FCEBEB; color: var(--red-600); }
.om-defect {
  margin-top: 10px; padding: 10px 14px;
  background: rgba(162,45,45,0.06); border-radius: 8px;
  border: 1px solid rgba(162,45,45,0.2);
  font-size: 12px; color: var(--red-600); font-weight: 600;
  display: flex; align-items: center; gap: 7px;
}
.om-defect svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .pillar-row { grid-template-columns: 1fr; }
  .pillar-row.reverse { direction: ltr; }
  .pillar-content { padding: 56px 32px; }
  .pillar-visual { padding: 40px 32px; }
  .pillar-num { font-size: 64px; }
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section { padding: 112px 0; background: var(--ink); }
.how-section h2 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  letter-spacing: -0.035em; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.how-section .lead {
  font-size: 17px; color: rgba(255,255,255,0.45);
  margin-bottom: 72px; max-width: 500px;
}
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.how-step {
  background: var(--ink-2); padding: 44px 36px;
  position: relative;
}
.how-step-num {
  font-size: 72px; font-weight: 900;
  letter-spacing: -0.05em; color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 24px;
}
.how-step h3 { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.how-step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.how-step-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-600);
}
@media (max-width: 760px) { .how-steps { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
.industries-section { padding: 112px 0; background: #fff; }
.industries-section h2 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 16px;
}
.industries-section .lead { font-size: 17px; color: var(--gray-600); margin-bottom: 64px; }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 32px 28px; transition: all 0.2s ease;
  position: relative; overflow: hidden;
}
.ind-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.ind-card:hover { border-color: var(--blue-200); transform: translateY(-2px); }
.ind-card:hover::before { transform: scaleX(1); }

.ind-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.ind-icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.ind-priority {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--blue-600);
  margin-bottom: 6px;
}
.ind-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.ind-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.7; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .industries-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════════ */
.comparison-section { padding: 112px 0; background: var(--gray-50); }
.comparison-section h2 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 16px;
}
.comparison-section .lead { font-size: 17px; color: var(--gray-600); margin-bottom: 56px; }

.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #fff;
}
.comp-table th {
  padding: 20px 28px; font-size: 13px; font-weight: 800;
  text-align: center; border-bottom: 1px solid var(--gray-200);
  letter-spacing: -0.01em;
}
.comp-table th:first-child { text-align: left; background: var(--gray-50); width: 38%; }
.comp-table th.col-them { background: var(--gray-50); color: var(--gray-500); }
.comp-table th.col-us   { background: var(--blue-900); color: #fff; font-size: 14px; }
.comp-table td {
  padding: 16px 28px; font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
}
.comp-table td:first-child { text-align: left; font-weight: 600; color: var(--gray-800); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td.col-us { background: rgba(4,44,83,0.03); }
.comp-table td:first-child { background: #fff; }

.c-yes     { color: var(--teal-600); font-weight: 800; font-size: 17px; }
.c-no      { color: var(--gray-300); font-size: 16px; }
.c-partial { font-size: 12px; font-weight: 700; color: var(--amber-600); }

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cta-section { background: var(--blue-900); padding: 120px 0; text-align: center; }
.cta-section h2 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  letter-spacing: -0.04em; color: #fff; line-height: 1.1;
  margin-bottom: 18px;
}
.cta-section p {
  font-size: 18px; color: rgba(255,255,255,0.5);
  margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.cta-reassurances {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.cta-r {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.38); font-weight: 500;
}
.cta-r svg { width: 14px; height: 14px; color: var(--teal-200); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--ink); padding: 52px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.04em; }
.footer-logo span { color: var(--blue-400); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
