@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Inter:wght@100..900&display=swap');

:root {
  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Inter', sans-serif;
  --navy-950: #1636da;
  --navy-900: #1636da;
  --navy-800: #1a3bbf;
  --blue-accent: #2563eb;
  --cyan-accent: #06b6d4;
  --cyan-light: #67e8f9;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.page-title,
.section-title,
.card-title {
  font-family: var(--font-heading);
}

body,
p,
span,
a,
button,
input,
textarea,
select,
label,
li,
.nav-link,
.footer-text {
  font-family: var(--font-body);
}

* { box-sizing: border-box; }

html {
  background-color: #1636da;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #1636da;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #1636da; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #2563eb, #06b6d4);
  border-radius: 2px;
}

a { text-decoration: none; }
.inset-0 { inset: 0; }
.max-wrap { max-width: 1280px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 992px) { .max-wrap { padding-inline: 48px; } }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #06b6d4 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%) skewX(-12deg);
}

.btn-shine:hover::after { animation: shine-sweep 0.55s ease forwards; }

@keyframes shine-sweep {
  from { transform: translateX(-100%) skewX(-12deg); }
  to { transform: translateX(250%) skewX(-12deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes scanline {
  from { top: 0%; }
  to { top: 100%; }
}

@keyframes floatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }
.float-orb { animation: floatOrb 8s ease-in-out infinite; }
.section-line { background: linear-gradient(90deg, transparent, rgba(37,99,235,0.30), rgba(6,182,212,0.20), transparent); }

.badge-on-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #1636D9;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.nav-home.hidden { transform: translateY(-80px); }

/* Logo swap on scroll */
.nav-logo-scrolled { display: none; }
.nav-home.scrolled .nav-logo-default { display: none; }
.nav-home.scrolled .nav-logo-scrolled { display: block; }
.nav-home.scrolled {
  background: #F8F9FA;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-home.scrolled .nav-link-home {
  color: rgba(15, 23, 42, 0.85);
}

.nav-home.scrolled .nav-link-home.active,
.nav-home.scrolled .nav-link-home:hover {
  color: #0f172a;
}

.nav-inner {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) { .nav-inner { padding: 0 48px; } }

.nav-logo { height: 40px; width: auto; object-fit: contain; }
.desktop-nav { display: none; align-items: center; gap: 40px; }
@media (min-width: 992px) { .desktop-nav { display: flex; } }

.nav-link-home {
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link-home.active,
.nav-link-home:hover { color: #fff; }
.nav-link-home::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: #06b6d4;
  transition: width 0.3s ease;
}
.nav-link-home.active::after,
.nav-link-home:hover::after { width: 100%; }

.nav-cta {
  color: #fff;
  background: #2563eb;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover { color: #fff; background: #3b82f6; box-shadow: 0 4px 20px rgba(37,99,235,0.45); }

.services-menu { position: relative; }
.services-dropdown-home {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 12px) scale(.97);
  width: 288px;
  background: rgba(6,12,28,0.96);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(37,99,235,0.12);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  overflow: hidden;
}
.services-menu:hover .services-dropdown-home {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 12px) scale(1);
}
.services-dropdown-home a {
  margin: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.services-dropdown-home a:hover { color: #fff; background: rgba(255,255,255,.06); }
.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.view-all-link {
  justify-content: center;
  color: #22d3ee !important;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px !important;
  font-size: 12px !important;
}

.mobile-toggle {
  display: inline-flex;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.9);
  padding: 8px;
}
@media (min-width: 992px) { .mobile-toggle { display: none; } }

.mobile-menu-home {
  position: fixed;
  inset: 0;
  z-index: 1040;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
  background: rgba(6, 13, 26, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.07);
  padding-top: 80px;
  overflow-y: auto;
}
.mobile-menu-home.open { transform: translateX(0); }
.mobile-menu-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-content > a,
.mobile-services-button {
  color: rgba(255,255,255,.9);
  font-size: 24px;
  font-weight: 700;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
  padding: 0 0 16px;
  text-align: left;
}
.mobile-menu-content a.active { color: #fff; border-color: #22d3ee; }
.mobile-services-list { display: none; flex-direction: column; gap: 4px; margin-top: 16px; }
.mobile-services-list.open { display: flex; }
.mobile-services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 600;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translateY(var(--hero-y, 0));
}
.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.2) translate(2%, 1.5%);
  animation: heroKenBurns 37s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.2) translate(2%, 1.5%); }
  35% { transform: scale(1.1) translate(-3%, -2.5%); }
  70% { transform: scale(1.25) translate(3%, -1.5%); }
  100% { transform: scale(1.15) translate(-1.5%, 3%); }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 20;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.9), rgba(6,182,212,0.7), rgba(255,255,255,0.3), transparent);
}
.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 112px 16px 96px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  background: #112fab;
  border: 1px solid rgba(99,179,237,0.45);
  backdrop-filter: blur(12px);
  color: #bae6fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #67e8f9;
}
.hero-title {
  color: #fff;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.024em;
  font-weight: 800;
  margin: 0 0 24px;
}
.hero-title .shadow-line { text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9); }
.hero-title .blue-line { color: #112fab; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.primary-btn,
.secondary-btn,
.light-gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.primary-btn { padding: 16px 32px; background: linear-gradient(135deg,#1d4ed8 0%,#0891b2 100%); }
.secondary-btn {
  padding: 16px 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
}
.primary-btn:hover,
.secondary-btn:hover,
.light-gradient-btn:hover { color: #fff; transform: translateY(-2px); }
.primary-btn:hover { box-shadow: 0 8px 48px rgba(37,99,235,0.65); }
.secondary-btn:hover { background: rgba(255,255,255,.2); }
.scroll-indicator {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-indicator div {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.4); }
  50% { transform: scaleY(1); }
}

.stats-strip {
  position: relative;
  overflow: hidden;
  background: #1636d9;
}
.stats-strip::before,
.stats-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}
.stats-strip::before { top: 0; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), rgba(6,182,212,0.4), transparent); }
.stats-strip::after { bottom: 0; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3), transparent); }
.stats-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(37,99,235,0.08) 0%, transparent 70%);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 32px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 992px) { .stats-grid { grid-template-columns: repeat(5,1fr); } }
.stat-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: transform .3s ease, background .3s ease;
}
.stat-item:hover {
  transform: translateY(-6px);
  background: radial-gradient(circle at 50% 60%, rgba(37,99,235,0.13) 0%, transparent 75%);
}
.stat-value {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-shadow: 0 0 30px rgba(37,99,235,0.3);
  margin-bottom: 8px;
}
.stat-item:hover .stat-value {
  color: #67e8f9;
  text-shadow: 0 0 40px rgba(6,182,212,0.55), 0 0 80px rgba(37,99,235,0.3);
}
.stat-label {
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.white-section { background: #fff; color: var(--slate-900); position: relative; overflow: hidden; }
.light-section { background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%); color: var(--slate-900); position: relative; overflow: hidden; }
.blue-section { background: linear-gradient(160deg, #1636da 0%, #1636da 50%, #1636da 100%); position: relative; overflow: hidden; }
.py-36 { padding-block: 144px; }
.py-32 { padding-block: 128px; }
.mb-28 { margin-bottom: 112px; }

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.section-title-md {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.section-title-lg {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
}
.body-large { color: #334155; font-size: 1.1rem; font-weight: 500; line-height: 1.85; }
.body-copy { color: #64748b; font-size: 1rem; line-height: 1.85; }
.body-copy-dark { color: rgba(255,255,255,.55); font-size: 1.05rem; line-height: 1.85; }

.sticky-copy { position: static; }
@media (min-width: 992px) { .sticky-copy { position: sticky; top: 128px; } }

.pillar-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(37,99,235,0.14);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.pillar-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 20px 60px rgba(37,99,235,0.13), 0 4px 20px rgba(0,0,0,0.06);
}
.pillar-head {
  height: 140px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pillar-num {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255,255,255,.2);
  font-size: 30px;
  font-weight: 900;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-body { padding: 24px; }
.pillar-body h3 { color: #0f172a; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.pillar-body p { color: #64748b; font-size: 14px; line-height: 1.75; margin: 0; }

.check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.check-row span:last-child { font-size: 14px; font-weight: 600; }

.image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.image-frame.dark { box-shadow: 0 0 0 1px rgba(37,99,235,0.20), 0 40px 100px rgba(0,0,0,0.60), 0 0 60px rgba(37,99,235,0.08); }
.image-frame.light { box-shadow: 0 0 0 1px rgba(37,99,235,0.12), 0 32px 80px rgba(0,0,0,0.10); }
.image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 45%, rgba(6,12,28,0.28) 100%);
}
.halo {
  position: absolute;
  inset: -10%;
  border-radius: 48px;
  pointer-events: none;
  filter: blur(28px);
}
.floating-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  min-width: 140px;
  border-radius: 16px;
  background: rgba(5,12,28,0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  animation: floatSmall 4.5s ease-in-out infinite;
}
.floating-card .label { color: rgba(255,255,255,.4); font-size: 10px; font-weight: 600; margin-bottom: 4px; }
.floating-card .value { color: #fff; font-size: 20px; line-height: 1; font-weight: 800; }
.floating-card .delta { font-size: 12px; font-weight: 800; margin-left: 8px; }

.service-card {
  height: 100%;
  padding: 1.5px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.09), transparent 50%, rgba(var(--accent-rgb),.07));
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.28), rgba(var(--accent-rgb),.08) 40%, rgba(var(--accent-rgb),.22));
}
.service-card-inner {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(160deg, #112fab 0%, #0e259a 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.service-visual {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(var(--accent-rgb),0.07) 0%, rgba(0,0,0,0) 65%);
}
.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(var(--accent-rgb),.05) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb),.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.service-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-num {
  position: absolute;
  top: 16px;
  left: 20px;
  color: rgba(var(--accent-rgb),.45);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}
.service-vignette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(17,43,171,.99), transparent);
}
.service-content { position: relative; padding: 8px 28px 28px; display: flex; min-height: 270px; flex-direction: column; justify-content: space-between; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  color: var(--accent);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-content h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.35; margin-bottom: 12px; }
.service-content p { color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.8; margin-bottom: 24px; }
.service-card-footer {
  border-top: 1px solid rgba(var(--accent-rgb),.2);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.explore-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.accent-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb),.18);
  background: rgba(var(--accent-rgb),.08);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.metric-card {
  position: relative;
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid color-mix(in srgb, var(--metric-color) 13%, transparent);
}
.metric-card i { color: var(--metric-color); font-size: 14px; margin-bottom: 10px; display: inline-block; }
.metric-value { color: #fff; font-size: 20px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.metric-label { color: rgba(255,255,255,.38); font-size: 10px; font-weight: 600; line-height: 1.2; margin-bottom: 6px; }
.metric-delta { color: var(--metric-color); font-size: 10px; font-weight: 800; }

.ai-metric {
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(145deg, #0d1526 0%, #1636da 100%);
  border: 1px solid rgba(37,99,235,.20);
  box-shadow: 0 4px 20px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s ease;
}
.ai-metric:hover { transform: translateY(-4px); }
.ai-value { color: #fff; font-size: 29px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.ai-label { color: rgba(255,255,255,.45); font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.ai-sub { color: #34d399; font-size: 10px; font-weight: 600; }

.mini-stat .value { font-size: 24px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.mini-stat .label { color: rgba(255,255,255,.38); font-size: 12px; font-weight: 600; }

.why-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d1526 0%, #1636da 100%);
  border: 1px solid rgba(37,99,235,.18);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: color-mix(in srgb, var(--why-color) 25%, transparent);
  box-shadow: 0 8px 40px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.05);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--why-color);
  background: color-mix(in srgb, var(--why-color) 19%, transparent);
  border: 1px solid color-mix(in srgb, var(--why-color) 31%, transparent);
  margin-bottom: 20px;
}
.why-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(37,99,235,.12);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.why-card h3 { color: #fff; font-size: 15.5px; font-weight: 800; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.78; margin: 0; }

.marquee-wrap { position: relative; overflow: hidden; }
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 112px;
  z-index: 2;
  pointer-events: none;
}
.fade-left { left: 0; background: linear-gradient(90deg, var(--fade-bg), transparent); }
.fade-right { right: 0; background: linear-gradient(-90deg, var(--fade-bg), transparent); }
.marquee-track,
.marquee-track-reverse {
  display: flex;
  width: max-content;
}
.marquee-track { animation: marquee 28s linear infinite; }
.marquee-track-reverse { animation: marquee-reverse 32s linear infinite; }
.marquee-track:hover,
.marquee-track-reverse:hover { animation-play-state: paused; }
.tech-pill {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-inline: 8px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.tech-pill:hover { transform: translateY(-10px) scale(1.02); border-color: #93c5fd; background: #eff6ff; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.tech-abbr {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe, #f1f5f9);
  border: 1px solid rgba(147,197,253,.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-size: 9px;
  font-weight: 800;
}
.tech-name { color: #475569; font-size: 14px; font-weight: 600; white-space: nowrap; }
.client-logo {
  flex: 0 0 auto;
  min-width: 140px;
  height: 72px;
  margin-inline: 12px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.client-logo:hover { border-color: #93c5fd; box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
.client-logo img { max-height: 48px; max-width: 110px; object-fit: contain; width: auto; }

.cta-section {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1636da 0%, #1636da 50%, #1636da 100%);
}
.cta-orb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cta-orb div {
  width: min(800px, 100vw);
  height: min(800px, 100vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,99,235,0.16) 0%, rgba(6,182,212,0.06) 45%, transparent 70%);
}
.grid-texture {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 64px 64px;
}
.light-gradient-btn {
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 17px;
  background: linear-gradient(135deg,#2563eb 0%,#06b6d4 100%);
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: all .3s ease;
}
.ghost-btn:hover { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.10); transform: translateY(-2px); }
.contact-option {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  text-align: center;
}
.contact-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,.18);
  border: 1px solid rgba(37,99,235,.3);
  color: #22d3ee;
}

.footer-home {
  position: relative;
  background: #f8fafc;
  border-top: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  color: #64748b;
}
.footer-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.30), rgba(6,182,212,0.20), transparent);
}
.footer-home h4 {
  color: #1e293b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-link {
  position: relative;
  color: #64748b;
  font-size: 14px;
}
.footer-link:hover { color: #1e293b; }
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transition: width .3s ease;
}
.footer-link:hover::after { width: 100%; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.social-link:hover { transform: translateY(-3px) scale(1.08); color: #2563eb; border-color: #bfdbfe; box-shadow: 0 4px 16px rgba(37,99,235,.12); }
.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}
.scroll-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1060;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.85);
  transition: opacity .3s ease, transform .3s ease;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
  .py-36 { padding-block: 96px; }
  .py-32 { padding-block: 88px; }
  .mb-28 { margin-bottom: 72px; }
  .section-title-lg { font-size: 2.45rem; }
  .stats-grid { gap: 0; }
  .stat-item { border-right: 0; }
  .floating-card { display: none; }
  .light-gradient-btn, .ghost-btn { width: 100%; justify-content: center; }
}
