/* One Global BPO — static site (matches React App.tsx design) */
:root {
  --navy: #1A2E6E;
  --navy-deep: #111E4A;
  --navy-dark: #0B1230;
  --green: #0B7A3E;
  --green-bright: #18B058;
  --bg: #F3F6FB;
  --panel: #FFFFFF;
  --panel-tint: #EBF0F8;
  --ink: #0D1829;
  --ink-soft: #566275;
  --line: #DCE4F0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .wrap { padding: 0 2.5rem; } }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,46,110,0.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,46,110,0.38); }

/* Keyframes */
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
@keyframes hexdrift { from{background-position:0 0} to{background-position:168px 192px} }
@keyframes orbit-cw { to{transform:rotate(360deg)} }
@keyframes orbit-ccw { to{transform:rotate(-360deg)} }
@keyframes borderMove { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes led-pulse { 0%,100%{opacity:1;box-shadow:0 0 8px 3px rgba(24,176,88,0.5)} 50%{opacity:.7;box-shadow:0 0 16px 6px rgba(24,176,88,0.8)} }
@keyframes mic-ring { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(2.2);opacity:0} }
@keyframes sound-wave { 0%,100%{opacity:.7;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.7)} }
@keyframes glow-ring { 0%,100%{transform:scale(1);opacity:.9} 50%{transform:scale(1.05);opacity:.45} }
@keyframes radar-pulse { 0%{transform:scale(0.6);opacity:.8} 100%{transform:scale(2);opacity:0} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes float-chip { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(34px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroWord { from{opacity:0;transform:translateY(44px) rotateX(-30deg)} to{opacity:1;transform:translateY(0) rotateX(0)} }
@keyframes navIn { from{transform:translateY(-72px);opacity:0} to{transform:translateY(0);opacity:1} }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 3px; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--green), var(--green-bright), #56E49A);
  pointer-events: none;
}

/* Cursor follower */
.cursor-follower {
  position: fixed; z-index: 190; pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 1024px) { .cursor-follower { display: block; } }
.cursor-ring {
  border-radius: 50%; border: 1px solid rgba(24,176,88,0.5);
  width: 26px; height: 26px; transition: width .2s, height .2s, border-color .2s, background .2s;
}
.cursor-ring--active {
  width: 44px; height: 44px;
  border-color: var(--green-bright);
  background: rgba(24,176,88,0.08);
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; border-radius: 9999px;
  padding: 6px 16px; margin-bottom: 20px;
  background: rgba(11,122,62,0.09);
  border: 1px solid rgba(11,122,62,0.22);
  color: var(--green);
}
.eyebrow--light {
  background: rgba(24,176,88,0.15);
  border-color: rgba(24,176,88,0.4);
  color: var(--green-bright);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
  animation: pulse-dot 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(11,122,62,0.15);
}
.eyebrow--light .eyebrow-dot {
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(24,176,88,0.2);
}

/* Buttons */
.btn-primary, .btn-outline {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; border-radius: 12px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s, color .2s, background .2s;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: #fff; border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform .55s ease;
}
.btn-primary.btn-hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(11,122,62,0.5); }
.btn-primary.btn-hover::before { transform: translateX(200%); }
.btn-primary--lg { padding: 16px 32px; font-size: 15px; }
.btn-primary--md { padding: 12px 24px; font-size: 14px; }
.btn-primary .btn-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }

.btn-outline {
  padding: 12px 24px; font-size: 14px;
  border: 1.5px solid var(--line); color: var(--navy); background: transparent;
}
.btn-outline:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-2px); background: rgba(11,122,62,0.04);
}
.btn-outline--dark {
  border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9);
}
.btn-outline--dark:hover {
  border-color: rgba(255,255,255,0.7); color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Nav: outline button swaps to navy when navbar becomes white */
.nav--scrolled .nav-actions .btn-outline--dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.nav--scrolled .nav-actions .btn-outline--dark:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(11,122,62,0.04);
}

