:root {
  --primary: #0b3d91;
  --accent: #60a5fa;
  --accent-2: #2563eb;
  --teal: #26c6da;
  --teal-dark: #0d9488;
  --dark: #060c1a;
  --dark-alt: #0d1326;
  --mid: #374151;
  --muted: #6b7280;
  --light: #f0f4ff;
  --white: #ffffff;
  --border: rgba(11,61,145,0.11);
  --shadow: 0 8px 32px rgba(11,61,145,0.10);
  --shadow-lg: 0 24px 64px rgba(11,61,145,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--mid); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; color: var(--dark); font-weight: 700; }

/* â”€â”€ NAVBAR â”€â”€ */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .35s ease; padding: 20px 0; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; font-family: 'Inter', sans-serif; }
#navbar .container { max-width: none; padding-left: 28px; padding-right: 28px; }
#navbar.scrolled { background: rgba(12,14,48,.72) !important; padding: 14px 0; box-shadow: 0 8px 28px rgba(0,0,0,.28); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: rgba(255,255,255,.1); }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: auto; height: 46px; max-width: 220px; display: block; object-fit: contain; flex-shrink: 0; }
.navbar-nav .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 600; font-size: .9rem; letter-spacing: .2px; padding: 8px 14px !important; border-radius: 10px; transition: color .2s, background .2s; font-family: 'Inter', sans-serif; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.1); }
#navbar .navbar-toggler i { color: #fff !important; }
.btn-nav { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff !important; padding: 10px 22px !important; border-radius: 999px !important; font-weight: 700 !important; font-size: .88rem !important; letter-spacing: .3px; transition: opacity .2s, transform .15s !important; white-space: nowrap; font-family: 'Inter', sans-serif; }
.btn-nav:hover { opacity: .92; transform: translateY(-1px); }
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(10,12,45,.97); border-radius: 16px; margin-top: 10px; padding: 16px 20px; box-shadow: 0 16px 48px rgba(0,0,0,.4); }
}
@media (max-width: 767px) {
  #navbar { padding: 14px 0; }
  #navbar .container { padding-left: 16px; padding-right: 16px; }
  .brand-logo { height: 34px; max-width: 150px; }
}

