/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */
:root {
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --primary-bg: #EFF6FF;
  --indigo: #4F46E5;
  --purple: #7C3AED;
  --teal: #0D9488;
  --success: #059669;
  --success-light: #10B981;
  --warning: #D97706;
  --danger: #DC2626;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #EEF2F7;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 16px -4px rgba(15,23,42,0.10), 0 2px 6px -2px rgba(15,23,42,0.06);
  --shadow-lg: 0 20px 40px -8px rgba(15,23,42,0.16), 0 8px 16px -8px rgba(15,23,42,0.08);
  --shadow-glow: 0 0 0 1px rgba(37,99,235,0.08), 0 20px 40px -12px rgba(37,99,235,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* Reveal-on-scroll utility */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }
.reveal-delay-4.is-visible { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: padding 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--text); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--indigo) 55%, var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 13px; font-family: var(--font-display);
  box-shadow: 0 6px 14px -4px rgba(37,99,235,0.45);
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--text-secondary);
  transition: color 0.2s var(--ease); position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  transition: width 0.25s var(--ease); border-radius: 2px;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: var(--radius-full);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  color: #fff; box-shadow: 0 10px 24px -8px rgba(37,99,235,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(37,99,235,0.65); }
.btn-secondary {
  background: var(--surface); color: var(--text); border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 15.5px; }

.mobile-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  flex-direction: column; gap: 16px; padding: 14px 16px;
  transform: translateY(-18px); opacity: 0; pointer-events: none;
  transition: transform 0.34s var(--ease), opacity 0.34s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
/* Header pill: logo + circular close */
.mm-header {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border-light); border-radius: var(--radius-full);
  padding: 11px 12px 11px 22px; box-shadow: var(--shadow-md);
}
.mm-header .brand img { height: 34px; }
.mm-close {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center; color: var(--text);
  box-shadow: 0 4px 10px -3px rgba(37,99,235,0.35); transition: transform 0.25s var(--ease);
}
.mm-close:hover { transform: rotate(90deg); }
.mm-close svg { width: 20px; height: 20px; }
/* Body card: links + CTA */
.mm-card {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px 24px 22px;
  display: flex; flex-direction: column;
}
.mm-card a:not(.btn) {
  font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text);
  padding: 18px 4px; transition: color 0.2s var(--ease);
}
.mm-card a:not(.btn):not(:last-of-type) { border-bottom: 1px solid var(--border-light); }
.mm-card a:not(.btn):hover { color: var(--primary); }
.mm-card .mm-cta { margin-top: 16px; padding: 16px; font-size: 16px; }
.mobile-scrim {
  display: none; position: fixed; inset: 0; z-index: 550;
  background: rgba(15,23,42,0.34); backdrop-filter: blur(5px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-scrim.open { display: block; opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; padding: 168px 0 120px; overflow: hidden;
  background: radial-gradient(ellipse 900px 600px at 15% -10%, #DCE9FF 0%, transparent 60%),
              radial-gradient(ellipse 800px 500px at 100% 0%, #EAE4FF 0%, transparent 55%),
              var(--bg);
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; }
.blob-1 { width: 460px; height: 460px; top: -160px; right: -120px; background: radial-gradient(circle, #93C5FD, transparent 70%); animation: float1 16s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; bottom: -140px; left: -100px; background: radial-gradient(circle, #C4B5FD, transparent 70%); animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }

/* Extra background texture: dot-grid + drifting glows */
.dotgrid {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, #DEE3F2 1.3px, transparent 1.3px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.glow-a { width: 520px; height: 420px; top: -80px; left: 8%; background: radial-gradient(circle, rgba(37,99,235,0.22), transparent 70%); animation: drift1 20s ease-in-out infinite; }
.glow-b { width: 460px; height: 420px; top: -40px; right: 6%; background: radial-gradient(circle, rgba(124,58,237,0.20), transparent 70%); animation: drift2 22s ease-in-out infinite; }
.glow-c { width: 400px; height: 300px; top: 260px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(13,148,136,0.14), transparent 70%); }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px, 30px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-28px, 24px); } }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 700;
  color: var(--primary-dark); box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success-light); box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5.6vw, 66px); line-height: 1.08; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--primary) 10%, var(--indigo) 50%, var(--purple) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub {
  margin: 26px auto 0; max-width: 700px; font-size: 18.5px; color: var(--text-secondary); font-weight: 450;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--text-muted); }

/* Pipeline visual */
.pipeline {
  margin: 76px auto 0; max-width: 980px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 34px 30px 30px; position: relative; z-index: 2;
}
.pipeline-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); text-align: left; margin-bottom: 22px; }
.pipeline-row { display: flex; align-items: center; }
.pnode {
  flex: 0 0 auto; width: 108px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.pnode-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md);
}
.pnode-icon svg { width: 24px; height: 24px; }
.pnode-label { font-size: 12.5px; font-weight: 700; color: var(--text); }
.pnode-sub { font-size: 11px; color: var(--text-muted); }
.ptrack { flex: 1 1 auto; height: 2px; background: var(--border); position: relative; margin: 0 -4px; top: -26px; overflow: hidden; border-radius: 2px; }
.ptrack .dotmove {
  position: absolute; top: -2.5px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 8px 2px rgba(37,99,235,0.55);
  animation: flow 3.2s linear infinite;
}
@keyframes flow { 0% { left: -3%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

.trust-strip { margin-top: 64px; text-align: center; position: relative; z-index: 2; }
.trust-strip p { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; opacity: 0.75; }
.trust-chip { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--text-secondary); }
.trust-chip svg { width: 18px; height: 18px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 108px 0; }
.section-alt { background: var(--surface); }
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.sec-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.015em; color: var(--text); }
.sec-head p { margin-top: 16px; font-size: 16.5px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════
   PROBLEM / SOLUTION
   ═══════════════════════════════════════════════════════════════ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-card { border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--border); }