.btn-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  animation: navIn .7s var(--ease) forwards;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav--dark { background: rgba(243,246,251,0); border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav--scrolled {
  background: rgba(243,246,251,0.93);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; transition: filter .35s ease; }
.nav--dark .nav-logo img { filter: brightness(0) invert(1); }
.nav--scrolled .nav-logo img { filter: none; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px; font-weight: 500; position: relative;
  transition: color .2s; color: var(--ink-soft);
}
.nav--dark .nav-links a { color: rgba(255,255,255,0.7); }
.nav--dark .nav-links a:hover { color: #fff; }
.nav--scrolled .nav-links a { color: var(--ink-soft); }
.nav--scrolled .nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  height: 2px; width: 0; border-radius: 9999px;
  background: var(--green-bright); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .nav-actions { display: flex; } }

.menu-toggle {
  display: flex; padding: 8px; border-radius: 8px; border: none; background: none;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.nav--dark .menu-toggle { color: #fff; }
.nav--scrolled .menu-toggle { color: var(--navy); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: var(--panel); border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(13,18,41,0.2);
  padding: 12px 24px 20px; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 14.5px; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-menu .btn-primary { margin-top: 16px; align-self: flex-start; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger-item { opacity: 0; transform: translateY(34px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
[data-stagger].in .stagger-item { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 100vh;
  padding-top: 70px; display: flex; flex-direction: column;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-deep) 55%, #0D1E52 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-hex {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'><path d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/></svg>");
  background-size: 84px 96px;
  animation: hexdrift 50s linear infinite;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 90%);
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: breathe 10s ease-in-out infinite;
}
.hero-blob--1 {
  width: 640px; height: 640px; background: var(--green);
  filter: blur(130px); opacity: .1; top: -240px; right: -200px;
}
.hero-blob--2 {
  width: 420px; height: 420px; background: #3B5BDB;
  filter: blur(120px); opacity: .1; bottom: -100px; left: -100px;
  animation-delay: 5s;
}

.hero-content {
  flex: 1; display: flex; align-items: center; width: 100%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  width: 100%; padding: 80px 0;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-title {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 3.9rem);
  letter-spacing: -0.03em; line-height: 1.09; perspective: 600px;
  margin-bottom: 24px;
}
.hero-title .word {
  display: inline-block; margin-right: .28em;
  animation: heroWord .65s var(--ease) backwards;
  color: #fff;
}
.hero-title .word--accent {
  background: linear-gradient(90deg, var(--green-bright), #56E49A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; line-height: 1.625; margin-bottom: 40px; max-width: 490px;
  color: rgba(255,255,255,0.58);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Headphone visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: opacity .3s, transform .3s;
}
.headphone-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.glow-ring {
  position: absolute; border-radius: 50%; pointer-events: none; border: 1px solid;
}
.glow-ring--1 { width: 280px; height: 280px; border-color: rgba(24,176,88,0.12); animation: glow-ring 3s ease-in-out infinite; }
.glow-ring--2 { width: 340px; height: 340px; border-color: rgba(24,176,88,0.085); animation: glow-ring 4s ease-in-out infinite .8s; }
.glow-ring--3 { width: 400px; height: 400px; border-color: rgba(24,176,88,0.05); animation: glow-ring 5s ease-in-out infinite 1.6s; }

.orbit-dot-wrap {
  position: absolute; pointer-events: none;
  display: flex; align-items: flex-start; justify-content: center;
}
.orbit-dot-wrap--cw { width: 280px; height: 280px; animation: orbit-cw 8s linear infinite; }
.orbit-dot-wrap--ccw { width: 340px; height: 340px; animation: orbit-ccw 13s linear infinite; align-items: center; justify-content: flex-end; }
.orbit-dot { border-radius: 50%; }
.orbit-dot--green { width: 12px; height: 12px; margin-top: -6px; background: var(--green-bright); box-shadow: 0 0 12px 4px rgba(24,176,88,0.55); }
.orbit-dot--white { width: 8px; height: 8px; margin-right: -4px; background: #fff; opacity: .55; box-shadow: 0 0 8px 2px rgba(255,255,255,0.35); }

.radar-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1.5px solid rgba(24,176,88,0.25);
  animation: radar-pulse 3s ease-out infinite;
}
.radar-ring--1 { width: 140px; height: 140px; animation-delay: 0.7s; }
.radar-ring--2 { width: 190px; height: 190px; animation-delay: 1.4s; }
.radar-ring--3 { width: 240px; height: 240px; animation-delay: 2.1s; }

.float-chip {
  position: absolute; pointer-events: none; z-index: 30;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 9999px;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px); color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: float-chip 4s ease-in-out infinite;
}
.float-chip--1 { top: 4%; left: 68%; animation-delay: 0s; }
.float-chip--2 { top: 72%; left: 72%; animation-delay: 0.15s; }
.float-chip--3 { top: 78%; left: 2%; animation-delay: 0.3s; }
.float-chip--4 { top: 8%; left: -4%; animation-delay: 0.45s; }

.headphone-inner {
  position: relative; z-index: 20; width: 280px; height: 280px;
}
.headphone-glow {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 70%, rgba(11,122,62,0.35), transparent 70%);
  filter: blur(22px);
}
.headphone-svg { width: 100%; height: 100%; }

/* Sections */
.section { padding: 112px 0; position: relative; }
.section--tint { background: var(--panel-tint); }
.section--bg { background: var(--bg); }

.section-head { max-width: 42rem; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--navy); letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 16px;
}
.section-head p { color: var(--ink-soft); font-size: 16.5px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-dashboard { order: 1; }
  .about-copy-wrap { order: 2; }
}
.about-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.625; margin-bottom: 16px; }
.about-copy h3 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--navy); margin: 32px 0 16px;
}

