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

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --navy:       #0b1120;
  --navy2:      #0f172a;
  --navy3:      #141e30;
  --navy4:      #1a2642;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --blue-glow:  rgba(37,99,235,0.25);
  --cyan:       #06b6d4;
  --gold:       #f59e0b;
  --green:      #10b981;
  --white:      #ffffff;
  --off-white:  #f0f4ff;
  --text:       #cbd5e1;
  --muted:      #64748b;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);
  --font:       'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Fraunces', serif;
  --r:          10px;
  --r-lg:       18px;
  --r-xl:       24px;
  --sh:         0 4px 32px rgba(0,0,0,0.4);
  --sh-lg:      0 8px 64px rgba(0,0,0,0.5);
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-eyebrow i {
  width: 20px; height: 1px;
  background: var(--cyan);
  display: block;
}
.section-heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-heading .serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cyan);
}
.section-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.4);
  color: var(--white);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--navy);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-icon {
  width: 36px; height: 36px; padding: 0;
  border-radius: 50%; justify-content: center;
}
.btn svg, .btn .arrow { font-size: 16px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─────────────────────────────────────────
   BADGE / TAG
───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-blue { background: rgba(37,99,235,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.badge-cyan { background: rgba(6,182,212,0.12); color: var(--cyan); border: 1px solid rgba(6,182,212,0.25); }
.badge-gold { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }
.badge-green { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }
.badge-dot {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  transition: var(--transition);
  padding: 8px 0;
}
#header.scrolled {
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.logo-mark svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.logo-name {
  font-size: 17px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-name span { color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 7px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links .nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 0 80px;
  background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(37,99,235,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6,182,212,0.07) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 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: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-left {}

.hero-badge-wrap { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px; font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-label { font-size: 12px; color: var(--muted); font-weight: 400; }
.hero-industries {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-industry-tag {
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Hero Right — visual dashboard mockup */
.hero-right { position: relative; }

.hero-visual {
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--sh-lg), 0 0 80px rgba(37,99,235,0.1);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
}

.hv-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hv-title { font-size: 13px; font-weight: 600; color: var(--white); }
.hv-dots { display: flex; gap: 6px; }
.hv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hv-dot:first-child { background: #ef4444; }
.hv-dot:nth-child(2) { background: #f59e0b; }
.hv-dot:nth-child(3) { background: #10b981; }

.hv-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 20px;
}
.hv-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 14px;
  text-align: center;
}
.hv-stat-n {
  font-size: 22px; font-weight: 800;
  color: var(--white);
  font-family: var(--font);
  display: block; margin-bottom: 2px;
}
.hv-stat-l { font-size: 10px; color: var(--muted); }

.hv-leads { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.hv-lead {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.hv-lead-left { display: flex; align-items: center; gap: 10px; }
.hv-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.hv-avatar.a1 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.hv-avatar.a2 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.hv-avatar.a3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.hv-lead-name { font-size: 12px; font-weight: 600; color: var(--white); display: block; }
.hv-lead-biz { font-size: 11px; color: var(--muted); }
.hv-lead-status { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.status-hot { background: rgba(239,68,68,0.15); color: #fca5a5; }
.status-warm { background: rgba(245,158,11,0.15); color: #fcd34d; }
.status-booked { background: rgba(16,185,129,0.15); color: #6ee7b7; }

.hv-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.hv-bottom-text { font-size: 11px; color: var(--muted); }
.hv-indicator {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green); font-weight: 500;
}
.hv-indicator-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--sh);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hfc-1 {
  bottom: -20px; left: -36px;
  animation-delay: 0s;
}
.hfc-2 {
  top: -16px; right: -28px;
  animation-delay: 2s;
}
.hfc-label { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.hfc-value { font-size: 15px; font-weight: 700; color: var(--white); }
.hfc-value.up { color: var(--green); }
.hfc-value.up::before { content: '↑ '; }

/* ─────────────────────────────────────────
   SOCIAL PROOF BAR
───────────────────────────────────────── */
.proof-bar {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.proof-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 10px;
}
.proof-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.proof-text-main { font-size: 13px; font-weight: 600; color: var(--white); }
.proof-text-sub { font-size: 11px; color: var(--muted); }
.proof-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* ─────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────── */
.problem { background: var(--navy2); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-cards { display: flex; flex-direction: column; gap: 14px; }

.problem-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition);
  cursor: default;
}
.problem-card:hover {
  border-color: rgba(239,68,68,0.3);
  transform: translateX(4px);
}
.problem-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.problem-card-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.problem-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }

.problem-right {}
.problem-cta-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.08));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  margin-top: 36px;
}
.problem-cta-box h4 {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.problem-cta-box p {
  font-size: 14px; color: var(--muted);
  margin-bottom: 22px; font-weight: 300; line-height: 1.65;
}

/* ─────────────────────────────────────────
   PRODUCTS / SERVICES
───────────────────────────────────────── */
.services { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.service-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .3s;
}
.service-card:nth-child(1)::after { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.service-card:nth-child(2)::after { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.service-card:nth-child(3)::after { background: linear-gradient(90deg, #8b5cf6, var(--blue)); }
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.service-card:hover::after { opacity: 1; }

.service-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  filter: blur(60px); opacity: 0.15;
}
.service-card:nth-child(1) .service-card-glow { background: var(--blue); }
.service-card:nth-child(2) .service-card-glow { background: var(--cyan); }
.service-card:nth-child(3) .service-card-glow { background: #8b5cf6; }

.service-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  position: relative;
}
.service-card:nth-child(1) .service-icon { background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.2); }
.service-card:nth-child(2) .service-icon { background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); }
.service-card:nth-child(3) .service-icon { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); }

.service-title {
  font-size: 19px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 24px; flex: 1;
}
.service-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.service-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text);
}
.service-feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 10px; color: var(--green);
}
.service-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.service-price-from { font-size: 12px; color: var(--muted); }
.service-price-num {
  font-size: 26px; font-weight: 800;
  color: var(--white);
}
.service-price-note { font-size: 12px; color: var(--muted); }
.service-cta { display: flex; align-items: center; justify-content: space-between; }

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why { background: var(--navy2); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  transition: var(--transition);
}
.why-point:hover .why-point-icon {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.4);
  transform: scale(1.05);
}
.why-point-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.why-point-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 300; }

.why-right-content {}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.why-stat-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: var(--transition);
}
.why-stat-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
}
.why-stat-num {
  font-size: 36px; font-weight: 800;
  color: var(--white); display: block;
  margin-bottom: 4px;
  font-family: var(--font);
}
.why-stat-num .accent { color: var(--cyan); }
.why-stat-label { font-size: 13px; color: var(--muted); line-height: 1.45; }
.why-cta-inline {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.06));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r-lg);
}
.why-cta-inline p {
  font-size: 14px; color: var(--muted);
  margin-bottom: 16px; line-height: 1.65; font-weight: 300;
}