.compare-card.old { background: var(--surface-alt); }
.compare-card.new { background: linear-gradient(160deg, #EEF4FF, #F5F1FF); border-color: #DCE6FF; box-shadow: var(--shadow-glow); }
.compare-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 19px; margin-bottom: 20px; }
.compare-title .tag { font-size: 11px; padding: 3px 10px; border-radius: var(--radius-full); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.old .tag { background: #FEE2E2; color: var(--danger); }
.new .tag { background: #DBEAFE; color: var(--primary-dark); }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.55; }
.compare-list li svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; }
.old .compare-list li svg { color: var(--danger); }
.new .compare-list li svg { color: var(--success); }
.new .compare-list li { color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   AUDIENCE TABS
   ═══════════════════════════════════════════════════════════════ */
.tabs-bar { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
  padding: 11px 22px; border-radius: var(--radius-full); font-weight: 700; font-size: 14.5px;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}
.tab-btn.active { background: linear-gradient(135deg, var(--primary), var(--indigo)); color: #fff; border-color: transparent; box-shadow: 0 8px 18px -6px rgba(37,99,235,0.5); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.tab-copy h3 { font-family: var(--font-display); font-size: 27px; font-weight: 800; margin-bottom: 14px; }
.tab-copy > p { color: var(--text-secondary); font-size: 15.5px; margin-bottom: 26px; }
.tab-feature { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.tab-feature .ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: var(--primary-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.tab-feature .ico svg { width: 16px; height: 16px; }
.tab-feature .txt strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.tab-feature .txt span { font-size: 13.8px; color: var(--text-secondary); }
.tab-visual {
  background: linear-gradient(160deg, var(--surface), #F3F6FE); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md);
}
.tab-visual .mini-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 10px; font-size: 13.5px; font-weight: 600; }
.tab-visual .mini-row .badge { font-size: 11.5px; font-weight: 800; padding: 3px 9px; border-radius: var(--radius-full); }
.badge-green { background: #DCFCE7; color: var(--success); }
.badge-blue { background: #DBEAFE; color: var(--primary-dark); }
.badge-purple { background: #EDE9FE; color: var(--purple); }
.badge-amber { background: #FEF3C7; color: var(--warning); }

/* ═══════════════════════════════════════════════════════════════
   CAPABILITIES GRID
   ═══════════════════════════════════════════════════════════════ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cap-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cap-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cap-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; }
.cap-icon svg { width: 22px; height: 22px; }
.cap-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.cap-card p { font-size: 14.3px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   TRUST / SECURITY
   ═══════════════════════════════════════════════════════════════ */
.trust-section { background: linear-gradient(160deg, #0B1220, #131B33); color: #fff; border-radius: var(--radius-lg); padding: 64px 56px; }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trust-inner h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em; }
.trust-inner > div > p { color: rgba(255,255,255,0.68); font-size: 15.5px; margin-bottom: 8px; }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 18px; }
.trust-item .ico { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.trust-item .ico svg { width: 17px; height: 17px; color: #93C5FD; }
.trust-item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.trust-item span { font-size: 12.8px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   DEMO / CTA
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--indigo) 55%, var(--purple) 100%);
  border-radius: var(--radius-lg); padding: 72px 56px; color: #fff; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.08); top: -220px; right: -140px; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.cta-grid h2 { font-family: var(--font-display); font-size: 33px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-grid > div:first-child > p { color: rgba(255,255,255,0.85); font-size: 15.5px; margin-bottom: 26px; max-width: 460px; }
.cta-points { display: flex; flex-direction: column; gap: 10px; }
.cta-points li { display: flex; gap: 10px; align-items: center; font-size: 14.3px; font-weight: 600; }
.cta-points li svg { width: 18px; height: 18px; }

.demo-form { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); color: var(--text); }
.demo-form h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.demo-form p.tiny { font-size: 12.8px; color: var(--text-muted); margin-bottom: 18px; }
.form-row { margin-bottom: 13px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }
.form-row input, .form-row select {
  width: 100%; padding: 11px 13px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: 14px; font-family: inherit; transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--primary); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 11.5px; color: var(--text-muted); line-height: 1.5; margin: 6px 0 14px; }
.consent input { margin-top: 2px; flex: 0 0 auto; width: 15px; height: 15px; accent-color: var(--primary); }
.consent a { color: var(--primary); font-weight: 700; }
.form-disclaimer { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 12px; text-align: center; }
.form-disclaimer a { color: var(--primary); font-weight: 700; }
.form-success { display: none; text-align: center; padding: 26px 8px; }
.form-success.show { display: block; }
.form-success .ico { width: 54px; height: 54px; border-radius: 50%; background: #DCFCE7; color: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.form-success .ico svg { width: 26px; height: 26px; }
.form-success h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.form-success p { font-size: 13.5px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer { background: #0B1220; color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13.8px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.78); font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 auto; color: #93C5FD; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .trust-inner, .cta-grid { grid-template-columns: 1fr; }
  .trust-section, .cta-section { padding: 48px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 132px 0 80px; }
  .pipeline { padding: 24px 16px; }
  .pipeline-row { flex-wrap: wrap; gap: 20px 0; justify-content: center; }
  .ptrack { display: none; }
  .pnode { width: 30%; }
  .cap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-section::before { display: none; }
  .trust-list { grid-template-columns: 1fr; }
}