.why-list { display: flex; flex-direction: column; gap: 10px; }
.why-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 16px; cursor: default;
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.why-item:hover {
  transform: translateX(6px); border-color: var(--green);
  box-shadow: 0 12px 28px -16px rgba(11,122,62,0.28);
}
.why-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(11,122,62,0.1);
  display: flex; align-items: center; justify-content: center;
}
.why-item span { font-size: 15px; font-weight: 500; color: var(--ink); }

/* Live Ops Dashboard */
.live-ops {
  border-radius: 24px; overflow: hidden; opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-dark));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 80px -30px rgba(11,18,48,0.7), inset 0 1px 0 rgba(255,255,255,0.07);
}
.live-ops.in { opacity: 1; transform: translateY(0); }
.live-ops-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.live-ops-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,0.7); font-family: 'IBM Plex Mono', monospace;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  animation: led-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px 3px rgba(24,176,88,0.5);
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; }

.live-ops-agents { padding: 20px 24px 16px; }
.agents-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.agents-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,0.35); font-family: 'IBM Plex Mono', monospace;
}
.peak-badge {
  font-size: 11px; padding: 4px 10px; border-radius: 9999px; font-weight: 600;
  background: rgba(24,176,88,0.14); color: var(--green-bright);
}
.agents-count-row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 12px; }
#agentsCount {
  font-family: 'IBM Plex Mono', monospace; font-weight: 700;
  font-size: 2.25rem; color: #fff;
}
.agents-cap { font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,0.35); }
.agents-bar-bg { height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.07); }
#agentsBar {
  height: 100%; border-radius: 9999px; width: 97.4%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transition: width .9s ease-out;
}

.live-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 0 24px 20px;
}
.metric-card {
  border-radius: 12px; padding: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
}
.metric-label {
  font-size: 10.5px; margin-bottom: 6px; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,0.32); font-family: 'IBM Plex Mono', monospace;
}
.metric-val {
  font-weight: 700; font-size: 17px; color: #fff;
  font-family: 'IBM Plex Mono', monospace;
}
.metric-delta { font-size: 11px; font-weight: 600; margin-top: 2px; color: var(--green-bright); }

