/* ═══════════════════════════════════════════════════════════════
   JNPMEDI APAC — Stylesheet
   Brand: #008FD5 / #012037 / #0877AE / #002552 / #EDF2F7
   Font: Inter
═══════════════════════════════════════════════════════════════ */

:root {
  --blue:        #008FD5;
  --blue-dark:   #0877AE;
  --navy:        #012037;
  --navy-mid:    #002552;
  --light-bg:    #EDF2F7;
  --off-white:   #F8F9FB;
  --text:        #1A1A2E;
  --text-muted:  #5A6478;
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,.07);
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.05);
  --shadow-md:   0 6px 28px rgba(0,0,0,.09);
  --shadow-lg:   0 12px 52px rgba(0,0,0,.13);
  --transition:  .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.bg-offwhite  { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-navy-mid  { background: var(--navy-mid); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
}
h1 em { font-style: normal; color: var(--blue); }

h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.022em;
  color: var(--navy);
}
h2.white { color: var(--white); }

h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

p { color: var(--text-muted); line-height: 1.72; }
p + p { margin-top: 1rem; }
.white-60 { color: rgba(255,255,255,.62) !important; }
.white     { color: var(--white) !important; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.tag-light { color: rgba(255,255,255,.65); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-tag { display: block; }
.section-sub { margin-top: 1rem; font-size: 17px; max-width: 640px; line-height: 1.65; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }
.centered { text-align: center; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 14px 30px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .025em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light-bg); }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── LANGUAGE TOGGLE ─────────────────────────────────────────── */
.lang-toggle {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle:hover { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }

/* ─── HEADER ──────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(1,32,55,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(1,32,55,.99);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.logo-img-footer {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-apac {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: .02em;
  margin-left: 2px;
  align-self: center;
}

.nav-main { flex: 1; }
.nav-main > ul { display: flex; align-items: center; gap: .15rem; }
.nav-main > ul > li { position: relative; }
.nav-main > ul > li > a {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .9rem;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.nav-main > ul > li > a:hover,
.nav-main > ul > li > a.active {
  color: var(--white);
  background: rgba(0,143,213,.15);
}
.caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.55);
  vertical-align: middle;
  margin-left: 2px;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--navy);
  border: 1px solid rgba(0,143,213,.2);
  border-radius: 10px;
  padding: .5rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s;
}
.has-drop:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  transition: color .15s, background .15s;
}
.dropdown li a:hover { color: var(--white); background: rgba(0,143,213,.12); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,.08); margin: .35rem 0; pointer-events: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}

.mobile-nav {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .2rem; }
.mobile-nav ul li a { display: block; padding: .65rem .5rem; font-size: 15px; color: rgba(255,255,255,.78); }
.mobile-nav .btn { margin-top: .75rem; width: 100%; justify-content: center; }

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#heroCanvas { width: 100%; height: 100%; }
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.hero-text { max-width: 760px; }
.hero-text .section-tag { margin-bottom: 1.1rem; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.68);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.68;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.proof-item { display: flex; flex-direction: column; align-items: center; padding: 0 1.5rem; }
.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.proof-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.48);
  letter-spacing: .04em;
  margin-top: .3rem;
  text-align: center;
}
.proof-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ─── PLATFORM STRIP ──────────────────────────────────────────── */
.platform-strip { background: var(--blue); padding: 0; }
.strip-inner {
  display: flex;
  align-items: center;
  height: 62px;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}
.pillar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.75rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.pillar svg { width: 17px; height: 17px; }
.pillar-div { width: 1px; height: 26px; background: rgba(255,255,255,.28); flex-shrink: 0; }

/* ─── PROBLEM SECTION ─────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,143,213,.3); }
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(0,143,213,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 1.35rem;
  flex-shrink: 0;
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-card h3 { font-size: 17px; margin-bottom: .75rem; }
.problem-card p { font-size: 14.5px; flex: 1; }
.problem-resolve {
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
  padding: .55rem .9rem;
  background: rgba(0,143,213,.08);
  border-radius: 5px;
  border-left: 3px solid var(--blue);
}

/* ─── SOLUTION SECTION ────────────────────────────────────────── */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.solution-left h2 { margin: .5rem 0 1.25rem; }

.solution-steps { display: flex; flex-direction: column; gap: 0; }
.sol-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sol-step:last-child { border-bottom: none; }
.sol-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  min-width: 32px;
  line-height: 1.3;
  flex-shrink: 0;
}
.sol-step strong { display: block; color: var(--white); font-size: 15px; margin-bottom: .3rem; }
.sol-step p { font-size: 13.5px; color: rgba(255,255,255,.55); margin: 0; }

/* ─── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-top {
  background: var(--accent);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
}
.svc-top svg { width: 28px; height: 28px; color: var(--white); }
.service-card h3 { font-size: 16px; padding: 1.25rem 1.5rem .5rem; }
.service-card p  { font-size: 14px; padding: 0 1.5rem; flex: 1; }
.svc-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.service-card:hover .svc-link { text-decoration: underline; }

.services-secondary { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.secondary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.secondary-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.secondary-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex: 1;
  min-width: 240px;
}
.secondary-card:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,143,213,.03); }
.secondary-card svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.sec-arrow { margin-left: auto; font-size: 16px; }

/* ─── SPLIT SECTIONS ──────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-section.reverse .split-visual { order: 2; }
.split-section.reverse .split-copy   { order: 1; }
.split-copy h2 { margin: .5rem 0 1.25rem; }
.split-copy p  { margin-bottom: .9rem; }
.split-copy .btn { margin-top: 1.5rem; }

.check-list { margin: 1.25rem 0; display: flex; flex-direction: column; gap: .6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 14.5px;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── VISUAL BLOCKS ───────────────────────────────────────────── */
.visual-block {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blue-gradient { background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #003d6b 100%); }
.dark-gradient { background: linear-gradient(145deg, #010f1d 0%, var(--navy) 60%, #012c4a 100%); }

.visual-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.visual-classes { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.class-badge {
  padding: .4rem .9rem;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .2s;
}
.class-badge.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.class-badge.white { color: rgba(255,255,255,.45); }
.class-badge.white.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.visual-sub { font-size: 12px; color: rgba(255,255,255,.42); margin-bottom: 1.5rem; }
.visual-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.visual-tags span {
  font-size: 11.5px;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: 20px;
  background: rgba(0,143,213,.18);
  color: #008FD5;
  border: 1px solid rgba(0,143,213,.3);
}

/* ─── LICENSE HOLDING ─────────────────────────────────────────── */
.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 1rem;
}
.license-statement p + p { margin-top: 1rem; }
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  min-width: 36px;
  line-height: 1;
}
.benefit-item strong { display: block; color: var(--white); font-size: 15px; margin-bottom: .3rem; }
.benefit-item p { font-size: 14px; color: rgba(255,255,255,.52); margin: 0; }

/* ─── CRO VISUAL ──────────────────────────────────────────────── */
.cro-block { background: linear-gradient(145deg, var(--navy) 0%, #011829 100%); padding: 2.5rem; }
.cro-phases { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; }
.phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  min-width: 70px;
}
.phase small { font-size: 11px; color: rgba(255,255,255,.42); font-weight: 400; }
.phase-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,143,213,.2);
}
.phase-line { flex: 1; height: 2px; background: rgba(0,143,213,.3); margin-bottom: 26px; }
.cro-capabilities { display: flex; gap: .5rem; flex-wrap: wrap; }
.cro-capabilities span {
  font-size: 12px;
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: 4px;
  background: rgba(0,143,213,.15);
  color: var(--blue);
  border: 1px solid rgba(0,143,213,.25);
}

/* ─── MAVEN DASHBOARD ─────────────────────────────────────────── */
.maven-modules { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.module {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 14px;
  color: rgba(255,255,255,.68);
}
.mod-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(0,143,213,.2);
  color: var(--blue);
  border: 1px solid rgba(0,143,213,.35);
  border-radius: 3px;
  padding: 2px 7px;
  min-width: 52px;
  text-align: center;
}
.maven-dashboard {
  background: #0d1b2a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,143,213,.2);
  box-shadow: var(--shadow-lg);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(0,143,213,.08);
  border-bottom: 1px solid rgba(0,143,213,.15);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dash-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .05em; }
.dash-body { padding: 1.5rem; }
.dash-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.25rem; }
.dash-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: .85rem;
}
.dash-label { font-size: 10px; color: rgba(255,255,255,.38); margin-bottom: .3rem; }
.dash-value { font-size: 22px; font-weight: 800; color: var(--white); }
.dash-bar-section { margin-bottom: 1.25rem; }
.dash-bar-label { font-size: 11px; color: rgba(255,255,255,.48); margin-bottom: .4rem; }
.dash-bar { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; margin-bottom: .3rem; }
.dash-bar-fill { height: 100%; background: var(--blue); border-radius: 3px; transition: width 1.5s ease; }
.dash-bar-pct { font-size: 11px; color: var(--blue); font-weight: 600; }
.dash-modules-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.dm {
  font-size: 10px;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 3px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.32);
  border: 1px solid rgba(255,255,255,.07);
}
.dm.active { background: rgba(0,143,213,.15); color: var(--blue); border-color: rgba(0,143,213,.3); }