/* â”€â”€ DROPDOWN â”€â”€ */
.nav-dropdown { background: rgba(10,12,45,.97) !important; border: 1px solid rgba(0,194,255,.15) !important; border-radius: 12px !important; padding: 8px !important; min-width: 240px; box-shadow: 0 16px 40px rgba(0,0,0,.4) !important; margin-top: 8px !important; }
.nav-dropdown .dropdown-item { color: rgba(255,255,255,.8) !important; font-size: .88rem; font-weight: 500; padding: 10px 14px !important; border-radius: 8px; transition: background .2s, color .2s; }
.nav-dropdown .dropdown-item:hover, .nav-dropdown .dropdown-item:focus { background: rgba(0,194,255,.12) !important; color: #fff !important; }
.nav-dropdown .dropdown-item.active { background: rgba(0,194,255,.18) !important; color: #fff !important; }
.navbar-nav .dropdown-toggle::after { border-top-color: rgba(255,255,255,.7); vertical-align: .18em; }

/* â”€â”€ SHARED â”€â”€ */
section { padding: 96px 0; }
.section-badge { display: inline-flex; align-items: center; gap: 8px;   padding: 5px 14px; border-radius: 50px; font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border:1px solid rgba(255,255,255,.14) background:rgba(0,194,255,.08);color:var(--accent);border:1px solid rgba(0,194,255,.18)}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -.8px; margin-bottom: 14px; line-height: 1.15; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 580px; }
.divider-accent { width: 52px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 2px; margin: 14px 0 28px; }
.btn-primary-custom { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: .95rem; border: none; transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 14px 34px rgba(60,46,255,.18); }
.btn-primary-custom:hover { opacity: .94; transform: translateY(-2px); color: #fff; }
.btn-outline-custom { background: #fff; color: var(--primary); padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; border: 1.5px solid rgba(11,61,145,.18); transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-custom:hover { background: rgba(0,194,255,.05); border-color: rgba(11,61,145,.35); color: var(--primary); }

/* â”€â”€ REVEAL â”€â”€ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€ PAGE HERO â”€â”€ */
#page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 88px;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}
#page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 26, 0.6);
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  display: none;
}
.hero-glow {
  display: none;
}
.hero-intro {
  text-align: center;
}
#page-hero h1 {
  color: #f8fbff;
  font-size: clamp(2.1rem, 4.3vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
  text-shadow: 0 8px 30px rgba(0,0,0,.25);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.hero-highlight {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #2B6BE6 !important;
  color: #2B6BE6 !important;
}
.hero-sub {
  color: rgba(244,248,255,.84);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 980px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-actions {
  display: flex;
  justify-content: center;
}

/* â”€â”€ FIVE ADVANTAGES â”€â”€ */
#advantages { background: var(--white); padding-bottom: 0; }
#multi-modal { padding: 24px 0 40px; }

.advantage-showcase {
  position: relative;
  margin-bottom: 24px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(123,47,255,.10), transparent 34%),
    radial-gradient(circle at 70% 35%, rgba(0,194,255,.08), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f8f7ff 58%, #f5f9ff 100%);
  border: 1px solid rgba(123,47,255,.12);
  box-shadow: 0 20px 50px rgba(11,61,145,.10);
}
.advantage-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}
.advantage-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}
.advantage-showcase__content {
  color: var(--mid);
}
.adv-tag--showcase {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
}
.adv-tag--showcase i,
.adv-tag--showcase .adv-tag__text {
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
}
.advantage-showcase__content h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: var(--dark);
  margin-bottom: 18px;
}
.advantage-showcase__content h2 span {
  background: none;
  -webkit-text-fill-color: #2B6BE6;
  color: #2B6BE6;
}
.advantage-showcase__content p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 14px;
}
.advantage-showcase__content p strong {
  color: #2B6BE6;
  font-weight: 700;
}
.advantage-showcase__callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: min(100%, 560px);
  max-width: 560px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(123,47,255,.24);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(11,61,145,.08);
}
.advantage-showcase__callout-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B6BE6;
  background: radial-gradient(circle at top, rgba(43,107,230,.18), rgba(43,107,230,.08));
  border: 1px solid rgba(43,107,230,.18);
  font-size: 1.2rem;
}
.advantage-showcase__callout strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.advantage-showcase__callout p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.45;
  color: #2B6BE6;
  white-space: nowrap;
}
.advantage-showcase__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.advantage-showcase__visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 10%;
  bottom: 6%;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123,47,255,.42) 0%, rgba(123,47,255,0) 72%);
  filter: blur(14px);
  pointer-events: none;
}
.advantage-showcase__image {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
}
.advantage-showcase__compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.advantage-showcase__panel {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(11,61,145,.10);
  box-shadow: 0 10px 24px rgba(11,61,145,.06);
}
.advantage-showcase__panel--accent {
  background: linear-gradient(180deg, #fcfaff, #f7f2ff);
  border-color: rgba(123,47,255,.24);
  box-shadow: 0 12px 28px rgba(123,47,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advantage-showcase__panel-label {
  margin-bottom: 12px;
  color: rgba(55,65,81,.68);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: .8rem;
  font-weight: 700;
}
.advantage-showcase__panel--accent .advantage-showcase__panel-label {
  color: #7b8192;
}
.advantage-showcase__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(11,61,145,.08);
}
.advantage-showcase__feature + .advantage-showcase__feature {
  margin-top: 10px;
}
.advantage-showcase__feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
  border: 1px solid #93c5fd !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B6BE6;
  background: linear-gradient(145deg, rgba(43,107,230,.18) 0%, rgba(43,107,230,.08) 100%);
  border: 1px solid rgba(43,107,230,.25);
  font-size: 1.2rem;
}
.advantage-showcase__feature-icon i {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.advantage-showcase__feature-icon--accent {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
  border: 1px solid #93c5fd !important;
}
.advantage-showcase__icon-svg {
  width: 24px;
  height: 24px;
  display: block;
}
.advantage-showcase__feature strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 4px;
}
.advantage-showcase__feature span {
  display: block;
  color: var(--mid);
  line-height: 1.6;
  font-size: .95rem;
}
.advantage-showcase__vs {
  align-self: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  box-shadow: 0 0 24px rgba(147, 197, 253, .3);
}
.vs-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-scale {
  --gs-navy: #060d1f;
  --gs-navy-mid: #0b1730;
  --gs-navy-card: #122448;
  --gs-border: rgba(100,160,255,0.12);
  --gs-accent: #3a8bff;
  --gs-accent-soft: rgba(58,139,255,0.08);
  --gs-gold: #f0b429;
  --gs-teal: #1fcfb0;
  --gs-text-primary: #e8edf5;
  --gs-text-secondary: #8da0b8;
  --gs-text-muted: #4d6280;
  margin-bottom: 24px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 48px calc(50vw - 50%);
  border-radius: 0;
  background: #EBF0FB;
  color: var(--dark);
  overflow: visible;
  position: relative;
}
.global-scale__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
}
.gs-label-text {
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
}
.global-scale__label i {
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
  font-size: .78rem;
}
.global-scale__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 2.95rem);
  font-weight: 700;
  line-height: 1.08;
  color: #0d1326;
  margin-bottom: 16px;
  max-width: none;
  white-space: nowrap;
  letter-spacing: -.022em;
}
.global-scale__title em {
  font-style: normal;
  font-weight: 700;
  background: none;
  -webkit-text-fill-color: #2B6BE6;
  color: #2B6BE6;
  background-clip: unset;
  color: transparent;
}
.global-scale__intro {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 1120px;
  margin-bottom: 42px;
  font-weight: 300;
}
.global-scale__hero {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(11,61,145,.10);
  border-radius: 20px;
  padding: 44px 44px 36px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11,61,145,.08);
}
.global-scale__hero::before {
  display: none;
}
.global-scale__hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.global-scale__hero-text h3 {
  font-family: 'Inter', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}