.live-activity { border-top: 1px solid rgba(255,255,255,0.06); }
.activity-header {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,0.3); font-family: 'IBM Plex Mono', monospace;
}
#activityFeed { padding: 0 24px 20px; display: flex; flex-direction: column; gap: 6px; }
.activity-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 8px; border: 1px solid transparent;
}
.activity-item--active {
  background: rgba(24,176,88,0.08); border-color: rgba(24,176,88,0.14);
}
.activity-left { display: flex; align-items: center; gap: 8px; }
.activity-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.18); }
.activity-item--active .activity-dot { background: var(--green-bright); }
.activity-type { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.activity-item--active .activity-type { color: rgba(255,255,255,0.82); }
.activity-loc { font-size: 11px; color: rgba(255,255,255,0.28); }
.activity-id { font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.22); }

/* Services */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  position: relative; border-radius: 16px; padding: 28px;
  background: var(--panel); border: 1px solid var(--line);
  overflow: hidden; cursor: default;
  transition: transform .2s, border-color .25s, box-shadow .25s;
}
.svc-card.is-hovered { border-color: transparent; box-shadow: 0 28px 56px -24px rgba(26,46,110,0.22); }
.svc-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1.5px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.svc-card.is-hovered::before { opacity: 1; }
.svc-card::after {
  content: ''; position: absolute; width: 144px; height: 144px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,122,62,0.12), transparent 70%);
  top: -72px; right: -72px; transition: transform .4s;
}
.svc-card.is-hovered::after { transform: scale(1.8); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 24px;
  background: var(--panel-tint); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: background .3s, transform .3s;
}
.svc-card.is-hovered .svc-icon { background: var(--green); transform: rotate(-8deg) scale(1.08); }
.svc-card.is-hovered .svc-icon svg { stroke: #fff; }
.svc-card h3 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--navy); margin-bottom: 8px; position: relative; z-index: 1;
}
.svc-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.625; position: relative; z-index: 1; }

/* Industries */
.industries-section { overflow: hidden; }
.industries-bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1.2' fill='%231A2E6E' fill-opacity='0.06'/></svg>");
  background-size: 60px 60px;
}
.industries-glow {
  position: absolute; width: 500px; height: 500px;
  background: var(--green); filter: blur(140px); opacity: .05;
  top: -100px; right: -100px; pointer-events: none;
}
.industries-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; position: relative; z-index: 1;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.ind-card {
  position: relative; border-radius: 16px; padding: 24px;
  background: var(--panel); border: 1px solid var(--line);
  cursor: default; overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .22s;
}
.ind-card.is-hovered, .ind-card:hover {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 20px 48px -20px rgba(26,46,110,0.45);
  transform: translateY(-6px);
}
.ind-glow {
  position: absolute; top: -32px; right: -32px; width: 96px; height: 96px;
  border-radius: 50%; filter: blur(20px); pointer-events: none;
  background: rgba(11,122,62,0.06); transition: background .3s;
}
.ind-card.is-hovered .ind-glow, .ind-card:hover .ind-glow { background: rgba(24,176,88,0.25); }
.ind-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: var(--panel-tint); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: background .3s;
}
.ind-card.is-hovered .ind-icon, .ind-card:hover .ind-icon { background: rgba(24,176,88,0.18); }
.ind-card.is-hovered .ind-icon svg, .ind-card:hover .ind-icon svg { stroke: var(--green-bright); }
.ind-card h3 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--navy); margin-bottom: 4px;
  position: relative; z-index: 1; transition: color .3s;
}
.ind-card.is-hovered h3, .ind-card:hover h3 { color: #fff; }
.ind-card p {
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.625;
  position: relative; z-index: 1; transition: color .3s;
}
.ind-card.is-hovered p, .ind-card:hover p { color: rgba(255,255,255,0.55); }
.ind-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0); transition: transform .3s;
}
.ind-card.is-hovered .ind-bar, .ind-card:hover .ind-bar { transform: scaleX(1); }