/* ─── RA CONSULTING ───────────────────────────────────────────── */
.ra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ra-copy h2 { margin: .5rem 0 1.25rem; }
.ra-copy p  { margin-bottom: 2rem; }
.ra-copy .btn { margin-top: .5rem; }
.ra-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
  padding-top: .5rem;
}
.ra-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: .55rem .6rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.ra-item:hover { background: var(--light-bg); }
.ra-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ─── MARKETS ─────────────────────────────────────────────────── */
.markets-map { margin-bottom: 2rem; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #EDF2F7;
  border: 1px solid rgba(0,143,213,.18);
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
#worldMap { width: 100%; line-height: 0; }
#worldMap svg { display: block; width: 100%; height: auto; }

.map-legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-top: .9rem;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .35rem; vertical-align: middle; }
.legend-dot.direct  { background: #008FD5; }
.legend-dot.partner { background: rgba(0,143,213,.35); border: 1px solid rgba(0,143,213,.5); }
.legend-star { color: #008FD5; font-size: 14px; margin-right: .25rem; vertical-align: middle; }
.legend-direct, .legend-partner, .legend-hq { display: flex; align-items: center; }

.markets-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.markets-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.markets-table thead tr { background: var(--blue); }
.markets-table thead th { padding: .9rem 1rem; color: var(--white); font-weight: 600; font-size: 13px; text-align: left; }
.markets-table tbody tr:nth-child(odd)  { background: var(--light-bg); }
.markets-table tbody tr:nth-child(even) { background: var(--white); }
.markets-table tbody td { padding: .8rem 1rem; color: var(--text-muted); vertical-align: top; }
.markets-table tbody td strong { color: var(--navy); }
.market-badge {
  display: inline-block;
  margin-left: .4rem;
  padding: .15rem .5rem;
  background: var(--blue);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}
.partner-note-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0,143,213,.18);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
}
.partner-note-inner svg { width: 28px; height: 28px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.partner-note-inner strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: .4rem; }
.partner-note-inner p { margin: 0; font-size: 14px; }