.global-scale__hero-text p {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 26px;
  font-weight: 400;
  max-width: 640px;
}
.global-scale__tat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 8px;
}
.global-scale__tat-label > span:first-child {
  color: var(--gs-gold);
  font-weight: 600;
}
.global-scale__tat-note {
  color: var(--muted);
}
.global-scale__tat-bar {
  position: relative;
  height: 5px;
  background: rgba(11,61,145,.08);
  border-radius: 999px;
  margin-bottom: 8px;
}
.global-scale__tat-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gs-accent) 0%, var(--gs-teal) 55%, var(--gs-gold) 100%);
}
.global-scale__tat-sun {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gs-gold);
  box-shadow: 0 0 8px 3px rgba(240,180,41,0.35);
  transform: translateY(-50%);
  animation: global-scale-sun-move 8s linear infinite;
}
.global-scale__tat-ticks {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.global-scale__tat-ticks span {
  font-size: 10px;
  color: var(--muted);
}
.global-scale__stats {
  display: flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.global-scale__stat-value {
  font-family: 'Inter', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 6px;
}
.global-scale__stat-value sub {
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--gs-accent);
}
.global-scale__stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.global-scale__globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  order: -1;
}
.global-scale__globe-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  border-radius: 28px;
}
.global-scale__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.global-scale__card {
  background: #ffffff;
  border: 2px solid rgba(6,13,31,.92);
  border-radius: 28px;
  padding: 22px 20px 18px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.global-scale__card:hover {
  border-color: rgba(6,13,31,.92);
  box-shadow: 0 14px 30px rgba(11,61,145,.10);
  transform: translateY(-3px);
}
.global-scale__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.global-scale__card--blue {
  background: linear-gradient(145deg, rgba(20,64,150,.20) 0%, rgba(72,150,255,.10) 42%, #ffffff 100%);
  border-color: rgba(28,73,164,.92);
}
.global-scale__card--teal {
  background: linear-gradient(145deg, rgba(20,64,150,.20) 0%, rgba(72,150,255,.10) 42%, #ffffff 100%);
  border-color: rgba(28,73,164,.92);
}
.global-scale__card--gold {
  background: linear-gradient(145deg, rgba(20,64,150,.20) 0%, rgba(72,150,255,.10) 42%, #ffffff 100%);
  border-color: rgba(28,73,164,.92);
}
.global-scale__card--blue::before { background: linear-gradient(90deg, var(--gs-accent), transparent); }
.global-scale__card--teal::before { background: linear-gradient(90deg, var(--gs-accent), transparent); }
.global-scale__card--gold::before { background: linear-gradient(90deg, var(--gs-accent), transparent); }
.global-scale__card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.global-scale__card--blue .global-scale__card-icon { background: rgba(58,139,255,0.1); }
.global-scale__card--teal .global-scale__card-icon { background: rgba(58,139,255,0.1); }
.global-scale__card--gold .global-scale__card-icon { background: rgba(58,139,255,0.1); }
.global-scale__card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.global-scale__card p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 12px;
}
.global-scale__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
}
.global-scale__card--blue .global-scale__card-tag { color: var(--gs-accent); border-color: rgba(58,139,255,0.3); background: rgba(58,139,255,0.06); }
.global-scale__card--teal .global-scale__card-tag { color: var(--gs-accent); border-color: rgba(58,139,255,0.3); background: rgba(58,139,255,0.06); }
.global-scale__card--gold .global-scale__card-tag { color: var(--gs-accent); border-color: rgba(58,139,255,0.3); background: rgba(58,139,255,0.06); }

@keyframes global-scale-sun-move {
  0% { left: -6px; }
  100% { left: calc(100% - 8px); }
}

.open-platform {
  margin-bottom: 0;
  padding: 12px 0 0;
}
.open-platform__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  padding: 6px 16px;
  border-radius: 999px;
  color: #1e3a8a;
}
.open-platform__eyebrow i {
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
  font-size: .78rem;
  line-height: 1;
}
.open-platform__eyebrow-text {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
}
.open-platform__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 2.95rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.022em;
  color: #0d1326;
  margin-bottom: 12px;
  max-width: none;
  white-space: nowrap;
}
.open-platform__accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #2B6BE6;
  color: #2B6BE6;
  margin-left: .18em;
}
.open-platform__sub {
  font-size: .98rem;
  font-weight: 400;
  color: #62748a;
  max-width: 1040px;
  line-height: 1.78;
  margin-bottom: 26px;
}
.open-platform__diagram {
  width: 100%;
  display: block;
  margin-bottom: 22px;
}
@keyframes open-platform-ring-pulse-1 {
  0%, 100% { r: 70; opacity: .11; }
  50% { r: 84; opacity: .03; }
}
@keyframes open-platform-ring-pulse-2 {
  0%, 100% { r: 92; opacity: .07; }
  50% { r: 108; opacity: .02; }
}
@keyframes open-platform-hub-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .84; }
}
@keyframes open-platform-dash-flow {
  to { stroke-dashoffset: -28; }
}
@media (prefers-reduced-motion: no-preference) {
  .open-platform__ring-1 { animation: open-platform-ring-pulse-1 3.6s ease-in-out infinite; }
  .open-platform__ring-2 { animation: open-platform-ring-pulse-2 3.6s ease-in-out infinite .9s; }
  .open-platform__hub-group { animation: open-platform-hub-breathe 2.8s ease-in-out infinite; }
  .open-platform__dline { stroke-dasharray: 5 9; animation: open-platform-dash-flow 1.35s linear infinite; }
}
.open-platform__dline {
  stroke-dasharray: 5 9;
}
.open-platform__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.open-platform__card {
  background: #ffffff;
  border: 1px solid rgba(11,61,145,.10);
  border-radius: 16px;
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.open-platform__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.open-platform__card:hover {
  transform: translateY(-5px);
  border-color: rgba(11,61,145,.18);
  box-shadow: 0 16px 32px rgba(11,61,145,.08);
}
.open-platform__card--blue {
  background: linear-gradient(180deg, rgba(37,99,235,.14) 0%, rgba(37,99,235,.06) 18%, #ffffff 62%);
}
.open-platform__card--blue::before {
  background: #2563eb;
}
.open-platform__card--purple {
  background: linear-gradient(180deg, rgba(37,99,235,.14) 0%, rgba(37,99,235,.06) 18%, #ffffff 62%);
}
.open-platform__card--purple::before {
  background: #2563eb;
}
.open-platform__card--coral {
  background: linear-gradient(180deg, rgba(37,99,235,.14) 0%, rgba(37,99,235,.06) 18%, #ffffff 62%);
}
.open-platform__card--coral::before {
  background: #2563eb;
}
.open-platform__card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.open-platform__card--blue .open-platform__card-label {
  color: #2563eb;
}
.open-platform__card--purple .open-platform__card-label {
  color: #2563eb;
}
.open-platform__card--coral .open-platform__card-label {
  color: #2563eb;
}
.open-platform__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d1326;
  margin-bottom: 8px;
  line-height: 1.3;
}
.open-platform__card-body {
  font-size: .92rem;
  font-weight: 400;
  color: #62748a;
  line-height: 1.72;
}
.open-platform__closing {
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-bottom: 32px;
}
.open-platform__closing > div:not(.open-platform__closing-bar) {
  flex: 1;
}
.open-platform__closing-bar {
  width: 3px;
  min-width: 3px;
  height: auto;
  background: #2d5ba8;
  border-radius: 999px;
  opacity: .9;
  flex-shrink: 0;
  align-self: stretch;
}
.open-platform__closing-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0d1326;
  margin: 0 0 6px;
  line-height: 1.4;
}
.open-platform__closing-desc {
  font-size: .92rem;
  font-weight: 400;
  color: #62748a;
  margin: 0;
  line-height: 1.68;
  max-width: 700px;
  text-align: left;
  white-space: nowrap;
}

.production-built {
  position: relative;
  margin-bottom: 20px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 48px calc(50vw - 50%) 48px !important;
  border-radius: 0;
  background: #EBF0FB;
  border: none;
  overflow: visible;
}
.production-built::before {
  display: none;
}
.production-built::after {
  display: none;
}
.production-built__tag-row {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  box-shadow: 0 8px 18px rgba(147,197,253,.15);
}
.production-built__tag-row i {
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
  font-size: .78rem;
  line-height: 1;
}
.production-built__tag-label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: #1e3a8a;
  color: #1e3a8a;
}
.production-built__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 0;
}
.production-built__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 700;
  color: #0d1326;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 14px;
  white-space: normal;
}
.production-built__title span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #2B6BE6;
  color: #2B6BE6;
}
.production-built__body {
  max-width: none;
  font-size: .98rem;
  line-height: 1.85;
  color: #64727e;
  margin-bottom: 28px;
}
.production-built__quote {
  border-left: 2px solid #2563eb;
  padding-left: 20px;
  margin-bottom: 28px;
}
.production-built__quote p {
  font-family: 'Inter', serif;
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1.34;
  color: #8c8d86;
  margin: 0;
  white-space: normal;
}
.production-built__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.production-built__pill {
  font-size: 10.5px;
  border: 1px solid rgba(11,61,145,.12);
  background: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: .06em;
  font-weight: 600;
}
.production-built__pill--blue {
  color: #2563eb;
  border-color: rgba(37,99,235,.34);
  background: linear-gradient(180deg, rgba(37,99,235,.22) 0%, rgba(37,99,235,.12) 55%, rgba(255,255,255,.98) 100%);
}
.production-built__pill--purple {
  color: #2563eb;
  border-color: rgba(37,99,235,.34);
  background: linear-gradient(180deg, rgba(37,99,235,.22) 0%, rgba(37,99,235,.12) 55%, rgba(255,255,255,.98) 100%);
}
.production-built__pill--coral {
  position: relative;
  color: #2563eb;
  border-color: rgba(37,99,235,.34);
  background: linear-gradient(180deg, rgba(37,99,235,.22) 0%, rgba(37,99,235,.12) 55%, rgba(255,255,255,.98) 100%);
  -webkit-text-fill-color: #2563eb;
}
.production-built__pill--coral::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: inherit;
  z-index: -1;
}
.production-built__diagram-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.production-built__diagram-wrap > .production-built__diagram:not(.production-built__diagram--enhanced) {
  display: none;
}
.production-built__diagram {
  width: 100%;
  max-width: 460px;
  display: block;
  overflow: visible;
}
@keyframes production-built-ring-pulse {
  0%, 100% { opacity: .18; }
  50% { opacity: .06; }
}
@keyframes production-built-arc-flow {
  to { stroke-dashoffset: -32; }
}
.production-built__ring-pulse {
  animation: production-built-ring-pulse 3.4s ease-in-out infinite;
}
.production-built__orbit-ring {
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  animation: production-built-arc-flow 2.8s linear infinite;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 52px 56px;
  border-radius: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity .3s;
}
.advantage-card:hover { border-color: rgba(0,194,255,.2); box-shadow: var(--shadow-lg); }
.advantage-card:hover::before { opacity: 1; }
.advantage-card--alt { background: var(--light); }
.advantage-card--alt::before { background: linear-gradient(180deg, var(--teal), var(--teal-dark)); }