.industries-footer {
  margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.industries-footer-line { flex: 1; max-width: 120px; height: 1px; background: var(--line); }
.industries-footer span { font-size: 13px; font-weight: 500; color: var(--ink-soft); }

/* Process */
.process-section { overflow: hidden; }
.process-glow {
  position: absolute; width: 600px; height: 600px;
  background: var(--navy); filter: blur(160px); opacity: .04;
  bottom: -200px; right: -200px; pointer-events: none;
}
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: 2fr 3fr; } }

.process-steps { display: flex; flex-direction: column; gap: 12px; }
.process-step-btn {
  position: relative; text-align: left; padding: 20px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--panel);
  overflow: hidden; cursor: pointer; transition: background .3s, border-color .3s, transform .18s;
}
.process-step-btn:hover:not(.active) { border-color: var(--green); transform: translateX(3px); }
.process-step-btn.active { background: var(--navy); border-color: var(--navy); }
.process-step-inner { display: flex; align-items: center; gap: 16px; }
.process-step-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--panel-tint); display: flex; align-items: center; justify-content: center;
}
.process-step-btn.active .process-step-icon { background: rgba(24,176,88,0.18); }
.process-step-btn.active .process-step-icon svg { stroke: #18B058; }
.process-step-num {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; margin-bottom: 2px;
  font-family: 'IBM Plex Mono', monospace; color: var(--ink-soft);
}
.process-step-btn.active .process-step-num { color: var(--green-bright); }
.process-step-title {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy);
}
.process-step-btn.active .process-step-title { color: #fff; }
.process-step-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); display: none;
}
.process-step-btn.active .process-step-progress { display: block; }
#stepProgressBar {
  height: 100%; border-radius: 9999px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  width: 0; transition: width .1s linear;
}

.step-detail-panel {
  border-radius: 24px; padding: 40px; min-height: 340px;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-dark));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 64px -32px rgba(11,18,48,0.6);
}
.step-detail-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; }
.step-detail-num {
  font-family: 'IBM Plex Mono', monospace; font-weight: 700;
  font-size: 80px; line-height: 1; color: rgba(255,255,255,0.06);
}
.step-detail-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(24,176,88,0.15); border: 1px solid rgba(24,176,88,0.2);
  display: flex; align-items: center; justify-content: center;
}
.step-detail-title {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.875rem; color: #fff; letter-spacing: -0.02em; margin-bottom: 20px;
}
.step-detail-desc { font-size: 16px; line-height: 1.625; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.step-indicators-row { display: flex; align-items: center; gap: 8px; }
.step-indicator {
  height: 4px; border-radius: 2px; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.15); width: 10px; transition: width .3s, background .3s;
}
.step-indicator.active { width: 28px; background: var(--green-bright); }
.step-counter {
  margin-left: 12px; font-size: 12px;
  font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.3);
}

/* Advantage */
.adv-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
.adv-card {
  padding: 28px; border-radius: 16px;
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.adv-card:hover {
  transform: translateY(-5px); border-color: var(--green);
  box-shadow: 0 20px 40px -22px rgba(11,122,62,0.3);
}
.adv-icon {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 20px;
  background: var(--panel-tint); display: flex; align-items: center; justify-content: center;
}
.adv-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.625; }