/* ─── WHY GRID ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.why-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--blue);
  opacity: .2;
  line-height: 1;
  margin-bottom: .75rem;
}
.why-card h3 { margin-bottom: .6rem; }
.why-anchor {
  margin-top: 1.25rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--blue);
  opacity: .75;
  text-transform: uppercase;
}

/* ─── PROCESS ─────────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  counter-reset: steps;
}
.process-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .75rem;
}
.ps-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,143,213,.3);
}
.ps-body h4 { font-size: 15px; margin-bottom: .5rem; }
.ps-body p  { font-size: 13.5px; }
.ps-connector {
  flex-shrink: 0;
  width: 2px;
  height: 52px;
  background: rgba(0,143,213,.2);
  margin: 0 -1px;
  align-self: flex-start;
  margin-top: 0;
  display: none;
}

/* ─── CLIENTS GRID ────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.client-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.client-card svg { width: 28px; height: 28px; color: var(--blue); margin-bottom: .9rem; }
.client-card p { font-size: 14px; }

/* ─── FINAL CTA ───────────────────────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, #011525 0%, var(--navy) 50%, #013258 100%);
}
.final-cta-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-wrap h2 { margin: .5rem 0 1.25rem; }
.final-cta-wrap .white-60 { font-size: 17px; margin-bottom: 2.25rem; }
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.final-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.final-trust span { display: flex; align-items: center; gap: .35rem; }

/* ─── CONTACT SECTION ─────────────────────────────────────────── */
.contact-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-copy h2 { margin: .5rem 0 1.25rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-row svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-detail-row strong { display: block; color: var(--white); font-size: 13px; margin-bottom: .2rem; }
.contact-detail-row span  { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.55; }
.contact-detail-row a { color: var(--blue); }
.contact-detail-row a:hover { text-decoration: underline; }

/* ─── INQUIRY FORM (shared: page + modal) ────────────────────── */
.inquiry-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.inquiry-form h3 { font-size: 18px; color: var(--navy); margin-bottom: .25rem; }
.form-note { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem .95rem;
  border: 1.5px solid #D0DCE8;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,143,213,.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.2rem;
}
.form-group textarea { resize: vertical; }
.form-legal { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(0,210,85,.07);
  border: 1px solid rgba(0,210,85,.28);
  border-radius: 6px;
  padding: .85rem 1rem;
  font-size: 14px;
  color: #1a7a3a;
  margin-top: 1rem;
}
.form-success svg { width: 20px; height: 20px; color: #1a7a3a; flex-shrink: 0; }

/* ─── MODAL ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(1,32,55,.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: translateY(24px);
  transition: transform .25s ease;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--light-bg);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.modal-close:hover { background: #d0dae4; }
.modal-header { margin-bottom: 1.5rem; }
.modal-header .section-tag { margin-bottom: .4rem; }
.modal-header h3 { font-size: 20px; color: var(--navy); margin-bottom: .4rem; }
.modal-header p { font-size: 14px; }
.modal-form { box-shadow: none; padding: 0; border-radius: 0; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy); }

.footer-cta-bar {
  background: rgba(0,143,213,.12);
  border-bottom: 1px solid rgba(0,143,213,.2);
  padding: 1rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 72px 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: .8rem; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.55; margin-bottom: 1rem; }
.footer-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,143,213,.14);
  color: var(--blue);
  border: 1px solid rgba(0,143,213,.24);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: .75rem;
}
.footer-web { font-size: 13px; color: rgba(255,255,255,.32); display: block; margin-top: .5rem; }
.footer-web:hover { color: var(--blue); }
.footer-col h5 { color: var(--blue); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.42); transition: color .18s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li:not(:has(a)) { font-size: 13.5px; color: rgba(255,255,255,.32); }

.footer-bottom { padding: 1.25rem 0; background: rgba(0,0,0,.22); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.28);
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .problem-grid   { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .split-section  { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section.reverse .split-visual { order: 0; }
  .split-section.reverse .split-copy   { order: 0; }
  .solution-wrap  { grid-template-columns: 1fr; gap: 2.5rem; }
  .ra-layout      { grid-template-columns: 1fr; gap: 2.5rem; }
  .license-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .clients-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .header-inner .btn-sm { display: none; }
  .problem-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: 1fr; }
  .ra-capabilities { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .dash-row { grid-template-columns: 1fr 1fr; }
  .hero-proof { flex-direction: column; gap: .75rem; padding: 1.25rem; }
  .proof-div { width: 40px; height: 1px; }
  .process-steps { flex-direction: column; align-items: stretch; gap: 1rem; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; padding: 0; }
  .ps-num { margin-bottom: 0; margin-right: 1rem; flex-shrink: 0; }
  .final-trust { flex-direction: column; align-items: center; gap: .75rem; }
  .secondary-cards { flex-direction: column; }
}

/* ─── MARKET CHECKBOXES ──────────────────────────────────────── */
.market-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .35rem .75rem;
  margin-top: .35rem;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 13.5px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  padding: .2rem 0;
}
.cb-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  max-width: 17px;
  flex-shrink: 0;
  flex-grow: 0;
  aspect-ratio: 1 / 1;
  border: 1.5px solid #B0C4D4;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  position: relative;
}
.cb-item input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}
.cb-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: translateY(-1px) rotate(45deg);
}
.cb-item:hover input[type="checkbox"] { border-color: var(--blue); }
.cb-item:hover span { color: var(--navy); }

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
