*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #050C1A;
  --navy-2: #091428;
  --navy-3: #0D1F3C;
  --navy-4: #122748;
  --slate: #1E3050;
  --blue: #1A6EF7;
  --blue-light: #3B8BFF;
  --blue-glow: rgba(26,110,247,0.18);
  --teal: #00C7A3;
  --teal-dim: rgba(0,199,163,0.12);
  --text-primary: #EDF2FF;
  --text-secondary: #8BA3C4;
  --text-tertiary: #4F6A8A;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --font-display: 'Syne', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,12,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Radial glow */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse, rgba(26,110,247,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,110,247,0.12);
  border: 1px solid rgba(26,110,247,0.3);
  color: #7BB3FF;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,199,163,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,199,163,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(26,110,247,0.35);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,110,247,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-right: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-item:last-child { border-right: none; }
.trust-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-green { background: var(--teal); }
.dot-blue { background: var(--blue-light); }

/* ─── SECTION BASE ─── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 300;
}

/* ─── PAIN SECTION ─── */
.pain-section { background: var(--navy-2); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pain-card {
  background: var(--navy-2);
  padding: 40px 32px;
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,110,247,0.1);
  border: 1px solid rgba(26,110,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-icon svg { width: 22px; height: 22px; stroke: var(--blue-light); fill: none; stroke-width: 1.5; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.pain-arrow {
  margin-top: 20px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  font-family: var(--font-mono);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--navy);
  padding: 40px 36px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--navy-3); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.service-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.service-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-light);
  letter-spacing: 0.05em;
}

/* ─── VERTICALS ─── */
.verticals { background: var(--navy-2); }
.vertical-tabs {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-3);
}
.vtab-btn {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vtab-btn:last-child { border-right: none; }
.vtab-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.vtab-btn.active {
  color: var(--text-primary);
  background: var(--navy);
  border-bottom: 2px solid var(--blue);
}
.vtab-icon { font-size: 18px; }
.vertical-content { margin-top: 2px; }
.vertical-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.vertical-panel.active { display: grid; }
.vpanel-left {
  background: var(--navy);
  padding: 48px 40px;
}
.vpanel-right {
  background: var(--navy-3);
  padding: 48px 40px;
}
.vpanel-left h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.vpanel-left p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; }
.usecase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.usecase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.usecase-list li .uc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(0,199,163,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.usecase-list li .uc-check::after {
  content: '';
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg) translateY(-1px);
}
.vpanel-right h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.stat-box .label { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }
.compliance-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cbadge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(26,110,247,0.1);
  border: 1px solid rgba(26,110,247,0.25);
  color: #7BB3FF;
}

/* ─── HOW IT WORKS ─── */
.process { background: var(--navy); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.process-step {
  background: var(--navy);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-3);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.5; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.step-time {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.05em;
}

/* ─── PRICING ─── */
.pricing { background: var(--navy-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: start;
}
.price-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: var(--border-strong); }
.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  vertical-align: bottom;
  letter-spacing: 0;
}
.plan-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.plan-features li svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; fill: none; stroke-width: 2; }
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-plan-outline {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
}
.btn-plan-outline:hover { background: rgba(255,255,255,0.05); }
.btn-plan-fill {
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(26,110,247,0.3);
}
.btn-plan-fill:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ─── TRUST ─── */
.trust { background: var(--navy); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}
.stat-cell {
  background: var(--navy-2);
  padding: 36px 28px;
  text-align: center;
}
.stat-cell .big {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-cell .big span { color: var(--blue-light); }
.stat-cell .lbl { font-size: 13px; color: var(--text-secondary); }

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.testi-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.testi-stars { color: #F4C75A; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-4);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-display);
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.testi-role { font-size: 12px; color: var(--text-tertiary); }

/* ─── FAQ ─── */
.faq { background: var(--navy-2); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}
.faq-q .faq-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-3);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-q .faq-arrow svg { width: 12px; height: 12px; stroke: var(--text-secondary); fill: none; stroke-width: 2; transition: transform 0.25s; }
.faq-item.open .faq-q .faq-arrow { background: var(--blue); }
.faq-item.open .faq-q .faq-arrow svg { stroke: #fff; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-a-inner { padding: 0 0 22px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ─── CTA FINAL ─── */
.final-cta {
  background: var(--navy);
  text-align: center;
}
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(26,110,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.cta-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: var(--text-tertiary); }
.cta-form input:focus { border-color: var(--blue); }
.cta-note { font-size: 12px; color: var(--text-tertiary); margin-top: 14px; position: relative; font-family: var(--font-mono); }

/* ─── CTA SUCCESS & LOADING STATES ─── */
.cta-form-container {
  min-height: 80px;
  position: relative;
  margin-top: 24px;
}
.cta-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(26,110,247,0.1);
  border-top-color: var(--blue-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-status-text {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
}

.cta-success-card {
  background: var(--navy-3);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--blue-glow);
  text-align: center;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.success-icon-container {
  width: 56px;
  height: 56px;
  background: var(--teal-dim);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 199, 163, 0.2);
}
.success-check-svg {
  width: 28px;
  height: 28px;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s ease-out 0.2s forwards;
}
.cta-success-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.success-message {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}
.highlight-email {
  color: var(--text-primary);
  border-bottom: 1px dashed var(--blue-light);
  padding-bottom: 1px;
}

/* Email Mockup Inside Success Card */
.email-mockup {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}
.email-mockup-header {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.email-mockup-header span strong {
  color: var(--text-secondary);
}
.email-mockup-body {
  padding: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}
.email-mockup-body p {
  margin-bottom: 12px;
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
}
.email-mockup-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(26,110,247,0.25);
}
.email-mockup-btn:hover {
  background: var(--blue-light);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--blue-light); }
.footer-tagline { font-size: 13px; color: var(--text-tertiary); margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: var(--text-secondary); line-height: 1.9; }
.footer-contact a { color: var(--text-secondary); text-decoration: none; }
.footer-contact a:hover { color: var(--text-primary); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 60px; }
  .section-inner { padding: 64px 20px; }
  .pain-grid, .services-grid, .process-steps, .pricing-grid, .stats-row, .testimonial-grid { grid-template-columns: 1fr; }
  .vertical-panel.active { grid-template-columns: 1fr; }
  .vertical-tabs { flex-direction: column; }
  .vtab-btn { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-form { flex-direction: column; }
  .trust-bar { border-radius: 10px; }
  .trust-item { padding: 12px 16px; font-size: 11px; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── INTEGRATIONS LOGO MARQUEE ─── */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem 0 2rem 0;
  pointer-events: none;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
}
.marquee-track.left {
  animation: scroll-left-anim 18s linear infinite;
}
.marquee-track.right {
  animation: scroll-right-anim 18s linear infinite;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--navy-2);
  border: 1px solid var(--border);
  padding: 0.65rem 1.35rem;
  border-radius: 2rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand-badge svg {
  width: 18px;
  height: 18px;
}
@keyframes scroll-left-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}
@keyframes scroll-right-anim {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(0); }
}


/* ─── POLICY/LEGAL CARD LAYOUT ─── */
.policy-container {
  max-width: 800px;
  margin: 120px auto 80px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.policy-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}
.policy-card h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}
.policy-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}
.policy-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}
.policy-content li {
  margin-bottom: 8px;
}
.policy-content a {
  color: var(--blue-light);
  text-decoration: none;
}
.policy-content a:hover {
  text-decoration: underline;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: transform 0.2s;
}
.back-link:hover {
  transform: translateX(-4px);
}