/* Stats */
.stats-section {
  padding: 96px 0; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy-deep));
}
.stats-hex {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'><path d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/></svg>");
  background-size: 84px 96px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px;
  position: relative; z-index: 1; text-align: center;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 3rem; font-weight: 500;
  color: var(--green-bright); margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: #7A90B8; }

/* Careers */
.careers-section {
  padding: 112px 0; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
}
.careers-hex {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'><path d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/></svg>");
  background-size: 84px 96px;
}
.careers-grid {
  display: grid; grid-template-columns: 1fr; gap: 64px; align-items: start;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .careers-grid { grid-template-columns: 1fr 1fr; } }
.careers-grid h2 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: #fff; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 20px;
}
.careers-grid p { font-size: 16px; line-height: 1.625; max-width: 440px; color: rgba(255,255,255,0.55); }
.careers-roles h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 20px; }
.role-list { display: flex; flex-direction: column; gap: 10px; }
.role-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  transition: background .2s, transform .2s;
}
.role-item:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.role-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--green-bright); }
.role-item span { font-weight: 500; font-size: 15px; color: #fff; }

/* CTA Banner */
.cta-section { padding: 80px 0; background: var(--bg); }
.cta-banner {
  border-radius: 24px; padding: 2px; overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--navy), var(--green-bright));
  background-size: 200% 200%; animation: borderMove 6s ease infinite;
}
.cta-inner {
  border-radius: 22px; padding: 64px 40px;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cta-inner { flex-direction: row; align-items: center; }
}
.cta-inner h2 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.875rem; color: #fff; letter-spacing: -0.025em; margin-bottom: 12px;
}
.cta-inner p { font-size: 15.5px; max-width: 420px; color: rgba(255,255,255,0.52); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.whatsapp-card { margin-top: 0; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 20px; border-radius: 16px;
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .18s, border-color .18s;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--green); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--panel-tint); display: flex; align-items: center; justify-content: center;
}
.contact-card-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.contact-card-detail { font-size: 15px; color: var(--ink-soft); }
.contact-link { color: inherit; transition: color .2s ease; }
.contact-link:hover { color: var(--green); }

.whatsapp-card {
  display: flex; align-items: center; gap: 20px;
  padding: 20px; border-radius: 16px; width: 100%;
  background: var(--panel); border: 1px solid var(--green);
  transition: transform .18s, box-shadow .18s;
}
.whatsapp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(11,122,62,0.28);
}
.whatsapp-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(11,122,62,0.1);
  display: flex; align-items: center; justify-content: center;
}

.map-placeholder {
  margin-top: 16px; border-radius: 16px; overflow: hidden;
  height: 160px; position: relative;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border: 1px solid var(--line);
}
.map-dots {
  position: absolute; inset: 0; opacity: .2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='1' fill='%23fff'/></svg>");
  background-size: 40px 40px;
}
.map-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.map-pin {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.map-content span:first-of-type { font-size: 14px; font-weight: 600; color: #fff; }
.map-content span:last-of-type { font-size: 12px; color: rgba(255,255,255,0.45); }

.contact-form-panel {
  border-radius: 16px; padding: 32px;
  background: var(--panel); border: 1px solid var(--line);
  box-shadow: 0 4px 40px -20px rgba(26,46,110,0.1);
}
.contact-form-panel h3 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 8px;
}
.contact-form-panel > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }

#contactForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; font-size: 14px;
  border: 1.5px solid var(--line); background: var(--panel); color: var(--ink);
  font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: none; min-height: 120px; }

.contact-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 64px 0; gap: 20px;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(11,122,62,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-success h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.contact-success p { color: var(--ink-soft); }
.contact-success button {
  font-size: 14px; font-weight: 600; color: var(--green);
  background: none; border: none; text-decoration: underline; cursor: pointer;
}

/* Footer */
.footer {
  padding: 64px 0; background: var(--bg); border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px;
}
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.foot-brand img { height: 32px; width: auto; object-fit: contain; margin-bottom: 20px; }
.foot-brand p { font-size: 14px; line-height: 1.625; max-width: 240px; color: var(--ink-soft); }
.foot-grid h4 {
  font-weight: 600; font-size: 12px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--navy);
}
.foot-grid li { margin-bottom: 12px; font-size: 14px; color: var(--ink-soft); }
.foot-grid li a { transition: color .2s, padding-left .2s; }
.foot-grid li a:hover { color: var(--green); padding-left: 4px; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 12px; font-size: 13px; color: var(--ink-soft);
}
@media (min-width: 640px) { .foot-bottom { flex-direction: row; align-items: center; } }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(0.8);
  transition: opacity .25s, transform .25s, background .2s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--green); transform: scale(1.08); }