/* ─────────────────────────────────────────
   INDUSTRIES (WHO WE HELP)
───────────────────────────────────────── */
.industries { background: var(--navy); }
.industries-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.industry-emoji { font-size: 32px; display: block; margin-bottom: 12px; }
.industry-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.industry-note { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process { background: var(--navy2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--border2), transparent);
}
.process-step { padding: 0 16px; text-align: center; }
.process-step-num {
  width: 56px; height: 56px;
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 24px var(--blue-glow);
}
.process-step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials { background: var(--navy); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.testi-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.testi-quote-icon {
  font-size: 36px; color: var(--blue);
  opacity: 0.4; line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testi-text {
  font-size: 14px; color: var(--text);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.ta2 { background: linear-gradient(135deg, #8b5cf6, #3b82f6); }
.ta3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--muted); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testi-star { color: var(--gold); font-size: 14px; }

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 680px; margin: 0 auto;
  padding: 80px 0;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; letter-spacing: -1px;
}
.cta-inner p {
  font-size: 17px; color: var(--muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-reassure {
  margin-top: 24px;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 20px; justify-content: center;
}
.cta-reassure span { display: flex; align-items: center; gap: 5px; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-hero {
  padding: 120px 0 60px;
  background: var(--navy);
  text-align: center;
}
.contact-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.contact-hero p { font-size: 17px; color: var(--muted); font-weight: 300; max-width: 500px; margin: 0 auto; }

.contact-body { background: var(--navy2); padding: 72px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: start;
}

.contact-info h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.contact-info > p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 36px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-detail-value { font-size: 14px; color: var(--text); font-weight: 500; }

.contact-industries-note {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.contact-industries-note h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.contact-ind-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.contact-ind-tag {
  font-size: 11px; color: var(--muted);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 10px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.contact-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--muted); font-weight: 300; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 14px; color: var(--white);
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group select { cursor: pointer; color: var(--muted); }
.form-group select option { background: var(--navy3); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: var(--muted);
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-hero {
  padding: 120px 0 60px;
  background: var(--navy);
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-story { background: var(--navy2); padding: 80px 0; }
.about-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-story-text h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.about-story-text p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }

.about-values { background: var(--navy); padding: 80px 0; }
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.about-value-card {
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: var(--transition);
}
.about-value-card:hover {
  border-color: rgba(37,99,235,0.3); transform: translateY(-4px);
}
.about-value-icon { font-size: 28px; margin-bottom: 14px; }
.about-value-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.about-value-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 300; }

.about-numbers { background: var(--navy2); padding: 72px 0; }
.about-numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-number-card { text-align: center; padding: 32px 20px; }
.about-number-num {
  font-size: 44px; font-weight: 800; color: var(--white);
  display: block; margin-bottom: 6px;
}
.about-number-num .accent { color: var(--cyan); }
.about-number-label { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* ─────────────────────────────────────────
   CHATBOT PLACEHOLDER
───────────────────────────────────────── */
.chatbot-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 60px; height: 60px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37,99,235,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  animation: chatPulse 3s ease-in-out infinite;
}
.chatbot-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,99,235,0.65);
}
@keyframes chatPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,99,235,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,99,235,0.8); }
}
.chatbot-btn svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; }
.chatbot-bubble {
  position: absolute; bottom: 72px; right: 0;
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: 12px 12px 0 12px;
  padding: 10px 14px;
  font-size: 12px; color: var(--white);
  white-space: nowrap;
  box-shadow: var(--sh);
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: var(--transition);
}
.chatbot-btn:hover + .chatbot-bubble,
.chatbot-wrap:hover .chatbot-bubble {
  opacity: 1; transform: translateY(0);
}
.chatbot-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 998; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-about p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted);
  transition: var(--transition);
}
.footer-social-link:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
  color: var(--blue-light);
}
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--muted); }
.footer-legal a:hover { color: var(--white); }

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

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 48px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-numbers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(11,17,32,0.98);
    padding: 16px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .proof-inner { justify-content: center; }
  .proof-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .why-stats { grid-template-columns: 1fr; }
}