/* Number badge */
.adv-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  width: 110px;
  text-align: center;
  padding-top: 6px;
  letter-spacing: -3px;
  opacity: .12;
  transition: opacity .3s;
}
.advantage-card:hover .adv-num { opacity: .2; }
.adv-num--navy { color: var(--dark); }
.adv-num--teal { color: var(--teal-dark); }

/* Body */
.adv-body { flex: 1; }
.adv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,255,.08);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(0,194,255,.18);
  margin-bottom: 14px;
}
.adv-tag--teal {
  background: rgba(38,198,218,.1);
  color: var(--teal);
  border-color: rgba(38,198,218,.25);
}
.adv-body h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -.5px;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.25;
}
.adv-body p {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 12px;
}
.adv-body p:last-child { margin-bottom: 0; }

/* â”€â”€ BOOK A CALL / CTA â”€â”€ */
#cta { background: var(--light); }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: #fff; border-radius: 16px; margin-bottom: 14px; border: 1px solid var(--border); transition: all .3s; }
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(0,194,255,.2); }
.contact-info-icon { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon i { color: #fff; font-size: 1.1rem; }
.contact-info-title { font-weight: 700; font-size: .86rem; color: var(--dark); margin-bottom: 3px; }
.contact-info-text { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.55; }
.contact-form-wrap { background: #fff; border-radius: 22px; padding: 40px; border: 1px solid var(--border); }
.contact-form-wrap h4 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap p { font-size: .86rem; color: var(--muted); margin-bottom: 26px; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: .86rem; color: var(--dark); background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,194,255,.1); outline: none; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; }

/* â”€â”€ FOOTER â”€â”€ */
#footer { background: var(--dark-alt); padding-top: 72px; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: auto; height: 38px; max-width: 160px; display: block; object-fit: contain; flex-shrink: 0; }
.footer-brand span { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; }
.footer-brand span em { color: var(--accent); font-style: normal; }
.footer-about { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.8; margin-bottom: 24px; max-width: 290px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem; transition: all .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-heading { font-size: .76rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .85rem; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: 'â€º'; color: var(--accent); font-size: 1rem; }
.footer-links a:hover { color: #fff; }
.footer-newsletter input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; color: #fff; padding: 11px 14px; font-size: .83rem; width: 100%; margin-bottom: 10px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter input:focus { outline: none; border-color: var(--accent); }
.footer-newsletter button { width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border: none; border-radius: 8px; padding: 11px; font-size: .84rem; font-weight: 600; cursor: pointer; transition: opacity .2s; }
.footer-newsletter button:hover { opacity: .88; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 52px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); font-size: .8rem; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* â”€â”€ SCROLL TOP â”€â”€ */
#scrollTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; cursor: pointer; z-index: 999; opacity: 0; transform: translateY(18px); transition: all .3s; border: none; box-shadow: 0 8px 24px rgba(0,194,255,.35); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-3px); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 991px) {
  section { padding: 72px 0; }
  #page-hero { min-height: auto; padding: 120px 0 64px; }
  .advantage-showcase { padding: 28px; }
  .advantage-showcase__top { grid-template-columns: 1fr; }
  .advantage-showcase__visual { max-width: 680px; margin: 0 auto; }
  .advantage-showcase__compare { grid-template-columns: 1fr; }
  .advantage-showcase__vs { margin: 0 auto; }
  .global-scale { padding: 0; }
  .global-scale__title { white-space: normal; }
  .global-scale__hero { padding: 32px 28px; }
  .global-scale__hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .global-scale__globe-wrap { order: -1; }
  .global-scale__globe-image { max-width: 360px; }
  .global-scale__stats { gap: 32px; }
  .global-scale__cards { grid-template-columns: 1fr; }
  .global-scale__card { min-height: auto; padding: 24px 24px 20px; }
  .open-platform__cards { grid-template-columns: 1fr; }
  .production-built { padding: 12px 0 0; }
  .production-built__grid { grid-template-columns: 1fr; gap: 28px; }
  .production-built__body { max-width: none; }
  .production-built__diagram { max-width: 320px; }
  .advantage-card { gap: 28px; padding: 36px 32px; }
  .adv-num { font-size: 3.5rem; width: 80px; }
}
@media (max-width: 767px) {
  #navbar { background: rgba(12,14,48,.95) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  #page-hero { min-height: auto; padding: 100px 0 52px; }
  #page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); letter-spacing: -1px; }
  .advantage-showcase { padding: 22px; border-radius: 24px; }
  .advantage-showcase__content h2 { font-size: clamp(1.8rem, 10vw, 2.7rem); }
  .advantage-showcase__content p { font-size: .96rem; }
  .advantage-showcase__callout { padding: 18px; }
  .advantage-showcase__panel { padding: 20px; }
  .advantage-showcase__feature { padding: 14px; }
  .advantage-showcase__vs { width: 62px; height: 62px; font-size: 1.15rem; }
  .global-scale { padding: 0 16px; border-radius: 0; margin-left: 0; margin-right: 0; overflow: hidden; }
  .global-scale__title { font-size: clamp(1.6rem, 7vw, 2.2rem); white-space: normal; }
  .global-scale__intro { font-size: .92rem; margin-bottom: 28px; }
  .global-scale__hero { padding: 24px 20px; }
  .global-scale__hero-text h3 { font-size: 1.75rem; }
  .global-scale__hero-text p { font-size: .94rem; }
  .global-scale__tat-label { flex-wrap: wrap; }
  .global-scale__tat-ticks { gap: 8px; }
  .global-scale__stats { gap: 22px; margin-top: 28px; }
  .global-scale__stat-value { font-size: 2.45rem; }
  .global-scale__card { padding: 22px 18px 18px; border-radius: 22px; }
  .global-scale__card p { font-size: .92rem; }
  .open-platform { padding-top: 8px; }
  .open-platform__title { font-size: clamp(1.95rem, 10vw, 2.8rem); white-space: normal; }
  .open-platform__sub { font-size: .94rem; margin-bottom: 28px; }
  .open-platform__diagram { margin-bottom: 26px; }
  .open-platform__card { padding: 20px 18px 22px; }
  .open-platform__closing { gap: 14px; }
  .open-platform__closing-title { font-size: 1rem; }
  .open-platform__closing-desc { font-size: .9rem; white-space: normal; }
  .production-built { padding: 12px 0 0; }
  .production-built__tag-row { margin-bottom: 10px; }
  .production-built__title { font-size: clamp(1.95rem, 10vw, 2.9rem); white-space: normal; }
  .production-built__body { font-size: .94rem; margin-bottom: 22px; }
  .production-built__quote { padding-left: 16px; margin-bottom: 22px; }
  .production-built__quote p { font-size: 1.55rem; white-space: normal; }
  .production-built__diagram { max-width: 280px; }
  .advantage-card { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .adv-num { width: auto; font-size: 2.8rem; opacity: .15; }
}

/* ============================================================
   MULTI-MODAL SECTION (Section 06)
   ============================================================ */
:root {
  --mm-amber: #B87B2A;
  --mm-navy: #0D1B2A;
  --mm-na: #4BB5DA;
  --mm-na-lt: rgba(75,181,218,.13);
  --mm-na-bd: rgba(75,181,218,.28);
  --mm-plum: #1E0E1C;
  --mm-pa: #D46FA0;
  --mm-pa-lt: rgba(212,111,160,.13);
  --mm-pa-bd: rgba(212,111,160,.28);
  --mm-forest: #081510;
  --mm-fa: #35D890;
  --mm-fa-bd: rgba(53,216,144,.24);
  --mm-fa-lt: rgba(53,216,144,.09);
  --mm-th: #151009;
  --mm-tb: #6C645A;
  --mm-tm: #A89E90;
  --mm-div: rgba(21,16,9,.1);
}

.mm-section {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Header */
.mm-hdr {
  padding: 0 0 20px 0;
  position: relative;
  border-bottom: none;
}

.mm-hrow {
  display: none;
}
.mm-htitle {
  font-size: clamp(1.9rem, 3.7vw, 2.95rem);
  font-weight: 700;
  color: #0d1326;
  letter-spacing: -.022em;
  line-height: 1.08;
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
  text-align: left;
}
.mm-htitle em {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #2B6BE6;
  color: #2B6BE6;
}
.mm-hsub {
  font-size: .98rem;
  line-height: 1.78;
  color: #62748a;
  max-width: 100%;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

/* Arena */
.mm-arena {
  padding: 8px 0 0;
  display: block;
  background: transparent;
}
.mm-trio {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
}

/* Hex column */
.mm-hcol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Hex shape */
.mm-hex {
  width: 310px;
  height: 357px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}
.mm-hex:hover { transform: translateY(-6px) scale(1.02); }
.mm-hn { background: linear-gradient(145deg, rgba(75,169,255,0.10) 0%, rgba(168,124,255,0.07) 100%); }
.mm-hp { background: linear-gradient(145deg, rgba(168,124,255,0.10) 0%, rgba(75,169,255,0.07) 100%); }
.mm-hf { background: linear-gradient(145deg, rgba(75,169,255,0.08) 0%, rgba(168,124,255,0.08) 100%); }

.mm-hin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  /* pad-top pushes past the clipped 25% zone (~89px) so icon always starts at same Y */
  padding: 92px 36px 32px;
  gap: 12px;
  width: 100%;
}

.mm-hbadge {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  opacity: .75;
}
.mm-hn .mm-hbadge { color: #4b7fff; }
.mm-hp .mm-hbadge { color: #2563eb; }
.mm-hf .mm-hbadge { color: #4b7fff; }

.mm-hname {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}
.mm-hn .mm-hname { color: #1a1a2e; }
.mm-hp .mm-hname { color: #1a1a2e; }
.mm-hf .mm-hname {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #111111;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #111111;
}

.mm-hdesc {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.mm-hn .mm-hdesc { color: #2a4a7f; }
.mm-hp .mm-hdesc { color: #4a2a7f; }
.mm-hf .mm-hdesc { color: #2a4a7f; }

/* Tags */
.mm-htags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  max-width: 260px;
}
.mm-htag {
  font-size: 9.5px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 400;
  background: transparent;
}
.mm-htag--na { color: var(--mm-na); border: 1px solid var(--mm-na-bd); }
.mm-htag--pa { color: var(--mm-pa); border: 1px solid var(--mm-pa-bd); }
.mm-hf-tag {
  color: #2563eb;
  background: transparent;
  border: 1px solid rgba(123,92,255,.35);
  font-size: 9.5px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 400;
}
.mm-hf-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 260px;
}

/* CTA */
.mm-fcta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: #2563eb;
  border: 1px solid rgba(123,92,255,.35);
  background: rgba(123,92,255,.06);
  padding: 9px 18px;
  border-radius: 22px;
  letter-spacing: .07em;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.mm-fcta:hover { background: rgba(123,92,255,.12); border-color: rgba(123,92,255,.55); }

/* Connector: + Separate vendors */
.mm-conn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  align-self: flex-start;
  height: 357px;
}
.mm-conn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mm-cline { width: 1px; height: 70px; background: var(--mm-div); }
.mm-cball {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168,124,255,0.06);
  border: 1px solid rgba(168,124,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mm-tm);
  flex-shrink: 0;
}
.mm-clbl {
  font-size: 7.5px;
  color: var(--mm-tm);
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
  max-width: 50px;
  line-height: 1.55;
}

/* Arrow connector: unified */
.mm-aconn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  align-self: flex-start;
  height: 357px;
}
.mm-aline { width: 1px; flex: 1; background: var(--mm-div); }
.mm-albl { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.mm-aarrow { font-size: 20px; color: #2563eb; opacity: .7; }
.mm-atxt {
  font-size: 7.5px;
  color: var(--mm-tm);
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
  max-width: 56px;
  line-height: 1.55;
}

/* Pulse animation */
@keyframes mm-rpulse {
  0%, 100% { opacity: .22; }
  50%       { opacity: .05; }
}
.mm-rpulse {
  animation: mm-rpulse 3.2s ease-in-out infinite;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

/* Responsive */
@media (max-width: 1200px) {
  .mm-hex { width: 270px; height: 311px; }
  .mm-conn, .mm-aconn { height: 311px; }
  /* 25% of 311px ≈ 78px */
  .mm-hin { padding: 80px 30px 28px; }
  .mm-hname { font-size: 24px; }
  .mm-hf .mm-hname { font-size: 24px; }
  .mm-hdesc { font-size: 12px; }
}
@media (max-width: 980px) {
  .mm-hex { width: 220px; height: 253px; }
  .mm-conn, .mm-aconn { height: 253px; }
  /* 25% of 253px ≈ 63px */
  .mm-hin { padding: 65px 22px 22px; gap: 9px; }
  .mm-hname { font-size: 20px; }
  .mm-hf .mm-hname { font-size: 20px; }
  .mm-hdesc { font-size: 11px; }
}
@media (max-width: 860px) {
  .mm-hdr { padding: 48px 40px 40px; }
  .mm-hdr::before { left: 40px; }
  .mm-trio { flex-direction: column; gap: 0; }
  .mm-conn, .mm-aconn { flex-direction: row; height: auto; width: 100%; padding: 8px 0; align-self: auto; }
  .mm-conn-inner { flex-direction: row; }
  .mm-cline { width: 60px; height: 1px; flex: none; }
  .mm-aline { height: 1px; width: auto; flex: 1; }
  .mm-hex { width: 280px; height: 322px; }
  /* 25% of 322px ≈ 80px */
  .mm-hin { padding: 82px 28px 28px; }
  .mm-htitle { font-size: 38px; }
}
@media (max-width: 560px) {
  .mm-hdr { padding: 40px 24px 36px; }
  .mm-hdr::before { left: 24px; }
  .mm-htitle { font-size: 32px; }
  .mm-section { border-radius: 14px; }
}
    [style*="#dbeafe"] i{background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 50%,#60a5fa 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}