/* =========================================================
   Digital Morphix — polished AI + IT homepage (v2)
   ========================================================= */

:root {
  --mx-blue: #006fed;
  --mx-blue-2: #0057c2;
  --mx-orange: #ff6600;
  --mx-ink: #0b1220;
  --mx-muted: #5b6b7c;
  --mx-line: #e6eef8;
  --mx-soft: #f3f7fd;
  --mx-navy: #07111f;
  --font: 'Plus Jakarta Sans', sans-serif;
  --header-h: 92px;
  --r: 22px;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.11);
  --shadow-sm: 0 10px 28px rgba(7, 17, 31, 0.06);
}

@keyframes mx-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,.08); }
}

body:is(.page-home, .page-service) {
  padding-top: 0;
  font-family: var(--font);
  color: var(--mx-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body:is(.page-home, .page-service) [data-animate] {
  opacity: 1 !important;
  transform: none !important;
}

/* Header — clean overlay → crisp solid */
body:is(.page-home, .page-service) .header {
  height: var(--header-h);
  background: rgba(4, 11, 22, .28);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, height .25s ease;
}
body:is(.page-home, .page-service) .header.is-scrolled,
body:is(.page-home, .page-service) .header.is-menu-open {
  height: 80px;
  background: #fff;
  border-bottom-color: #e8eef6;
  box-shadow: 0 8px 24px rgba(7,17,31,.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body:is(.page-home, .page-service) .header .nav {
  max-width: 1180px;
  height: 100%;
  padding: 0 28px;
}
body:is(.page-home, .page-service) .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
body:is(.page-home, .page-service) .logo a {
  position: relative;
  display: block;
  line-height: 0;
}
body:is(.page-home, .page-service) .logo-img {
  filter: none !important;
  width: 100px !important;
  max-width: none !important;
  height: auto !important;
  max-height: 64px;
  display: block;
  transition: max-height .25s ease, width .25s ease;
}
/* Dark overlay header: show light logo (white Morphix/bars) */
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .logo-img--light {
  display: none !important;
}
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .logo-img--dark {
  display: block !important;
}
/* Scrolled / open menu / default pages: dark logo on white */
body:is(.page-home, .page-service) .header.is-scrolled .logo-img--dark,
body:is(.page-home, .page-service) .header.is-menu-open .logo-img--dark,
body:not(.page-home):not(.page-service) .logo-img--dark {
  display: none !important;
}
body:is(.page-home, .page-service) .header.is-scrolled .logo-img--light,
body:is(.page-home, .page-service) .header.is-menu-open .logo-img--light,
body:not(.page-home):not(.page-service) .logo-img--light {
  display: block !important;
}
body:is(.page-home, .page-service) .header.is-scrolled .logo-img,
body:is(.page-home, .page-service) .header.is-menu-open .logo-img {
  width: 90px !important;
  max-height: 52px;
}
body:is(.page-home, .page-service) .main-nav {
  gap: 6px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}
body:is(.page-home, .page-service) .main-nav > a:not(.btn-nav) {
  position: relative;
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: -.01em;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 8px 12px !important;
  transition: color .2s ease;
}
body:is(.page-home, .page-service) .main-nav > a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .9;
  display: block;
}
body:is(.page-home, .page-service) .main-nav > a:not(.btn-nav):hover::after,
body:is(.page-home, .page-service) .main-nav > a.is-active:not(.btn-nav)::after {
  transform: scaleX(1);
}
/* Over hero — light text */
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a:not(.btn-nav) {
  color: rgba(255,255,255,.82) !important;
}
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a:not(.btn-nav):hover,
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a.is-active:not(.btn-nav) {
  color: #fff !important;
  background: transparent !important;
}
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .menu-toggle span {
  background: #fff;
}
/* Scrolled — dark text */
body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a:not(.btn-nav),
body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a:not(.btn-nav) {
  color: #334155 !important;
}
body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a:not(.btn-nav):hover,
body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a.is-active:not(.btn-nav),
body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a:not(.btn-nav):hover,
body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a.is-active:not(.btn-nav) {
  color: var(--mx-blue) !important;
  background: transparent !important;
  box-shadow: none !important;
}
body:is(.page-home, .page-service) .header.is-scrolled .menu-toggle span,
body:is(.page-home, .page-service) .header.is-menu-open .menu-toggle span {
  background: var(--mx-ink);
}
body:is(.page-home, .page-service) .btn-nav {
  margin-left: 10px !important;
  background: #006fed !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border: none !important;
  box-shadow: none !important;
  transition: background .2s ease, transform .2s ease !important;
}
body:is(.page-home, .page-service) .btn-nav:hover {
  background: #0057c2 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: none !important;
  filter: none;
}
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .btn-nav {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  backdrop-filter: blur(8px);
}
body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .btn-nav:hover {
  background: #fff !important;
  color: #0b1220 !important;
  border-color: #fff !important;
}
body:is(.page-home, .page-service) .menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  padding: 9px;
}
body:is(.page-home, .page-service) .header.is-scrolled .menu-toggle,
body:is(.page-home, .page-service) .header.is-menu-open .menu-toggle {
  border-color: #dbe5f0;
  background: transparent;
}
body:is(.page-home, .page-service) .menu-toggle span {
  height: 2px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  body:is(.page-home, .page-service) .header .nav { padding: 0 18px; }
  body:is(.page-home, .page-service) .main-nav {
    background: #fff !important;
    border-bottom: 1px solid var(--mx-line) !important;
    padding: 10px 14px 18px !important;
    box-shadow: 0 12px 30px rgba(7,17,31,.08) !important;
  }
  body:is(.page-home, .page-service) .main-nav > a:not(.btn-nav)::after {
    display: none;
  }
  body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a:not(.btn-nav),
  body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a:not(.btn-nav),
  body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a:not(.btn-nav) {
    color: #243447 !important;
  }
  body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a:not(.btn-nav):hover,
  body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .main-nav > a.is-active:not(.btn-nav),
  body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a:not(.btn-nav):hover,
  body:is(.page-home, .page-service) .header.is-scrolled .main-nav > a.is-active:not(.btn-nav),
  body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a:not(.btn-nav):hover,
  body:is(.page-home, .page-service) .header.is-menu-open .main-nav > a.is-active:not(.btn-nav) {
    color: var(--mx-blue) !important;
    background: rgba(0,111,237,.06) !important;
  }
  body:is(.page-home, .page-service) .logo-img {
    width: 92px !important;
    max-height: 58px;
  }
  body:is(.page-home, .page-service) .btn-nav,
  body:is(.page-home, .page-service) .header:not(.is-scrolled):not(.is-menu-open) .btn-nav {
    margin: 10px 0 0 !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    background: #006fed !important;
    color: #fff !important;
    border: none !important;
  }
}

/* Shared */
.mx-label {
  margin: 0 0 12px;
  color: var(--mx-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mx-label--light { color: #8ec5ff; }
.mx-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.mx-head h2 {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.12;
  color: var(--mx-ink);
  background: none !important;
  -webkit-text-fill-color: unset !important;
}
.mx-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--mx-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.mx-section { padding: 100px 0; background: #fff; }
.mx-section--soft { background: var(--mx-soft); }

.mx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .96rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: .22s ease;
}
.mx-btn--primary {
  background: linear-gradient(135deg, #1a86ff, #006fed);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,111,237,.32);
}
.mx-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,111,237,.4);
}
.mx-btn--ghost {
  background: #fff;
  color: var(--mx-ink);
  border-color: #d5e3f4;
  box-shadow: var(--shadow-sm);
}
.mx-btn--ghost:hover {
  border-color: #9ec3ef;
  color: var(--mx-blue);
}
.mx-btn--light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.mx-btn--light:hover { background: rgba(255,255,255,.18); color: #fff; }

.mx-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.mx-actions--center { justify-content: center; }
.mx-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--mx-blue);
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.mx-link:hover { gap: 10px; color: var(--mx-orange); }
.mx-link--light { color: #8ec5ff; }
.mx-link--light:hover { color: #fff; }

/* ========== AI HERO (product studio feel) ========== */
.ai-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 48px) 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0,111,237,.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(255,102,0,.12), transparent 50%),
    linear-gradient(180deg, #040b16 0%, #081525 42%, #0c1f3d 100%);
  color: #fff;
}
.ai-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .85;
}
.ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: ai-orb-drift 12s ease-in-out infinite;
}
.ai-orb--1 {
  width: 460px; height: 460px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(0,111,237,.5), transparent 68%);
}
.ai-orb--2 {
  width: 400px; height: 400px;
  right: -80px; bottom: -160px;
  background: radial-gradient(circle, rgba(255,102,0,.32), transparent 68%);
  animation-delay: -4s;
}
.ai-orb--3 {
  width: 280px; height: 280px;
  left: 42%; top: 18%;
  background: radial-gradient(circle, rgba(56,189,248,.26), transparent 70%);
  animation-delay: -7s;
}
@keyframes ai-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(22px, -26px) scale(1.1); }
}

.ai-aurora {
  position: absolute;
  inset: -20% -10%;
  background: conic-gradient(from 180deg at 50% 50%,
    transparent 0deg,
    rgba(0,111,237,.08) 60deg,
    transparent 120deg,
    rgba(255,102,0,.06) 200deg,
    transparent 280deg,
    rgba(56,189,248,.07) 340deg,
    transparent 360deg);
  animation: ai-aurora-spin 28s linear infinite;
  opacity: .7;
}
@keyframes ai-aurora-spin {
  to { transform: rotate(360deg); }
}

.ai-scan {
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(110,182,255,.07), transparent);
  animation: ai-scan-move 7s ease-in-out infinite;
  opacity: .8;
}
@keyframes ai-scan-move {
  0% { top: -20%; }
  100% { top: 110%; }
}

.ai-float-words {
  position: absolute;
  inset: 0;
}
.ai-float-words span {
  position: absolute;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(142, 197, 255, .32);
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(0,111,237,.25);
  animation: ai-word-float 16s linear infinite;
}
.ai-float-words span:nth-child(1) { left: 8%; top: 18%; animation-duration: 18s; }
.ai-float-words span:nth-child(2) { left: 22%; top: 72%; animation-duration: 22s; animation-delay: -3s; }
.ai-float-words span:nth-child(3) { left: 48%; top: 12%; animation-duration: 15s; animation-delay: -6s; }
.ai-float-words span:nth-child(4) { left: 70%; top: 64%; animation-duration: 20s; animation-delay: -2s; }
.ai-float-words span:nth-child(5) { left: 84%; top: 28%; animation-duration: 17s; animation-delay: -8s; }
.ai-float-words span:nth-child(6) { left: 12%; top: 48%; animation-duration: 21s; animation-delay: -5s; }
.ai-float-words span:nth-child(7) { left: 58%; top: 80%; animation-duration: 19s; animation-delay: -1s; }
.ai-float-words span:nth-child(8) { left: 78%; top: 10%; animation-duration: 23s; animation-delay: -9s; }
.ai-float-words span:nth-child(9) { left: 35%; top: 38%; animation-duration: 16s; animation-delay: -4s; }
.ai-float-words span:nth-child(10) { left: 90%; top: 50%; animation-duration: 24s; animation-delay: -7s; }
.ai-float-words span:nth-child(11) { left: 4%; top: 86%; animation-duration: 18s; animation-delay: -10s; }
.ai-float-words span:nth-child(12) { left: 40%; top: 58%; animation-duration: 20s; animation-delay: -11s; }
@keyframes ai-word-float {
  0% { transform: translateY(18px); opacity: 0; }
  15% { opacity: .6; }
  50% { transform: translateY(-18px); opacity: .38; }
  85% { opacity: .55; }
  100% { transform: translateY(-40px); opacity: 0; }
}
.ai-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 40%, #000 15%, transparent 72%);
  opacity: .5;
}

.ai-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.ai-hero__copy {
  animation: ai-copy-in .8s ease both;
}
@keyframes ai-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(142,197,255,.32);
  background: linear-gradient(90deg, rgba(0,111,237,.22), rgba(255,102,0,.08));
  color: #c8e2ff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 0 24px rgba(0,111,237,.15);
}
.ai-hero__badge span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: mx-pulse 1.8s ease-in-out infinite;
}

.ai-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.ai-hero__copy h1 span {
  background: linear-gradient(110deg, #9fd0ff 0%, #3b9dff 35%, #ff9a4d 70%, #6eb6ff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ai-text-shine 5s linear infinite;
}
@keyframes ai-text-shine {
  to { background-position: 220% center; }
}
.ai-hero__lead {
  margin: 0 0 26px;
  max-width: 36rem;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  line-height: 1.75;
}
.ai-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.ai-cta-glow {
  box-shadow: 0 14px 36px rgba(0,111,237,.42), 0 0 0 0 rgba(0,111,237,.35) !important;
  animation: ai-cta-pulse 2.8s ease-in-out infinite;
}
@keyframes ai-cta-pulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(0,111,237,.42), 0 0 0 0 rgba(0,111,237,.3); }
  50% { box-shadow: 0 16px 42px rgba(0,111,237,.55), 0 0 0 10px rgba(0,111,237,0); }
}
.ai-hero .mx-btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.ai-hero .mx-btn--ghost:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}

.ai-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin-bottom: 22px;
}
.ai-hero__proof > div {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.ai-hero__proof strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, #fff, #8ec5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-hero__proof span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ai-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-hero__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 700;
  transition: .2s ease;
}
.ai-hero__tags span:hover {
  background: rgba(0,111,237,.18);
  border-color: rgba(142,197,255,.4);
  transform: translateY(-2px);
}

/* AI product panel */
.ai-hero__stage {
  position: relative;
  animation: ai-stage-in .9s .15s ease both;
}
@keyframes ai-stage-in {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ai-hero__stage::before {
  content: '';
  position: absolute;
  inset: -18% -12% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,111,237,.4), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  animation: ai-orb-drift 10s ease-in-out infinite;
}

.ai-float-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #d7ebff;
  background: rgba(8, 18, 34, .85);
  border: 1px solid rgba(142,197,255,.35);
  box-shadow: 0 12px 28px rgba(0,0,0,.3), 0 0 20px rgba(0,111,237,.15);
  backdrop-filter: blur(10px);
  animation: ai-chip-float 5s ease-in-out infinite;
}
.ai-float-chip--1 { top: 12%; left: -8px; }
.ai-float-chip--2 { top: 46%; right: -10px; animation-delay: -1.6s; color: #ffd2b0; border-color: rgba(255,102,0,.35); }
.ai-float-chip--3 { bottom: 18%; left: 6%; animation-delay: -3s; }
@keyframes ai-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ai-panel {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(16, 32, 58, .97) 0%, rgba(7, 16, 32, .96) 55%, rgba(12, 26, 52, .97) 100%);
  border: 1px solid rgba(142,197,255,.32);
  box-shadow:
    0 36px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 80px rgba(0,111,237,.16);
  backdrop-filter: blur(14px);
}
.ai-panel__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.07) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: ai-panel-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes ai-panel-shine {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}
.ai-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(0,111,237,.16), rgba(255,255,255,.03));
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 700;
}
.ai-dots { display: flex; gap: 6px; }
.ai-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: #334155;
  display: block;
}
.ai-dots i:nth-child(1) { background: #ff5f57; }
.ai-dots i:nth-child(2) { background: #febc2e; }
.ai-dots i:nth-child(3) { background: #28c840; }
.ai-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  color: #86efac;
  font-size: .75rem;
  font-weight: 800;
}
.ai-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: mx-pulse 1.6s ease-in-out infinite;
}

.ai-panel__pipe {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
  overflow-x: auto;
}
.ai-panel__pipe span {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}
.ai-panel__pipe span.is-on {
  color: #b9d9ff;
  border-color: rgba(0,111,237,.45);
  background: rgba(0,111,237,.22);
  box-shadow: 0 0 16px rgba(0,111,237,.2);
}
.ai-panel__pipe span.is-pulse {
  color: #ffd2b0;
  border-color: rgba(255,102,0,.45);
  background: rgba(255,102,0,.16);
  animation: ai-ship-pulse 1.8s ease-in-out infinite;
}
@keyframes ai-ship-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,.25); }
  50% { box-shadow: 0 0 0 6px rgba(255,102,0,0); }
}
.ai-panel__pipe i {
  width: 14px;
  height: 1px;
  background: rgba(142,197,255,.35);
  flex-shrink: 0;
}

.ai-panel__body { position: relative; z-index: 1; padding: 16px; }
.ai-chat {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 168px;
}
.ai-build {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.2), rgba(255,102,0,.1)),
    rgba(255,255,255,.02);
  border: 1px solid rgba(142,197,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.ai-build__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.ai-build__row span {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ai-build__row strong {
  color: #fff;
  font-size: .92rem;
}
.ai-build__bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 8px;
}
.ai-build__bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a86ff, #6eb6ff 45%, #ff8a3d);
  box-shadow: 0 0 12px rgba(0,111,237,.5);
  animation: ai-build-fill 2.2s ease forwards, ai-build-pulse 2.4s ease-in-out 2.2s infinite;
}
@keyframes ai-build-fill {
  to { width: 78%; }
}
@keyframes ai-build-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.28); }
}
.ai-build__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.ai-build__meta em {
  font-style: normal;
  font-size: .74rem;
  font-weight: 700;
  color: #8ec5ff;
}
.ai-build__pct { color: #ffb078 !important; }
.ai-build__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ai-build__chips span {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
}
.ai-msg {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition: opacity .45s ease, transform .45s ease;
}
.ai-msg.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ai-msg strong {
  display: block;
  margin-bottom: 4px;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ai-msg p { margin: 0; color: rgba(255,255,255,.92); }
.ai-msg--bot {
  background: rgba(0,111,237,.2);
  border: 1px solid rgba(0,111,237,.32);
  justify-self: start;
  border-bottom-left-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,111,237,.12);
}
.ai-msg--user {
  background: rgba(255,102,0,.18);
  border: 1px solid rgba(255,102,0,.32);
  justify-self: end;
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 20px rgba(255,102,0,.1);
}

.ai-typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,111,237,.16);
  border: 1px solid rgba(0,111,237,.25);
  width: fit-content;
}
.ai-typing[hidden] { display: none !important; }
.ai-typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8ec5ff;
  display: block;
  animation: ai-dot 1s ease-in-out infinite;
}
.ai-typing i:nth-child(2) { animation-delay: .15s; }
.ai-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes ai-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: .4; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.ai-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ai-mini {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  transition: .25s ease;
  animation: ai-mini-in .6s ease both;
}
.ai-mini:nth-child(1) { animation-delay: .15s; }
.ai-mini:nth-child(2) { animation-delay: .25s; }
.ai-mini:nth-child(3) { animation-delay: .35s; }
.ai-mini:nth-child(4) { animation-delay: .45s; }
@keyframes ai-mini-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-mini:hover {
  background: rgba(0,111,237,.16);
  border-color: rgba(142,197,255,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.ai-mini em {
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  color: #ffb078;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.ai-mini strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .88rem;
}
.ai-mini span {
  color: rgba(255,255,255,.62);
  font-size: .76rem;
  line-height: 1.4;
}

.ai-hero__note {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.ai-hero__note strong {
  color: #fff;
  font-size: .92rem;
}
.ai-hero__note span {
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ai-hero__grid { grid-template-columns: 1fr; }
  .ai-hero__stage { order: -1; }
  .ai-float-chip--1 { left: 8px; }
  .ai-float-chip--2 { right: 8px; }
}
@media (max-width: 768px) {
  .ai-hero { padding: calc(var(--header-h) + 20px) 0 28px; }
  .ai-mini-grid { grid-template-columns: 1fr; }
  .ai-hero__note { flex-direction: column; align-items: flex-start; }
  .ai-float-words { display: none; }
  .ai-float-chip { display: none; }
  .ai-hero__proof { max-width: none; }
  .ai-aurora, .ai-scan { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-orb,
  .ai-float-words span,
  .ai-mini,
  .ai-typing i,
  .ai-build__bar i,
  .ai-aurora,
  .ai-scan,
  .ai-panel__shine,
  .ai-cta-glow,
  .ai-hero__copy h1 span,
  .ai-float-chip,
  .ai-hero__copy,
  .ai-hero__stage {
    animation: none !important;
  }
  .ai-build__bar i { width: 78%; }
}

/* Legacy mx-hero kept unused */

/* Capabilities under hero */
.ai-cap {
  position: relative;
  padding: 0 0 96px;
  background:
    linear-gradient(180deg, #0c1f3d 0%, #eef4fb 26%, #f7fafc 100%);
  overflow: hidden;
}
.ai-cap__glow {
  position: absolute;
  left: 50%;
  top: 180px;
  width: 680px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,111,237,.14), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}
.ai-cap__marquee {
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(4, 11, 22, .62);
  padding: 12px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ai-cap__marquee--alt {
  margin-bottom: 52px;
  background: rgba(4, 11, 22, .42);
  border-bottom: 0;
  padding: 10px 0 14px;
}
.ai-cap__track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: ai-cap-scroll 32s linear infinite;
}
.ai-cap__track--rev {
  animation-name: ai-cap-scroll-rev;
  animation-duration: 38s;
}
.ai-cap__track span {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(142,197,255,.22);
  background: rgba(0,111,237,.12);
  color: #c8e2ff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.ai-cap__marquee--alt .ai-cap__track span {
  border-color: rgba(255,102,0,.22);
  background: rgba(255,102,0,.1);
  color: #ffd2b0;
}
@keyframes ai-cap-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ai-cap-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.ai-cap__head {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.ai-cap__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.03em;
  color: var(--mx-ink);
}
.ai-cap__head p {
  margin: 0;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.ai-cap__stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
  max-width: 520px;
}
.ai-cap__stack span {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3d5168;
  background: #fff;
  border: 1px solid var(--mx-line);
  box-shadow: 0 8px 20px rgba(7,17,31,.04);
}
.ai-cap__stack span.is-on {
  color: var(--mx-blue);
  border-color: rgba(0,111,237,.28);
  background: rgba(0,111,237,.07);
}
.ai-cap__stack i {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b7d3f5, #ffc095);
}
.ai-cap__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ai-cap__card {
  position: relative;
  padding: 28px 22px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 14px 40px rgba(7,17,31,.05);
  transition: .3s ease;
  overflow: hidden;
  animation: ai-cap-card-in .55s ease both;
}
.ai-cap__card:nth-child(1) { animation-delay: .05s; }
.ai-cap__card:nth-child(2) { animation-delay: .12s; }
.ai-cap__card:nth-child(3) { animation-delay: .19s; }
.ai-cap__card:nth-child(4) { animation-delay: .26s; }
@keyframes ai-cap-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-cap__card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mx-blue), var(--mx-orange));
  opacity: 0;
  transition: .28s ease;
}
.ai-cap__card::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,111,237,.1), transparent 70%);
  opacity: 0;
  transition: .3s ease;
}
.ai-cap__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(7,17,31,.12);
  border-color: #b7d3f5;
}
.ai-cap__card:hover::before,
.ai-cap__card:hover::after { opacity: 1; }
.ai-cap__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #9eb3c9;
}
.ai-cap__icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  transition: .28s ease;
}
.ai-cap__card:hover .ai-cap__icon { transform: scale(1.06) rotate(-3deg); }
.ai-cap__icon svg { width: 22px; height: 22px; }
.ai-cap__icon--blue { background: linear-gradient(135deg, #1a86ff, #006fed); box-shadow: 0 10px 22px rgba(0,111,237,.28); }
.ai-cap__icon--orange { background: linear-gradient(135deg, #ff8a3d, #ff6600); box-shadow: 0 10px 22px rgba(255,102,0,.28); }
.ai-cap__icon--cyan { background: linear-gradient(135deg, #22d3ee, #0284c7); box-shadow: 0 10px 22px rgba(2,132,199,.25); }
.ai-cap__icon--violet { background: linear-gradient(135deg, #818cf8, #4f46e5); box-shadow: 0 10px 22px rgba(79,70,229,.25); }
.ai-cap__card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.ai-cap__card > p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
  min-height: 4.4em;
}
.ai-cap__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ai-cap__tags span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #3d5168;
  background: var(--mx-soft);
  border: 1px solid var(--mx-line);
}
.ai-cap__footer {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.08), rgba(255,102,0,.06)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .9);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.ai-cap__footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.ai-cap__footer span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ai-cap__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ai-cap { padding-bottom: 64px; }
  .ai-cap__marquee--alt { margin-bottom: 36px; }
  .ai-cap__grid { grid-template-columns: 1fr; }
  .ai-cap__card > p { min-height: 0; }
  .ai-cap__footer { align-items: flex-start; }
  .ai-cap__stack i { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-cap__track,
  .ai-cap__card { animation: none !important; }
  .ai-cap__track { flex-wrap: wrap; width: auto; justify-content: center; }
}

/* Pills (legacy unused) */
.mx-pills {
  border-top: 1px solid var(--mx-line);
  border-bottom: 1px solid var(--mx-line);
  background: #fff;
  padding: 18px 0;
}
.mx-pills__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.mx-pills__track span {
  padding: 9px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, var(--mx-soft));
  border: 1px solid var(--mx-line);
  color: #3d5168;
  font-size: .82rem;
  font-weight: 700;
  transition: .2s ease;
}
.mx-pills__track span:hover {
  border-color: #b7d3f5;
  color: var(--mx-blue);
  transform: translateY(-1px);
}

/* Work grid (legacy kept) */
.mx-work-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}
.mx-work {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--mx-line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: .25s ease;
  box-shadow: 0 4px 16px rgba(7,17,31,.02);
}
.mx-work:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #c5daf5;
}
.mx-work h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}
.mx-work p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .96rem;
}
.mx-work > span {
  margin-top: 20px;
  color: var(--mx-blue);
  font-weight: 700;
  font-size: .9rem;
}
.mx-work--featured {
  grid-row: span 2;
  min-height: 470px;
  background:
    radial-gradient(circle at 85% 15%, rgba(26,134,255,.42), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(255,102,0,.18), transparent 30%),
    linear-gradient(160deg, #07111f 0%, #0e2a52 100%);
  color: #fff;
  border: 0;
  padding: 34px;
}
.mx-work--featured:hover { border: 0; transform: translateY(-5px); }
.mx-work--featured h3 { color: #fff; font-size: 1.85rem; letter-spacing: -.035em; }
.mx-work--featured p { color: rgba(255,255,255,.78); font-size: 1.04rem; }
.mx-work__points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.mx-work__points li {
  padding: 8px 0 8px 18px;
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 600;
}
.mx-work__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mx-orange);
}
.mx-work__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8ec5ff;
  font-weight: 700;
}
.mx-work__bottom i {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  font-style: normal;
  transition: .2s ease;
}
.mx-work--featured:hover .mx-work__bottom i,
.mx-build__hero:hover .mx-work__bottom i {
  background: var(--mx-blue);
  color: #fff;
  transform: translateX(3px);
}
.mx-tag {
  display: inline-flex;
  margin-bottom: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,102,0,.2);
  color: #ffc095;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* What we build — upgraded */
.mx-build {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafc 0%, #e8f0fa 45%, #fff 100%);
}
.mx-build__bg {
  position: absolute;
  inset: 6% 8% auto;
  height: 340px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,111,237,.12), transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(255,102,0,.08), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
}
.mx-build__head { position: relative; }
.mx-build__head h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 45%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-build__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.mx-build__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px;
  border-radius: 26px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(26,134,255,.5), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(255,102,0,.22), transparent 32%),
    linear-gradient(155deg, #06101d 0%, #0c2348 55%, #0a1a33 100%);
  border: 1px solid rgba(142,197,255,.28);
  box-shadow:
    0 28px 70px rgba(7,17,31,.18),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transition: .3s ease;
}
.mx-build__hero:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 84px rgba(7,17,31,.26), 0 0 60px rgba(0,111,237,.12);
}
.mx-build__orb {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,111,237,.35), transparent 70%);
  filter: blur(8px);
  animation: ai-orb-drift 10s ease-in-out infinite;
  pointer-events: none;
}
.mx-build__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.08) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: mx-build-shine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes mx-build-shine {
  0%, 45% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}
.mx-build__hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.mx-build__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  color: #86efac;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
}
.mx-build__live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: mx-pulse 1.6s ease-in-out infinite;
}
.mx-build__hero h3,
.mx-build__hero > p,
.mx-build__pipe,
.mx-build__stats,
.mx-build__hero .mx-work__points,
.mx-build__hero .mx-work__bottom {
  position: relative;
  z-index: 2;
}
.mx-build__hero h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  letter-spacing: -.035em;
  line-height: 1.15;
  color: #fff;
}
.mx-build__hero > p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 34rem;
}
.mx-build__pipe {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.mx-build__pipe span {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.mx-build__pipe span.is-on {
  color: #b9d9ff;
  background: rgba(0,111,237,.22);
  border-color: rgba(0,111,237,.4);
}
.mx-build__pipe span.is-pulse {
  color: #ffd2b0;
  background: rgba(255,102,0,.16);
  border-color: rgba(255,102,0,.4);
  animation: ai-ship-pulse 1.8s ease-in-out infinite;
}
.mx-build__pipe i {
  width: 14px;
  height: 1px;
  background: rgba(142,197,255,.4);
}
.mx-build__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.mx-build__stats > div {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.mx-build__stats strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
}
.mx-build__stats span {
  display: block;
  margin-top: 3px;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mx-build__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.mx-build__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .28s ease;
  overflow: hidden;
  animation: ai-cap-card-in .55s ease both;
}
.mx-build__card:nth-child(1) { animation-delay: .05s; }
.mx-build__card:nth-child(2) { animation-delay: .12s; }
.mx-build__card:nth-child(3) { animation-delay: .19s; }
.mx-build__card:nth-child(4) { animation-delay: .26s; }
.mx-build__card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mx-blue), var(--mx-orange));
  opacity: 0;
  transition: .28s ease;
}
.mx-build__card:hover {
  transform: translateX(6px) translateY(-2px);
  border-color: #b7d3f5;
  box-shadow: 0 18px 40px rgba(7,17,31,.1);
}
.mx-build__card:hover::before { opacity: 1; }
.mx-build__card em {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: .25s ease;
}
.mx-build__card--blue em { color: #006fed; background: rgba(0,111,237,.12); }
.mx-build__card--orange em { color: #e65c00; background: rgba(255,102,0,.12); }
.mx-build__card--cyan em { color: #0284c7; background: rgba(2,132,199,.12); }
.mx-build__card--violet em { color: #4f46e5; background: rgba(79,70,229,.12); }
.mx-build__card:hover em { transform: scale(1.06); }
.mx-build__chip {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ff8a3d;
  background: rgba(255,102,0,.1);
}
.mx-build__card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.mx-build__card p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .88rem;
  line-height: 1.55;
}
.mx-build__card > span {
  color: var(--mx-blue);
  font-weight: 800;
  font-size: .84rem;
  white-space: nowrap;
  transition: .2s ease;
}
.mx-build__card:hover > span { transform: translateX(3px); }

.mx-build__footer {
  position: relative;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.07), rgba(255,102,0,.05)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.mx-build__footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.mx-build__footer > div > span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}
.mx-build__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mx-btn--ghost-dark {
  background: #fff;
  color: var(--mx-ink);
  border: 1px solid var(--mx-line);
  box-shadow: none;
}
.mx-btn--ghost-dark:hover {
  border-color: #b7d3f5;
  color: var(--mx-blue);
  background: #fff;
}

@media (max-width: 1024px) {
  .mx-build__grid { grid-template-columns: 1fr; }
  .mx-build__hero { min-height: 0; }
}
@media (max-width: 640px) {
  .mx-build__card {
    grid-template-columns: auto 1fr;
  }
  .mx-build__card > span {
    grid-column: 2;
  }
  .mx-build__stats { grid-template-columns: 1fr; }
  .mx-build__footer { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-build__shine,
  .mx-build__orb,
  .mx-build__card,
  .mx-build__pipe span.is-pulse { animation: none !important; }
}

/* Steps (legacy) */
.mx-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  counter-reset: none;
}
.mx-steps article {
  position: relative;
  background: #fff;
  border: 1px solid var(--mx-line);
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: .22s ease;
  overflow: hidden;
}
.mx-steps article::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mx-blue), transparent);
  opacity: 0;
  transition: .22s ease;
}
.mx-steps article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mx-steps article:hover::after { opacity: 1; }
.mx-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(0,111,237,.1);
  color: var(--mx-blue);
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .85rem;
}
.mx-steps h3 { margin: 0 0 10px; font-size: 1.18rem; }

/* How we work — flow */
.mx-flow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef4fb 0%, #f7fafc 40%, #eef4fb 100%);
}
.mx-flow__bg {
  position: absolute;
  inset: 10% 12% auto;
  height: 260px;
  background: radial-gradient(ellipse, rgba(0,111,237,.1), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}
.mx-flow__head { position: relative; }
.mx-flow__head h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 50%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-flow__rail {
  position: relative;
  height: 2px;
  max-width: 880px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, #b7d3f5 15%, #ffc095 50%, #b7d3f5 85%, transparent);
}
.mx-flow__rail span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28%;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #006fed, #ff6600);
  box-shadow: 0 0 16px rgba(0,111,237,.35);
  animation: mx-flow-run 4.5s ease-in-out infinite;
}
@keyframes mx-flow-run {
  0% { left: 0; width: 18%; }
  50% { left: 42%; width: 28%; }
  100% { left: 82%; width: 18%; }
}
.mx-flow__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.mx-flow__card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
  transition: .3s ease;
  overflow: hidden;
  animation: ai-cap-card-in .55s ease both;
}
.mx-flow__card:nth-child(1) { animation-delay: .05s; }
.mx-flow__card:nth-child(2) { animation-delay: .12s; }
.mx-flow__card:nth-child(3) { animation-delay: .19s; }
.mx-flow__card:nth-child(4) { animation-delay: .26s; }
.mx-flow__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: .28s ease;
}
.mx-flow__card--1::before { background: linear-gradient(90deg, #006fed, #6eb6ff); }
.mx-flow__card--2::before { background: linear-gradient(90deg, #ff8a3d, #ff6600); }
.mx-flow__card--3::before { background: linear-gradient(90deg, #22d3ee, #0284c7); }
.mx-flow__card--4::before { background: linear-gradient(90deg, #818cf8, #4f46e5); }
.mx-flow__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(7,17,31,.12);
  border-color: #b7d3f5;
}
.mx-flow__card:hover::before { opacity: 1; }
.mx-flow__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.mx-flow__card em {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: .25s ease;
}
.mx-flow__card--1 em { color: #006fed; background: rgba(0,111,237,.12); }
.mx-flow__card--2 em { color: #e65c00; background: rgba(255,102,0,.12); }
.mx-flow__card--3 em { color: #0284c7; background: rgba(2,132,199,.12); }
.mx-flow__card--4 em { color: #4f46e5; background: rgba(79,70,229,.12); }
.mx-flow__card:hover em { transform: scale(1.06); }
.mx-flow__tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3d5168;
  background: var(--mx-soft);
  border: 1px solid var(--mx-line);
}
.mx-flow__card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.mx-flow__card > p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.65;
  min-height: 4.8em;
}
.mx-flow__card ul {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--mx-line);
  display: grid;
  gap: 8px;
}
.mx-flow__card li {
  position: relative;
  padding-left: 16px;
  color: #3d5168;
  font-size: .82rem;
  font-weight: 700;
}
.mx-flow__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mx-orange);
}
.mx-flow__card--1 li::before { background: #006fed; }
.mx-flow__card--2 li::before { background: #ff6600; }
.mx-flow__card--3 li::before { background: #0284c7; }
.mx-flow__card--4 li::before { background: #4f46e5; }

.mx-flow__note {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.08), rgba(255,102,0,.05)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.mx-flow__note strong {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.mx-flow__note > span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
  flex: 1;
  min-width: 220px;
}

@media (max-width: 1024px) {
  .mx-flow__grid { grid-template-columns: 1fr 1fr; }
  .mx-flow__rail { display: none; }
  .mx-flow__card > p { min-height: 0; }
}
@media (max-width: 640px) {
  .mx-flow__grid { grid-template-columns: 1fr; }
  .mx-flow__note { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-flow__rail span,
  .mx-flow__card { animation: none !important; }
}
.mx-steps p { margin: 0; color: var(--mx-muted); font-size: .95rem; line-height: 1.65; }

/* Split panels (legacy) */
.mx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mx-panel {
  background: #fff;
  border: 1px solid var(--mx-line);
  border-radius: 26px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  transition: .22s ease;
}
.mx-panel:hover { box-shadow: var(--shadow); }
.mx-panel--dark {
  background:
    radial-gradient(circle at top right, rgba(0,111,237,.3), transparent 40%),
    linear-gradient(160deg, #07111f, #12325c);
  border: 0;
  color: #fff;
}
.mx-panel__kicker {
  margin: 0 0 12px;
  color: var(--mx-blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mx-panel--dark .mx-panel__kicker { color: #ffb078; }
.mx-panel h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  letter-spacing: -.03em;
}
.mx-panel--dark h3 { color: #fff; }
.mx-panel > p {
  margin: 0 0 20px;
  color: var(--mx-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}
.mx-panel--dark > p { color: rgba(255,255,255,.76); }
.mx-panel ul { list-style: none; padding: 0; margin: 0; }
.mx-panel li {
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--mx-line);
  position: relative;
  font-weight: 500;
  color: #334155;
}
.mx-panel li::before {
  content: '+';
  position: absolute;
  left: 0; top: 11px;
  color: var(--mx-blue);
  font-weight: 800;
}
.mx-panel li:last-child { border-bottom: 1px solid var(--mx-line); }
.mx-panel--dark li {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.mx-panel--dark li::before { color: #ffb078; }

/* One brand dual strengths */
.mx-duo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #e8f0fa 50%, #fff 100%);
}
.mx-duo__bg {
  position: absolute;
  inset: 10% 8% auto;
  height: 320px;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(0,111,237,.12), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,102,0,.09), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
}
.mx-duo__head { position: relative; }
.mx-duo__head h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 50%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-duo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.mx-duo__vs {
  display: grid;
  place-items: center;
  align-self: center;
}
.mx-duo__vs span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .95rem;
  font-weight: 800;
  color: var(--mx-blue);
  background: #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 12px 28px rgba(7,17,31,.08);
}
.mx-duo__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: 26px;
  overflow: hidden;
  transition: .3s ease;
  animation: ai-cap-card-in .55s ease both;
}
.mx-duo__card--build { animation-delay: .05s; }
.mx-duo__card--train { animation-delay: .15s; }
.mx-duo__card--build {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 18px 48px rgba(7,17,31,.06);
}
.mx-duo__card--build::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #006fed, #6eb6ff);
}
.mx-duo__card--train {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(26,134,255,.45), transparent 36%),
    radial-gradient(circle at 10% 90%, rgba(255,102,0,.2), transparent 34%),
    linear-gradient(155deg, #06101d 0%, #0c2348 55%, #0a1a33 100%);
  border: 1px solid rgba(142,197,255,.28);
  box-shadow: 0 28px 70px rgba(7,17,31,.18);
}
.mx-duo__card--train::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ff8a3d, #ff6600);
}
.mx-duo__card:hover { transform: translateY(-8px); }
.mx-duo__card--build:hover {
  box-shadow: 0 28px 60px rgba(7,17,31,.12);
  border-color: #b7d3f5;
}
.mx-duo__card--train:hover {
  box-shadow: 0 36px 84px rgba(7,17,31,.28), 0 0 55px rgba(0,111,237,.14);
}
.mx-duo__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.07) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: mx-build-shine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.mx-duo__orb {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -30px;
  bottom: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,111,237,.35), transparent 70%);
  filter: blur(8px);
  animation: ai-orb-drift 10s ease-in-out infinite;
  pointer-events: none;
}
.mx-duo__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.mx-duo__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mx-duo__identity em {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.mx-duo__card--build .mx-duo__identity em {
  color: #006fed;
  background: rgba(0,111,237,.12);
}
.mx-duo__card--train .mx-duo__identity em {
  color: #ffb078;
  background: rgba(255,102,0,.16);
}
.mx-duo__kicker {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.mx-duo__card--train .mx-duo__kicker { color: #ffb078; }
.mx-duo__badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3d5168;
  background: var(--mx-soft);
  border: 1px solid var(--mx-line);
}
.mx-duo__badge--light {
  color: #b9d9ff;
  background: rgba(0,111,237,.18);
  border-color: rgba(0,111,237,.35);
}
.mx-duo__card h3,
.mx-duo__card > p,
.mx-duo__stats,
.mx-duo__card ul,
.mx-duo__tags,
.mx-duo__card .mx-btn {
  position: relative;
  z-index: 2;
}
.mx-duo__card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  letter-spacing: -.03em;
}
.mx-duo__card--train h3 { color: #fff; }
.mx-duo__card > p {
  margin: 0 0 20px;
  color: var(--mx-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}
.mx-duo__card--train > p { color: rgba(255,255,255,.76); }
.mx-duo__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mx-duo__stats > div {
  padding: 12px 10px;
  border-radius: 14px;
  text-align: center;
  background: var(--mx-soft);
  border: 1px solid var(--mx-line);
  transition: .22s ease;
}
.mx-duo__card:hover .mx-duo__stats > div { transform: translateY(-2px); }
.mx-duo__stats--dark > div {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.mx-duo__stats strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.mx-duo__stats--dark strong { color: #fff; }
.mx-duo__stats span {
  display: block;
  margin-top: 2px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mx-muted);
}
.mx-duo__stats--dark span { color: rgba(255,255,255,.55); }
.mx-duo__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.mx-duo__card li {
  position: relative;
  padding: 11px 0 11px 20px;
  border-top: 1px solid var(--mx-line);
  font-weight: 600;
  font-size: .95rem;
  color: #334155;
}
.mx-duo__card li:last-child { border-bottom: 1px solid var(--mx-line); }
.mx-duo__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mx-blue);
}
.mx-duo__card--train li {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.mx-duo__card--train li::before { background: #ffb078; }
.mx-duo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.mx-duo__tags span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: #3d5168;
  background: rgba(0,111,237,.07);
  border: 1px solid rgba(0,111,237,.16);
}
.mx-duo__tags--dark span {
  color: #c8e2ff;
  background: rgba(0,111,237,.18);
  border-color: rgba(142,197,255,.28);
}
.mx-duo__card .mx-btn {
  align-self: flex-start;
  margin-top: auto;
}
.mx-duo__footer {
  position: relative;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.08), rgba(255,102,0,.05)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.mx-duo__footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.mx-duo__footer span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .mx-duo__grid { grid-template-columns: 1fr; }
  .mx-duo__vs { display: none; }
}
@media (max-width: 640px) {
  .mx-duo__footer { align-items: flex-start; }
  .mx-duo__stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-duo__shine,
  .mx-duo__orb,
  .mx-duo__card { animation: none !important; }
}

/* Why (legacy) */
.mx-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.mx-why article {
  background: #fff;
  border: 1px solid var(--mx-line);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: .22s ease;
  box-shadow: var(--shadow-sm);
}
.mx-why article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfe0f5;
}
.mx-why h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  position: relative;
  padding-top: 18px;
}
.mx-why h3::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 3px;
  border-radius: 99px;
  background: var(--mx-blue);
}
.mx-why article:nth-child(2) h3::before { background: #0891b2; }
.mx-why article:nth-child(3) h3::before { background: var(--mx-orange); }
.mx-why article:nth-child(4) h3::before { background: #0b1c33; }
.mx-why p { margin: 0; color: var(--mx-muted); font-size: .95rem; line-height: 1.65; }

/* Why Choose — upgraded */
.mx-whysec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4fb 0%, #f7fafc 45%, #eef4fb 100%);
}
.mx-whysec__bg {
  position: absolute;
  inset: 8% 10% auto;
  height: 280px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,111,237,.1), transparent 55%),
    radial-gradient(ellipse at 75% 35%, rgba(255,102,0,.08), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
}
.mx-whysec__head { position: relative; }
.mx-whysec__head h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 50%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-whysec__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.mx-whysec__card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
  transition: .3s ease;
  overflow: hidden;
  animation: ai-cap-card-in .55s ease both;
}
.mx-whysec__card:nth-child(1) { animation-delay: .05s; }
.mx-whysec__card:nth-child(2) { animation-delay: .12s; }
.mx-whysec__card:nth-child(3) { animation-delay: .19s; }
.mx-whysec__card:nth-child(4) { animation-delay: .26s; }
.mx-whysec__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: .28s ease;
}
.mx-whysec__card--1::before { background: linear-gradient(90deg, #006fed, #6eb6ff); }
.mx-whysec__card--2::before { background: linear-gradient(90deg, #22d3ee, #0284c7); }
.mx-whysec__card--3::before { background: linear-gradient(90deg, #ff8a3d, #ff6600); }
.mx-whysec__card--4::before { background: linear-gradient(90deg, #818cf8, #4f46e5); }
.mx-whysec__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(7,17,31,.12);
  border-color: #b7d3f5;
}
.mx-whysec__card:hover::before { opacity: 1; }
.mx-whysec__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.mx-whysec__card em {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.mx-whysec__card--1 em { color: #006fed; background: rgba(0,111,237,.12); }
.mx-whysec__card--2 em { color: #0284c7; background: rgba(2,132,199,.12); }
.mx-whysec__card--3 em { color: #e65c00; background: rgba(255,102,0,.12); }
.mx-whysec__card--4 em { color: #4f46e5; background: rgba(79,70,229,.12); }
.mx-whysec__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: .25s ease;
}
.mx-whysec__card:hover .mx-whysec__icon { transform: scale(1.06) rotate(-4deg); }
.mx-whysec__icon svg { width: 20px; height: 20px; }
.mx-whysec__card--1 .mx-whysec__icon { background: linear-gradient(135deg, #1a86ff, #006fed); box-shadow: 0 10px 20px rgba(0,111,237,.25); }
.mx-whysec__card--2 .mx-whysec__icon { background: linear-gradient(135deg, #22d3ee, #0284c7); box-shadow: 0 10px 20px rgba(2,132,199,.25); }
.mx-whysec__card--3 .mx-whysec__icon { background: linear-gradient(135deg, #ff8a3d, #ff6600); box-shadow: 0 10px 20px rgba(255,102,0,.25); }
.mx-whysec__card--4 .mx-whysec__icon { background: linear-gradient(135deg, #818cf8, #4f46e5); box-shadow: 0 10px 20px rgba(79,70,229,.25); }
.mx-whysec__card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.mx-whysec__card p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.65;
  min-height: 4.6em;
}
.mx-whysec__chip {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #3d5168;
  background: var(--mx-soft);
  border: 1px solid var(--mx-line);
}
.mx-whysec__card--1 .mx-whysec__chip { color: #006fed; background: rgba(0,111,237,.08); border-color: rgba(0,111,237,.18); }
.mx-whysec__card--2 .mx-whysec__chip { color: #0284c7; background: rgba(2,132,199,.08); border-color: rgba(2,132,199,.18); }
.mx-whysec__card--3 .mx-whysec__chip { color: #e65c00; background: rgba(255,102,0,.08); border-color: rgba(255,102,0,.18); }
.mx-whysec__card--4 .mx-whysec__chip { color: #4f46e5; background: rgba(79,70,229,.08); border-color: rgba(79,70,229,.18); }

.mx-whysec__footer {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.08), rgba(255,102,0,.05)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.mx-whysec__footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.mx-whysec__footer span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .mx-whysec__grid { grid-template-columns: 1fr 1fr; }
  .mx-whysec__card p { min-height: 0; }
}
@media (max-width: 640px) {
  .mx-whysec__grid { grid-template-columns: 1fr; }
  .mx-whysec__footer { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-whysec__card { animation: none !important; }
}

/* Training (legacy) */
.mx-train {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.mx-train__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  background: #dbe7f5;
}
.mx-train__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,111,237,.12), transparent 45%);
  pointer-events: none;
}
.mx-train__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mx-train__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  background: none !important;
  -webkit-text-fill-color: unset !important;
  color: var(--mx-ink);
}
.mx-train__copy > p {
  margin: 0 0 22px;
  color: var(--mx-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.mx-checks { list-style: none; padding: 0; margin: 0 0 28px; }
.mx-checks li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--mx-line);
  color: #475569;
  line-height: 1.5;
}
.mx-checks li:last-child { border-bottom: 1px solid var(--mx-line); }
.mx-checks li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,111,237,.12);
  color: var(--mx-blue);
  font-size: .7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mx-checks strong { color: var(--mx-ink); }

/* Academy — upgraded */
.mx-academy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #e8f0fa 48%, #fff 100%);
}
.mx-academy__bg {
  position: absolute;
  inset: 10% 6% auto;
  height: 340px;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(0,111,237,.12), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,102,0,.09), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
}
.mx-academy__grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.mx-academy__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow:
    0 28px 70px rgba(7,17,31,.18),
    0 0 0 1px rgba(142,197,255,.18);
  background: #0a1a33;
  border: 1px solid rgba(142,197,255,.22);
}
.mx-academy__media::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  z-index: 2;
  pointer-events: none;
}
.mx-academy__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(6,16,29,.62) 100%),
    linear-gradient(135deg, rgba(0,111,237,.2), transparent 45%);
  pointer-events: none;
  z-index: 1;
}
.mx-academy__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.1) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: mx-build-shine 8s ease-in-out infinite;
  pointer-events: none;
}
.mx-academy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: .55s ease;
}
.mx-academy__media:hover img { transform: scale(1.07); }
.mx-academy__float {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 18, 34, .9);
  border: 1px solid rgba(142,197,255,.32);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
  color: #fff;
  animation: ai-chip-float 5s ease-in-out infinite;
}
.mx-academy__float strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.mx-academy__float span {
  display: block;
  margin-top: 2px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mx-academy__float--1 { left: 22px; bottom: 78px; }
.mx-academy__float--2 { right: 22px; top: 28px; animation-delay: -1.8s; }
.mx-academy__float--3 {
  left: 22px;
  top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  color: #86efac;
  animation-delay: -3s;
}
.mx-academy__float--3 i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: mx-pulse 1.6s ease-in-out infinite;
}
.mx-academy__progress {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 18, 34, .88);
  border: 1px solid rgba(142,197,255,.28);
  backdrop-filter: blur(10px);
}
.mx-academy__progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.mx-academy__progress-row span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.mx-academy__progress-row strong {
  font-size: .8rem;
  font-weight: 800;
  color: #ffb078;
}
.mx-academy__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.mx-academy__bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a86ff, #6eb6ff 50%, #ff8a3d);
  box-shadow: 0 0 12px rgba(0,111,237,.45);
  animation: ai-build-fill 2.4s ease forwards, ai-build-pulse 2.4s ease-in-out 2.4s infinite;
}
.mx-academy__copy { position: relative; }
.mx-academy__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.mx-academy__eyebrow .mx-label { margin: 0; }
.mx-academy__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  color: #15803d;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
}
.mx-academy__live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
  animation: mx-pulse 1.6s ease-in-out infinite;
}
.mx-academy__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.12;
  color: var(--mx-ink);
}
.mx-academy__copy h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 50%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-academy__copy > p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.mx-academy__tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.mx-academy__tracks span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  color: #3d5168;
  background: #fff;
  border: 1px solid var(--mx-line);
  box-shadow: 0 6px 16px rgba(7,17,31,.04);
  transition: .2s ease;
}
.mx-academy__tracks span:hover {
  color: var(--mx-blue);
  border-color: #b7d3f5;
  transform: translateY(-2px);
}
.mx-academy__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mx-academy__mini > div {
  padding: 12px 10px;
  border-radius: 14px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 8px 20px rgba(7,17,31,.04);
}
.mx-academy__mini strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, #0b1220, #006fed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-academy__mini span {
  display: block;
  margin-top: 2px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mx-muted);
}
.mx-academy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.mx-academy__list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 10px 24px rgba(7,17,31,.04);
  transition: .25s ease;
  overflow: hidden;
  animation: ai-cap-card-in .5s ease both;
}
.mx-academy__list li:nth-child(1) { animation-delay: .05s; }
.mx-academy__list li:nth-child(2) { animation-delay: .1s; }
.mx-academy__list li:nth-child(3) { animation-delay: .15s; }
.mx-academy__list li:nth-child(4) { animation-delay: .2s; }
.mx-academy__list li::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mx-blue), var(--mx-orange));
  opacity: 0;
  transition: .25s ease;
}
.mx-academy__list li:hover {
  transform: translateX(5px);
  border-color: #b7d3f5;
  box-shadow: 0 16px 36px rgba(7,17,31,.1);
}
.mx-academy__list li:hover::before { opacity: 1; }
.mx-academy__list em {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #006fed;
  background: rgba(0,111,237,.1);
  transition: .25s ease;
}
.mx-academy__list li:hover em { transform: scale(1.06); }
.mx-academy__list li:nth-child(2) em { color: #e65c00; background: rgba(255,102,0,.1); }
.mx-academy__list li:nth-child(3) em { color: #0284c7; background: rgba(2,132,199,.1); }
.mx-academy__list li:nth-child(4) em { color: #4f46e5; background: rgba(79,70,229,.1); }
.mx-academy__list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--mx-ink);
  font-size: .98rem;
}
.mx-academy__list span {
  color: var(--mx-muted);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
}
.mx-academy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .mx-academy__grid { grid-template-columns: 1fr; gap: 28px; }
  .mx-academy__media { max-width: 560px; }
}
@media (max-width: 640px) {
  .mx-academy__float--2 { display: none; }
  .mx-academy__mini { grid-template-columns: 1fr; }
  .mx-academy__float--1 { bottom: 86px; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-academy__float,
  .mx-academy__shine,
  .mx-academy__bar i,
  .mx-academy__list li { animation: none !important; }
  .mx-academy__bar i { width: 78%; }
  .mx-academy__media img { transition: none; }
}

/* Stats */
.mx-stats {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0,111,237,.38), transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(255,102,0,.2), transparent 38%),
    linear-gradient(160deg, #040b16 0%, #0a1a33 48%, #0c2348 100%);
}
.mx-stats__glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 280px;
  background: radial-gradient(ellipse, rgba(110,182,255,.16), transparent 70%);
  pointer-events: none;
  filter: blur(12px);
}
.mx-stats__head {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}
.mx-stats__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: #fff;
}
.mx-stats__head h2 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 40%, #ff9a4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-stats__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.mx-stats__card {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  text-align: left;
  overflow: hidden;
  transition: .3s ease;
  animation: ai-cap-card-in .55s ease both;
}
.mx-stats__card:nth-child(1) { animation-delay: .05s; }
.mx-stats__card:nth-child(2) { animation-delay: .12s; }
.mx-stats__card:nth-child(3) { animation-delay: .19s; }
.mx-stats__card:nth-child(4) { animation-delay: .26s; }
.mx-stats__card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  opacity: .9;
}
.mx-stats__card--1::before { background: linear-gradient(180deg, #1a86ff, #6eb6ff); }
.mx-stats__card--2::before { background: linear-gradient(180deg, #22d3ee, #0284c7); }
.mx-stats__card--3::before { background: linear-gradient(180deg, #ff8a3d, #ff6600); }
.mx-stats__card--4::before { background: linear-gradient(180deg, #818cf8, #4f46e5); }
.mx-stats__card::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: .35;
  pointer-events: none;
}
.mx-stats__card--1::after { background: radial-gradient(circle, rgba(0,111,237,.55), transparent 70%); }
.mx-stats__card--2::after { background: radial-gradient(circle, rgba(2,132,199,.5), transparent 70%); }
.mx-stats__card--3::after { background: radial-gradient(circle, rgba(255,102,0,.5), transparent 70%); }
.mx-stats__card--4::after { background: radial-gradient(circle, rgba(79,70,229,.5), transparent 70%); }
.mx-stats__card:hover {
  transform: translateY(-8px);
  border-color: rgba(142,197,255,.35);
  background: linear-gradient(165deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  box-shadow: 0 26px 56px rgba(0,0,0,.28);
}
.mx-stats__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  transition: .25s ease;
}
.mx-stats__card:hover .mx-stats__icon { transform: scale(1.06) rotate(-4deg); }
.mx-stats__icon svg { width: 20px; height: 20px; }
.mx-stats__card--1 .mx-stats__icon { background: linear-gradient(135deg, #1a86ff, #006fed); box-shadow: 0 10px 22px rgba(0,111,237,.35); }
.mx-stats__card--2 .mx-stats__icon { background: linear-gradient(135deg, #22d3ee, #0284c7); box-shadow: 0 10px 22px rgba(2,132,199,.3); }
.mx-stats__card--3 .mx-stats__icon { background: linear-gradient(135deg, #ff8a3d, #ff6600); box-shadow: 0 10px 22px rgba(255,102,0,.3); }
.mx-stats__card--4 .mx-stats__icon { background: linear-gradient(135deg, #818cf8, #4f46e5); box-shadow: 0 10px 22px rgba(79,70,229,.3); }
.mx-stats__num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.mx-stats strong,
.mx-stats__num .stat-number {
  display: inline-block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(120deg, #fff 20%, #9fd0ff 70%, #ffb078);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-stats__num::after {
  content: '+';
  color: #ff8a3d;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.mx-stats__label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
.mx-stats__card em {
  display: block;
  font-style: normal;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .mx-stats__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mx-stats { padding: 56px 0; }
  .mx-stats__row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-stats__card { animation: none !important; }
}

/* Quotes (legacy) */
.mx-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.mx-quote {
  background: #fff;
  border: 1px solid var(--mx-line);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: .22s ease;
  position: relative;
}
.mx-quote::before {
  content: '“';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(0,111,237,.12);
  font-family: Georgia, serif;
}
.mx-quote:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mx-quote > p {
  margin: 0 0 20px;
  color: var(--mx-ink);
  line-height: 1.65;
  font-size: 1.02rem;
}
.mx-quote strong { display: block; margin-bottom: 2px; }
.mx-quote span { color: var(--mx-muted); font-size: .88rem; }

/* Social proof — upgraded */
.mx-proof {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4fb 0%, #f7fafc 45%, #eef4fb 100%);
}
.mx-proof__bg {
  position: absolute;
  inset: 10% 10% auto;
  height: 260px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,111,237,.1), transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(255,102,0,.08), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
}
.mx-proof__head { position: relative; }
.mx-proof__head h2 span {
  background: linear-gradient(110deg, #006fed, #1a86ff 50%, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-proof__slider {
  position: relative;
  margin-top: 4px;
}
.mx-proof__viewport {
  overflow: hidden;
  margin: 0 48px;
  container-type: inline-size;
  container-name: proof;
}
.mx-proof__track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.mx-proof__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100cqi - 36px) / 3);
  width: calc((100cqi - 36px) / 3);
  min-width: calc((100cqi - 36px) / 3);
  box-sizing: border-box;
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(198, 216, 240, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
  overflow: hidden;
}
@container proof (max-width: 900px) {
  .mx-proof__card {
    flex-basis: calc((100cqi - 18px) / 2);
    width: calc((100cqi - 18px) / 2);
    min-width: calc((100cqi - 18px) / 2);
  }
}
@container proof (max-width: 560px) {
  .mx-proof__card {
    flex-basis: 100cqi;
    width: 100cqi;
    min-width: 100cqi;
  }
}
.mx-proof__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: .28s ease;
}
.mx-proof__card--blue::before { background: linear-gradient(90deg, #006fed, #6eb6ff); }
.mx-proof__card--orange::before { background: linear-gradient(90deg, #ff8a3d, #ff6600); }
.mx-proof__card--cyan::before { background: linear-gradient(90deg, #22d3ee, #0284c7); }
.mx-proof__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(7,17,31,.12);
  border-color: #b7d3f5;
}
.mx-proof__card:hover::before { opacity: 1; }
.mx-proof__nav {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183, 211, 245, .95);
  border-radius: 50%;
  background: #fff;
  color: #006fed;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7,17,31,.08);
  transition: .2s ease;
}
.mx-proof__nav:hover {
  background: #006fed;
  color: #fff;
  border-color: #006fed;
}
.mx-proof__nav--prev { left: 0; }
.mx-proof__nav--next { right: 0; }
.mx-proof__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.mx-proof__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(0, 111, 237, .22);
  cursor: pointer;
  transition: .25s ease;
}
.mx-proof__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #006fed;
}
.mx-proof__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.mx-proof__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  line-height: .7;
  color: rgba(0,111,237,.18);
}
.mx-proof__card--orange .mx-proof__quote { color: rgba(255,102,0,.22); }
.mx-proof__card--cyan .mx-proof__quote { color: rgba(2,132,199,.22); }
.mx-proof__stars {
  display: flex;
  gap: 3px;
}
.mx-proof__stars i {
  width: 12px;
  height: 12px;
  display: block;
  background: #ffb020;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.mx-proof__card > p {
  margin: 0 0 14px;
  color: var(--mx-ink);
  line-height: 1.6;
  font-size: .95rem;
  flex: 1;
}
.mx-proof__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--mx-line);
}
.mx-proof__person em {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  flex-shrink: 0;
}
.mx-proof__card--blue .mx-proof__person em {
  background: linear-gradient(135deg, #1a86ff, #006fed);
  box-shadow: 0 10px 20px rgba(0,111,237,.25);
}
.mx-proof__card--orange .mx-proof__person em {
  background: linear-gradient(135deg, #ff8a3d, #ff6600);
  box-shadow: 0 10px 20px rgba(255,102,0,.25);
}
.mx-proof__card--cyan .mx-proof__person em {
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 10px 20px rgba(2,132,199,.25);
}
.mx-proof__person strong {
  display: block;
  margin-bottom: 2px;
  color: var(--mx-ink);
  font-size: .98rem;
}
.mx-proof__person span {
  color: var(--mx-muted);
  font-size: .84rem;
  font-weight: 600;
}
.mx-proof__footer {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(0,111,237,.08), rgba(255,102,0,.05)),
    #fff;
  border: 1px solid rgba(183, 211, 245, .95);
  box-shadow: 0 14px 36px rgba(7,17,31,.05);
}
.mx-proof__footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mx-ink);
  font-size: 1.05rem;
}
.mx-proof__footer span {
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .mx-proof__viewport { margin: 0 40px; }
  .mx-proof__footer { align-items: flex-start; }
  .mx-proof__nav { width: 36px; height: 36px; top: calc(50% - 40px); }
}
@media (prefers-reduced-motion: reduce) {
  .mx-proof__track { transition: none !important; }
}

/* CTA — split, polished */
.mx-cta {
  padding: 28px 0 100px;
  background: linear-gradient(180deg, #f3f7fd 0%, #fff 65%);
}
.mx-cta__box {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #07111f;
  border: 1px solid rgba(142,197,255,.26);
  box-shadow:
    0 30px 70px rgba(7,17,31,.2),
    0 0 0 1px rgba(255,255,255,.03) inset;
}
.mx-cta__left {
  position: relative;
  padding: clamp(40px, 5vw, 58px);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 52%),
    radial-gradient(ellipse at 90% 100%, rgba(255,102,0,.1), transparent 40%),
    linear-gradient(160deg, #06101d, #0a1f3a);
  color: #fff;
}
.mx-cta__left h2 {
  margin: 0 0 14px;
  max-width: 15ch;
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
  color: #fff;
}
.mx-cta__left h2 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 45%, #ff9a4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mx-cta__left > p {
  margin: 0 0 28px;
  max-width: 34rem;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.mx-cta__left .mx-actions { margin: 0 0 16px; }
.mx-cta__note {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .84rem;
  font-weight: 600;
}
.mx-cta__right {
  padding: clamp(32px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-left: 1px solid rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.mx-cta__right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.mx-cta__right-label {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.mx-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  color: #86efac;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
}
.mx-cta__badge i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.mx-cta__steps {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.mx-cta__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: .22s ease;
}
.mx-cta__steps li:hover {
  background: rgba(0,111,237,.16);
  border-color: rgba(142,197,255,.3);
  transform: translateX(4px);
}
.mx-cta__steps em {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #b9d9ff;
  background: rgba(0,111,237,.2);
  border: 1px solid rgba(0,111,237,.3);
  transition: .22s ease;
}
.mx-cta__steps li:hover em { transform: scale(1.05); }
.mx-cta__steps li:nth-child(2) em {
  color: #ffd2b0;
  background: rgba(255,102,0,.16);
  border-color: rgba(255,102,0,.3);
}
.mx-cta__steps li:nth-child(3) em {
  color: #86efac;
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.25);
}
.mx-cta__steps strong {
  display: block;
  margin-bottom: 2px;
  font-size: .95rem;
  color: #fff;
}
.mx-cta__steps span {
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}
.mx-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 14px;
  color: #c8e2ff;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  background: rgba(0,111,237,.14);
  border: 1px solid rgba(0,111,237,.28);
  transition: .2s ease;
}
.mx-cta__link i {
  font-style: normal;
  transition: .2s ease;
}
.mx-cta__link:hover {
  color: #fff;
  background: rgba(0,111,237,.24);
  border-color: rgba(142,197,255,.4);
}
.mx-cta__link:hover i { transform: translateX(3px); }

@media (max-width: 900px) {
  .mx-cta__box { grid-template-columns: 1fr; }
  .mx-cta__right { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .mx-cta__left h2 { max-width: none; }
}

/* Footer — clean + light polish */
body:is(.page-home, .page-service) .footer,
.mx-footer {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.18), transparent 44%),
    radial-gradient(ellipse at 100% 100%, rgba(255,102,0,.08), transparent 40%),
    #07111f;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 30px;
  border-top: 1px solid rgba(142,197,255,.16);
}
.mx-footer__main {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 52px;
  margin-bottom: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.mx-footer__brand .footer-brand {
  display: inline-block;
  margin-bottom: 16px;
}
.mx-footer__brand .footer-logo-img {
  width: 128px;
  height: auto;
  display: block;
}
.mx-footer__brand p {
  margin: 0 0 18px;
  max-width: 28rem;
  color: rgba(255,255,255,.62);
  font-size: .97rem;
  line-height: 1.7;
}
.mx-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #c8e2ff;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  background: rgba(0,111,237,.14);
  border: 1px solid rgba(0,111,237,.28);
  transition: .2s ease;
}
.mx-footer__cta:hover {
  color: #fff;
  background: rgba(0,111,237,.24);
  border-color: rgba(142,197,255,.4);
}
.mx-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
  gap: 32px;
}
.mx-footer__nav h4 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mx-footer__nav h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #006fed, #ff6600);
}
.mx-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mx-footer__nav li {
  margin-bottom: 12px;
  font-size: .93rem;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}
.mx-footer__nav a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  transition: .2s ease;
}
.mx-footer__nav a:hover {
  color: #8ec5ff;
}
.mx-footer__address {
  margin-top: 8px !important;
  max-width: 270px;
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(255,255,255,.48);
}
.mx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.mx-footer .copyright {
  margin: 0;
  color: rgba(255,255,255,.4);
  font-size: .86rem;
}
.mx-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
.mx-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  border: 0;
  transition: .2s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
.mx-footer .social-links a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.mx-footer .social-links__ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af 80%, #515bd4);
}
.mx-footer .social-links__fb {
  background: #1877F2;
}
.mx-footer .social-links__th {
  background: #101010;
  border: 1px solid rgba(255,255,255,.25);
}
.mx-footer .social-links__th svg {
  width: 17px;
  height: 17px;
}
.mx-footer .social-links__in {
  background: #0A66C2;
}
.mx-footer .social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.08);
  color: #fff;
}

@media (max-width: 980px) {
  .mx-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .mx-footer__nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mx-footer { padding: 52px 0 24px; }
  .mx-footer__nav { grid-template-columns: 1fr; gap: 26px; }
  .mx-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Responsive */
@media (max-width: 1024px) {
  .mx-hero__inner,
  .mx-split,
  .mx-train,
  .mx-academy__grid { grid-template-columns: 1fr; }
  .mx-work-grid { grid-template-columns: 1fr 1fr; }
  .mx-work--featured { grid-row: auto; min-height: 300px; }
  .mx-steps, .mx-why, .mx-stats__row, .mx-quotes { grid-template-columns: 1fr 1fr; }
  .mx-hero__visual { order: -1; }
  .mx-float--3 { display: flex; left: 18px; right: auto; bottom: 86px; transform: none; }
}
@media (max-width: 768px) {
  .mx-section { padding: 70px 0; }
  .mx-hero { padding: 36px 0 28px; }
  .mx-hero__visual { padding: 0; }
  .mx-hero__ring { display: none; }
  .mx-work-grid,
  .mx-steps,
  .mx-why,
  .mx-stats__row,
  .mx-quotes { grid-template-columns: 1fr; }
  .mx-float--2 { display: none; }
  .mx-float--3 { display: none; }
  .mx-hero__proof { align-items: flex-start; }
}

/* =========================================================
   Service detail pages (home-matched)
   ========================================================= */
body.page-service .breadcrumb-nav { display: none !important; }

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 36px) 0 64px;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(0,111,237,.24), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(255,102,0,.12), transparent 50%),
    linear-gradient(180deg, #040b16 0%, #081525 48%, #0c1f3d 100%);
}
.svc-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.svc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.svc-hero__orb--1 {
  width: 420px; height: 420px;
  top: -140px; left: -80px;
  background: radial-gradient(circle, rgba(0,111,237,.45), transparent 68%);
}
.svc-hero__orb--2 {
  width: 340px; height: 340px;
  right: -60px; bottom: -120px;
  background: radial-gradient(circle, rgba(255,102,0,.28), transparent 68%);
}
.svc-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 35% 35%, #000 10%, transparent 70%);
  opacity: .55;
}
.svc-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.svc-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.svc-crumbs a {
  color: rgba(142,197,255,.9);
  text-decoration: none;
  transition: color .2s ease;
}
.svc-crumbs a:hover { color: #fff; }
.svc-crumbs em {
  font-style: normal;
  color: rgba(255,255,255,.78);
}
.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #9fd0ff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.svc-hero__badge span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: mx-pulse 2s ease-in-out infinite;
}
.svc-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
  color: #fff;
}
.svc-hero__lead {
  margin: 0 0 28px;
  max-width: 560px;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.svc-hero .mx-btn--ghost,
.svc-hero__ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.svc-hero .mx-btn--ghost:hover,
.svc-hero__ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.svc-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  max-width: 640px;
}
.svc-hero__meta > div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.svc-hero__meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.svc-hero__meta span {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

.svc-overview {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 40px;
  align-items: start;
}
.svc-overview__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.svc-overview__body {
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.svc-overview__body p { margin: 0 0 14px; }
.svc-overview__body p:last-child { margin-bottom: 0; }
.svc-overview__side {
  display: grid;
  gap: 14px;
}
.svc-panel {
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0a1628, #0c1f3d);
  color: #fff;
  border: 1px solid rgba(142,197,255,.2);
  box-shadow: 0 16px 40px rgba(7,17,31,.1);
}
.svc-panel--soft {
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: var(--mx-ink);
  border: 1px solid #d7e5f5;
  box-shadow: var(--shadow-sm);
}
.svc-panel__label {
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.svc-panel--soft .svc-panel__label { color: var(--mx-blue); }
.svc-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.svc-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  line-height: 1.5;
  font-weight: 600;
}
.svc-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #006fed;
  box-shadow: 0 0 0 3px rgba(0,111,237,.2);
}
.svc-panel--soft p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .96rem;
}

.svc-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-offer__card {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.svc-offer__card:hover {
  transform: translateY(-4px);
  border-color: #b7d3f5;
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.svc-offer__card em {
  display: block;
  margin-bottom: 12px;
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--mx-blue);
}
.svc-offer__card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.4;
  color: var(--mx-ink);
}

.svc-tech {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.svc-tech__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.svc-tech__copy p {
  margin: 0;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
}
.svc-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-tech__tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f7fd;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-size: .9rem;
  font-weight: 700;
  transition: .2s ease;
}
.svc-tech__tags span:hover {
  border-color: #9ec3ef;
  color: var(--mx-blue);
  background: #fff;
}

.svc-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.svc-process__card {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.svc-process__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.svc-process__card span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-orange);
}
.svc-process__card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.svc-process__card p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .94rem;
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-related__card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid #d7e5f5;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.svc-related__card:hover {
  transform: translateY(-5px);
  border-color: #b7d3f5;
  box-shadow: 0 20px 44px rgba(7,17,31,.1);
}
.svc-related__card em {
  margin: 0 0 10px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.svc-related__card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.svc-related__card p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
  flex: 1;
}
.svc-related__card > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--mx-blue);
}
.svc-related__card:hover > span i { transform: translateX(3px); }
.svc-related__card > span i {
  font-style: normal;
  transition: transform .2s ease;
}

@media (max-width: 1024px) {
  .svc-overview,
  .svc-tech { grid-template-columns: 1fr; }
  .svc-offer__grid { grid-template-columns: 1fr 1fr; }
  .svc-process__grid { grid-template-columns: 1fr 1fr; }
  .svc-related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .svc-hero__meta { grid-template-columns: 1fr; max-width: none; }
  .svc-offer__grid,
  .svc-process__grid { grid-template-columns: 1fr; }
  .svc-hero .mx-actions { flex-direction: column; align-items: stretch; }
  .svc-hero .mx-btn { width: 100%; }
}

/* Services index list */
.svc-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.svc-list__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid #d7e5f5;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.svc-list__card:hover {
  transform: translateY(-5px);
  border-color: #b7d3f5;
  box-shadow: 0 20px 44px rgba(7,17,31,.1);
}
.svc-list__card em {
  margin: 0 0 12px;
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-blue);
}
.svc-list__card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
}
.svc-list__card p {
  margin: 0 0 20px;
  color: var(--mx-muted);
  line-height: 1.7;
  font-size: 1rem;
  flex: 1;
}
.svc-list__card > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--mx-blue);
}
.svc-list__card:hover > span i { transform: translateX(3px); }
.svc-list__card > span i {
  font-style: normal;
  transition: transform .2s ease;
}
.svc-list__empty {
  grid-column: 1 / -1;
  color: var(--mx-muted);
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .svc-list__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Services index — professional redesign (spi-*)
   ========================================================= */
.spi-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(0,111,237,.3), transparent 55%),
    radial-gradient(ellipse 40% 40% at 8% 88%, rgba(255,102,0,.14), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.spi-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 28% 40%, #000 12%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.spi-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.spi-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.spi-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.spi-hero h1 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 45%, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.spi-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.spi-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.spi-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.spi-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 440px;
}
.spi-hero__stats > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.spi-hero__stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.02em;
}
.spi-hero__stats span {
  font-size: .74rem;
  font-weight: 650;
  color: rgba(255,255,255,.5);
}
.spi-hero__panel {
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: rgba(8,16,30,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.spi-hero__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.spi-hero__panel-top span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.spi-hero__panel-top em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.spi-hero__map {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.spi-hero__map li {
  display: grid;
  grid-template-columns: 10px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.spi-hero__map i {
  grid-row: 1 / 3;
  align-self: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6eb6ff, #ffb07a);
}
.spi-hero__map strong {
  font-size: .92rem;
  font-weight: 750;
  color: #fff;
}
.spi-hero__map span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 550;
}
.spi-hero__panel-foot {
  margin: 14px 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.spi-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
  border-bottom: 1px solid #d7e5f5;
}
.spi-strip__line {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.spi-strip__line strong {
  color: var(--mx-blue);
  font-weight: 800;
}

.spi-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.spi-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--mx-muted);
  padding: 40px 0;
}
.spi-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d7e5f5;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
  border-top: 3px solid var(--mx-blue);
}
.spi-card--ai { border-top-color: #006fed; }
.spi-card--web { border-top-color: #0ea5e9; }
.spi-card--mobile { border-top-color: #6366f1; }
.spi-card--cloud { border-top-color: #06b6d4; }
.spi-card--design { border-top-color: #ff6600; }
.spi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7,17,31,.1);
  border-color: #b7d3f5;
}
.spi-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.spi-card__top em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-blue);
}
.spi-card__tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #eef5ff;
  color: var(--mx-blue);
}
.spi-card--design .spi-card__tag {
  background: #fff3eb;
  color: var(--mx-orange);
}
.spi-card--mobile .spi-card__tag {
  background: #eef0ff;
  color: #4f46e5;
}
.spi-card--cloud .spi-card__tag {
  background: #e8fafc;
  color: #0891b2;
}
.spi-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
}
.spi-card > p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .98rem;
  flex: 1;
}
.spi-card__points {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spi-card__points li {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f4f8ff;
  border: 1px solid #e0ebf7;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.spi-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 750;
  color: var(--mx-blue);
}
.spi-card__link i {
  font-style: normal;
  transition: transform .2s ease;
}
.spi-card:hover .spi-card__link i { transform: translateX(3px); }

.spi-flow {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,111,237,.3), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.spi-flow__head { margin-bottom: 36px; }
.spi-flow__head h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.spi-flow__head p:not(.mx-label) {
  color: rgba(255,255,255,.65) !important;
}
.spi-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.spi-flow__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.spi-flow__grid em {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(110deg, var(--mx-blue), #1a86ff);
}
.spi-flow__grid article:nth-child(even) em {
  background: linear-gradient(110deg, var(--mx-orange), #ff8a3d);
}
.spi-flow__grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff !important;
}
.spi-flow__grid p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.6;
}

.spi-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.spi-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.spi-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.spi-cta__box .mx-label--light { color: #8ec5ff !important; }
.spi-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.spi-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .spi-hero__grid { grid-template-columns: 1fr; }
  .spi-flow__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .spi-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .spi-hero__stats,
  .spi-list,
  .spi-flow__grid { grid-template-columns: 1fr; }
  .spi-cta { padding: 40px 0 70px; }
  .spi-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

/* AI Product Development — unique service page (not home clone) */
.aip-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(0,111,237,.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 90%, rgba(255,102,0,.14), transparent 50%),
    linear-gradient(165deg, #050d18 0%, #0a1830 55%, #0d2244 100%);
}
.aip-hero__glow {
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(56,189,248,.12), transparent 65%);
  pointer-events: none;
}
.aip-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.aip-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7eb6ff;
}
.aip-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff;
}
.aip-hero__lead {
  margin: 0 0 28px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.12rem;
  line-height: 1.7;
}
.aip-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.aip-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}

.aip-blueprint {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.aip-blueprint__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.aip-blueprint__top span {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.aip-blueprint__top em {
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.3);
}
.aip-blueprint__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.aip-blueprint__steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  position: relative;
}
.aip-blueprint__steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 36px;
  bottom: -2px;
  width: 2px;
  background: rgba(255,255,255,.12);
}
.aip-blueprint__steps li.is-done:not(:last-child)::after,
.aip-blueprint__steps li.is-active:not(:last-child)::after {
  background: linear-gradient(180deg, #006fed, rgba(0,111,237,.25));
}
.aip-blueprint__steps i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  display: block;
  position: relative;
  z-index: 1;
}
.aip-blueprint__steps li.is-done i {
  border-color: #006fed;
  background: #006fed;
  box-shadow: 0 0 0 4px rgba(0,111,237,.2);
}
.aip-blueprint__steps li.is-done i::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}
.aip-blueprint__steps li.is-active i {
  border-color: #ff8a3d;
  background: rgba(255,102,0,.25);
  box-shadow: 0 0 0 4px rgba(255,102,0,.15);
  animation: mx-pulse 2s ease-in-out infinite;
}
.aip-blueprint__steps strong {
  display: block;
  font-size: .98rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 2px;
}
.aip-blueprint__steps span {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.aip-blueprint__foot {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.aip-solve__list {
  display: grid;
  gap: 14px;
}
.aip-solve__list article {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.aip-solve__list article:hover {
  transform: translateX(6px);
  border-color: #b7d3f5;
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
}
.aip-solve__list article > span {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(0,111,237,.35);
}
.aip-solve__list h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.aip-solve__list p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.6;
  font-size: .96rem;
}
.aip-solve__list strong {
  font-size: .88rem;
  font-weight: 800;
  color: var(--mx-blue);
  white-space: nowrap;
}

.aip-deliver__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.aip-deliver__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.aip-deliver__head > p {
  margin: 0;
  max-width: 28rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.aip-deliver__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.aip-deliver__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.aip-deliver__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.aip-deliver__grid em {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,111,237,.08);
  color: var(--mx-blue);
}
.aip-deliver__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.aip-deliver__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.aip-arch {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,111,237,.35), transparent 45%),
    linear-gradient(180deg, #06101d, #0a1f3a);
  color: #fff !important;
}
.aip-arch__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.aip-arch__copy .mx-label,
.aip-arch__copy .mx-label--light {
  color: #9fd0ff !important;
}
.aip-arch__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.aip-arch__copy > p {
  margin: 0;
  color: rgba(255,255,255,.75) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.aip-arch__layers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.aip-arch__layers > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
  color: #fff;
}
.aip-arch__layers > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.aip-arch__layers span {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #9fd0ff !important;
}
.aip-arch__layers strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.aip-arch__layers em {
  font-style: normal;
  font-size: .84rem;
  color: rgba(255,255,255,.55) !important;
  font-weight: 600;
}

.aip-engage {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.aip-engage__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.aip-engage__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.aip-engage__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.aip-engage__steps li {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #d7e5f5;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-left: 3px solid var(--mx-blue);
}
.aip-engage__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.aip-engage__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.aip-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.aip-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.aip-stack span:hover {
  border-color: #006fed;
  color: #006fed;
  box-shadow: 0 8px 20px rgba(0,111,237,.12);
}

.aip-cta {
  padding: 0 0 100px;
}
.aip-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.35), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.aip-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.aip-cta__box .mx-label,
.aip-cta__box .mx-label--light {
  color: #9fd0ff !important;
}
.aip-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.aip-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .aip-hero__grid,
  .aip-engage { grid-template-columns: 1fr; }
  .aip-deliver__grid,
  .aip-arch__layers { grid-template-columns: 1fr 1fr; }
  .aip-deliver__head { flex-direction: column; align-items: flex-start; }
  .aip-solve__list article {
    grid-template-columns: 48px 1fr;
  }
  .aip-solve__list strong {
    grid-column: 2;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .aip-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .aip-deliver__grid,
  .aip-arch__layers { grid-template-columns: 1fr; }
  .aip-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .aip-cta { padding-bottom: 70px; }
}

/* =========================================================
   Web Development service page
   ========================================================= */
.wd-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(255,102,0,.16), transparent 55%),
    radial-gradient(ellipse 50% 50% at 8% 80%, rgba(0,111,237,.3), transparent 55%),
    linear-gradient(160deg, #06101c 0%, #0b1a32 50%, #102848 100%);
}
.wd-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 40%, #000 15%, transparent 70%);
  pointer-events: none;
  opacity: .7;
}
.wd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.wd-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffb07a;
}
.wd-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.wd-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.wd-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.wd-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.wd-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 520px;
}
.wd-hero__stats > div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.wd-hero__stats strong {
  display: block;
  margin-bottom: 2px;
  font-size: .92rem;
  font-weight: 800;
  color: #fff !important;
}
.wd-hero__stats span {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

.wd-browser {
  border-radius: 18px;
  overflow: hidden;
  background: #0a1526;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.wd-browser__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wd-browser__chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.wd-browser__chrome i:nth-child(2) { background: #febc2e; }
.wd-browser__chrome i:nth-child(3) { background: #28c840; }
.wd-browser__chrome span {
  margin-left: 10px;
  flex: 1;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,.25);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.wd-browser__body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 280px;
}
.wd-browser__nav {
  padding: 16px 12px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  display: grid;
  gap: 10px;
  align-content: start;
}
.wd-browser__nav span {
  height: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
}
.wd-browser__nav span.is-on {
  background: #006fed;
  box-shadow: 0 0 0 3px rgba(0,111,237,.25);
}
.wd-browser__main { padding: 18px; }
.wd-browser__hero-block {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,111,237,.25), rgba(255,102,0,.12));
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
}
.wd-browser__hero-block em {
  display: block;
  height: 10px;
  width: 55%;
  border-radius: 6px;
  background: rgba(255,255,255,.35);
  margin-bottom: 8px;
}
.wd-browser__hero-block em:nth-child(2) {
  width: 38%;
  height: 8px;
  background: rgba(255,255,255,.18);
}
.wd-browser__hero-block b {
  display: inline-block;
  margin-top: 10px;
  width: 88px;
  height: 26px;
  border-radius: 8px;
  background: #006fed;
  box-shadow: 0 8px 18px rgba(0,111,237,.35);
}
.wd-browser__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.wd-browser__cards span {
  height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.wd-browser__code {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
}
.wd-browser__code code { color: rgba(255,255,255,.55); }
.wd-browser__code b { color: #7eb6ff; font-weight: 700; }
.wd-browser__code i { font-style: normal; color: rgba(255,255,255,.85); }
.wd-browser__code i.ok { color: #86efac; }
.wd-browser__note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}

.wd-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.wd-why article {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.wd-why article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,17,31,.09);
}
.wd-why span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-orange);
}
.wd-why h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.wd-why p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.wd-scope__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.wd-scope__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.wd-scope__head > p {
  margin: 0;
  max-width: 26rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.wd-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.wd-scope__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.wd-scope__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.wd-scope__grid em {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,102,0,.1);
  color: var(--mx-orange);
}
.wd-scope__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.wd-scope__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.wd-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,102,0,.2), transparent 45%),
    linear-gradient(180deg, #07111f, #0c1f3d);
  color: #fff;
}
.wd-band__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.wd-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.wd-band__copy .mx-label--light { color: #ffb07a !important; }
.wd-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.wd-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.wd-band__grid > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.wd-band__grid > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.wd-band__grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff !important;
}
.wd-band__grid span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 600;
}

.wd-process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.wd-process__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.wd-process__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.wd-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.wd-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #d7e5f5;
}
.wd-process__steps em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  color: var(--mx-blue);
  letter-spacing: .04em;
}
.wd-process__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.wd-process__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.wd-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.wd-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.wd-stack span:hover {
  border-color: var(--mx-orange);
  color: var(--mx-orange);
  box-shadow: 0 8px 20px rgba(255,102,0,.12);
}

.wd-cta {
  padding: 0 0 100px;
}
.wd-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,102,0,.22), transparent 45%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.wd-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.wd-cta__box .mx-label--light { color: #ffb07a !important; }
.wd-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.wd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .wd-hero__grid,
  .wd-process { grid-template-columns: 1fr; }
  .wd-why,
  .wd-scope__grid,
  .wd-band__grid { grid-template-columns: 1fr 1fr; }
  .wd-scope__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .wd-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .wd-hero__stats,
  .wd-why,
  .wd-scope__grid,
  .wd-band__grid { grid-template-columns: 1fr; }
  .wd-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .wd-cta { padding-bottom: 70px; }
}

/* =========================================================
   DevOps & Automation service page
   ========================================================= */
.do-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(34,211,238,.18), transparent 55%),
    radial-gradient(ellipse 50% 50% at 8% 80%, rgba(0,111,237,.32), transparent 55%),
    linear-gradient(160deg, #06101c 0%, #0a1c30 50%, #0f2740 100%);
}
.do-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 40%, #000 15%, transparent 70%);
  pointer-events: none;
  opacity: .7;
}
.do-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.do-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #67e8f9;
}
.do-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.do-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.do-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.do-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.do-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 520px;
}
.do-hero__stats > div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.do-hero__stats strong {
  display: block;
  margin-bottom: 2px;
  font-size: .92rem;
  font-weight: 800;
  color: #fff !important;
}
.do-hero__stats span {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

.do-terminal {
  border-radius: 18px;
  overflow: hidden;
  background: #0a1526;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.do-terminal__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.do-terminal__chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.do-terminal__chrome i:nth-child(2) { background: #febc2e; }
.do-terminal__chrome i:nth-child(3) { background: #28c840; }
.do-terminal__chrome span {
  margin-left: 10px;
  flex: 1;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,.25);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.do-terminal__body { padding: 18px; }
.do-terminal__pipe {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.do-terminal__pipe span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.do-terminal__pipe span.is-on {
  background: rgba(0,111,237,.22);
  color: #7eb6ff;
  border-color: rgba(0,111,237,.35);
}
.do-terminal__pipe span.is-pulse {
  background: rgba(34,211,238,.18);
  color: #67e8f9;
  border-color: rgba(34,211,238,.4);
  animation: do-pulse 1.6s ease-in-out infinite;
}
.do-terminal__pipe i {
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
@keyframes do-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,.35); }
  50% { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
}
.do-terminal__rows {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.do-terminal__rows > div {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}
.do-terminal__rows span { color: rgba(255,255,255,.4); font-weight: 600; }
.do-terminal__rows strong { color: #fff; font-weight: 750; }
.do-terminal__rows em.ok {
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #86efac;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(134,239,172,.12);
}
.do-terminal__logs {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
}
.do-terminal__logs code { color: rgba(255,255,255,.55); }
.do-terminal__logs b { color: #4ade80; font-weight: 700; }
.do-terminal__note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}

.do-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.do-why article {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.do-why article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,17,31,.09);
}
.do-why span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #0891b2;
}
.do-why h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.do-why p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.do-scope__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.do-scope__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.do-scope__head > p {
  margin: 0;
  max-width: 26rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.do-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.do-scope__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.do-scope__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.do-scope__grid em {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(8,145,178,.1);
  color: #0891b2;
}
.do-scope__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.do-scope__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.do-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(34,211,238,.18), transparent 45%),
    linear-gradient(180deg, #07111f, #0c1f3d);
  color: #fff;
}
.do-band__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.do-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.do-band__copy .mx-label--light { color: #67e8f9 !important; }
.do-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.do-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.do-band__grid > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.do-band__grid > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.do-band__grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff !important;
}
.do-band__grid span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 600;
}

.do-process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.do-process__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.do-process__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.do-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.do-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #d7e5f5;
}
.do-process__steps em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  color: #0891b2;
  letter-spacing: .04em;
}
.do-process__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.do-process__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.do-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.do-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.do-stack span:hover {
  border-color: #0891b2;
  color: #0891b2;
  box-shadow: 0 8px 20px rgba(8,145,178,.12);
}

.do-cta {
  padding: 0 0 100px;
}
.do-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(34,211,238,.2), transparent 45%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.do-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.do-cta__box .mx-label--light { color: #67e8f9 !important; }
.do-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.do-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .do-hero__grid,
  .do-process { grid-template-columns: 1fr; }
  .do-why,
  .do-scope__grid,
  .do-band__grid { grid-template-columns: 1fr 1fr; }
  .do-scope__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .do-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .do-hero__stats,
  .do-why,
  .do-scope__grid,
  .do-band__grid { grid-template-columns: 1fr; }
  .do-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .do-cta { padding-bottom: 70px; }
}

/* =========================================================
   Digital Marketing service page
   ========================================================= */
.dm-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(255,102,0,.2), transparent 55%),
    radial-gradient(ellipse 50% 50% at 8% 80%, rgba(0,111,237,.28), transparent 55%),
    linear-gradient(160deg, #06101c 0%, #0b1a32 50%, #102848 100%);
}
.dm-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 40%, #000 15%, transparent 70%);
  pointer-events: none;
  opacity: .7;
}
.dm-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.dm-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffb07a;
}
.dm-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.dm-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.dm-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.dm-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.dm-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 520px;
}
.dm-hero__stats > div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.dm-hero__stats strong {
  display: block;
  margin-bottom: 2px;
  font-size: .92rem;
  font-weight: 800;
  color: #fff !important;
}
.dm-hero__stats span {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

.dm-dash {
  border-radius: 18px;
  overflow: hidden;
  background: #0a1526;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.dm-dash__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dm-dash__chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.dm-dash__chrome i:nth-child(2) { background: #febc2e; }
.dm-dash__chrome i:nth-child(3) { background: #28c840; }
.dm-dash__chrome span {
  margin-left: 10px;
  flex: 1;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,.25);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.dm-dash__body { padding: 18px; }
.dm-dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.dm-dash__kpis > div {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.dm-dash__kpis em {
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.dm-dash__kpis strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
}
.dm-dash__kpis span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.dm-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.06);
}
.dm-dash__chart b {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(0,111,237,.75), rgba(0,111,237,.25));
}
.dm-dash__chart b.is-hot {
  background: linear-gradient(180deg, rgba(255,102,0,.9), rgba(255,102,0,.3));
}
.dm-dash__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dm-dash__channels span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.dm-dash__channels span.is-on {
  background: rgba(0,111,237,.22);
  color: #7eb6ff;
  border-color: rgba(0,111,237,.35);
}
.dm-dash__channels span.is-pulse {
  background: rgba(255,102,0,.18);
  color: #ffb07a;
  border-color: rgba(255,102,0,.4);
  animation: dm-pulse 1.6s ease-in-out infinite;
}
@keyframes dm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,.35); }
  50% { box-shadow: 0 0 0 6px rgba(255,102,0,0); }
}
.dm-dash__note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}

.dm-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.dm-why article {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.dm-why article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,17,31,.09);
}
.dm-why span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-orange);
}
.dm-why h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
}
.dm-why p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.dm-scope__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.dm-scope__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.dm-scope__head > p {
  margin: 0;
  max-width: 26rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.dm-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.dm-scope__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.dm-scope__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.dm-scope__grid em {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,102,0,.1);
  color: var(--mx-orange);
}
.dm-scope__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.dm-scope__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.dm-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,102,0,.2), transparent 45%),
    linear-gradient(180deg, #07111f, #0c1f3d);
  color: #fff;
}
.dm-band__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.dm-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.dm-band__copy .mx-label--light { color: #ffb07a !important; }
.dm-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.dm-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.dm-band__grid > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.dm-band__grid > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.dm-band__grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff !important;
}
.dm-band__grid span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 600;
}

.dm-process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.dm-process__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.dm-process__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.dm-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.dm-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #d7e5f5;
}
.dm-process__steps em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  color: var(--mx-orange);
  letter-spacing: .04em;
}
.dm-process__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.dm-process__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.dm-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.dm-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.dm-stack span:hover {
  border-color: var(--mx-orange);
  color: var(--mx-orange);
  box-shadow: 0 8px 20px rgba(255,102,0,.12);
}

.dm-cta {
  padding: 0 0 100px;
}
.dm-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,102,0,.22), transparent 45%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.dm-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.dm-cta__box .mx-label--light { color: #ffb07a !important; }
.dm-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.dm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .dm-hero__grid,
  .dm-process { grid-template-columns: 1fr; }
  .dm-why,
  .dm-scope__grid,
  .dm-band__grid { grid-template-columns: 1fr 1fr; }
  .dm-scope__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .dm-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .dm-hero__stats,
  .dm-why,
  .dm-scope__grid,
  .dm-band__grid,
  .dm-dash__kpis { grid-template-columns: 1fr; }
  .dm-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .dm-cta { padding-bottom: 70px; }
}

/* =========================================================
   Mobile Development service page
   ========================================================= */
.mob-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 50% 50% at 15% 20%, rgba(99,102,241,.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 85%, rgba(0,111,237,.22), transparent 50%),
    linear-gradient(165deg, #070b16 0%, #10182c 48%, #152038 100%);
}
.mob-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.2), transparent 68%);
  pointer-events: none;
  filter: blur(10px);
}
.mob-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.mob-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a5b4fc;
}
.mob-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.mob-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.mob-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.mob-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.mob-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.mob-hero__pills span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}

.mob-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 0;
}
.mob-phone {
  width: 260px;
  padding: 11px;
  border-radius: 42px;
  background: linear-gradient(160deg, #2a3148 0%, #12161f 55%, #0a0d14 100%);
  box-shadow:
    0 36px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.12),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.mob-phone__bezel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}
.mob-phone__island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  border-radius: 20px;
  background: #050508;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.mob-phone__screen {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(99,102,241,.22), transparent 45%),
    linear-gradient(180deg, #12162a 0%, #0b0f1c 100%);
}
.mob-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 8px;
  position: relative;
  z-index: 2;
}
.mob-phone__status em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.mob-phone__sig {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.mob-phone__sig b {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #fff;
}
.mob-phone__sig b:nth-child(1) { height: 5px; opacity: .45; }
.mob-phone__sig b:nth-child(2) { height: 7px; opacity: .7; }
.mob-phone__sig b:nth-child(3) { height: 9px; }
.mob-phone__batt {
  margin-left: 6px;
  width: 22px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.7);
  padding: 1px;
  position: relative;
}
.mob-phone__batt::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 0 1px 1px 0;
  background: rgba(255,255,255,.7);
}
.mob-phone__batt i {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: 1px;
  background: #4ade80;
}
.mob-phone__app {
  flex: 1;
  padding: 6px 14px 10px;
}
.mob-phone__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mob-phone__head p {
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.mob-phone__head strong {
  display: block;
  margin-top: 1px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
}
.mob-phone__avatar {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #006fed);
  border: 1px solid rgba(255,255,255,.2);
}
.mob-phone__search {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
}
.mob-phone__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.mob-phone__stats > div {
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}
.mob-phone__stats em {
  display: block;
  margin-bottom: 4px;
  font-style: normal;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.mob-phone__stats strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.03em;
}
.mob-phone__sec {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.mob-phone__items {
  display: grid;
  gap: 7px;
}
.mob-phone__item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
}
.mob-phone__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.mob-phone__dot--blue { background: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.25); }
.mob-phone__dot--violet { background: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,.25); }
.mob-phone__dot--cyan { background: #22d3ee; box-shadow: 0 0 0 3px rgba(34,211,238,.2); }
.mob-phone__item strong {
  display: block;
  font-size: .8rem;
  font-weight: 750;
  color: #fff !important;
  line-height: 1.2;
}
.mob-phone__item span {
  display: block;
  margin-top: 1px;
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.42);
}
.mob-phone__item > em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  color: #86efac;
}
.mob-phone__tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 8px 6px 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.mob-phone__tabbar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .58rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
}
.mob-phone__tabbar span i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
}
.mob-phone__tabbar span.is-on {
  color: #c7d2fe;
}
.mob-phone__tabbar span.is-on i {
  background: linear-gradient(135deg, #6366f1, #006fed);
  box-shadow: 0 4px 12px rgba(99,102,241,.4);
}
.mob-phone__home {
  width: 108px;
  height: 4px;
  margin: 6px auto 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
}
.mob-float {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,20,35,.85);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .75rem;
  font-weight: 700;
  color: #e0e7ff;
  backdrop-filter: blur(8px);
  animation: ai-orb-drift 8s ease-in-out infinite;
}
.mob-float--1 { top: 18%; left: 6%; }
.mob-float--2 { top: 42%; right: 2%; animation-delay: -2s; color: #bfdbfe; }
.mob-float--3 { bottom: 18%; left: 4%; animation-delay: -4s; color: #c7d2fe; }
.mob-stage__note {
  margin: 20px 0 0;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-align: center;
}

.mob-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mob-why article {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.mob-why article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,17,31,.09);
}
.mob-why span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #6366f1;
}
.mob-why h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.mob-why p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.mob-scope__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.mob-scope__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.mob-scope__head > p {
  margin: 0;
  max-width: 26rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.mob-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mob-scope__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.mob-scope__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.mob-scope__grid em {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(99,102,241,.1);
  color: #4f46e5;
}
.mob-scope__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.mob-scope__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.mob-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(99,102,241,.35), transparent 45%),
    linear-gradient(180deg, #070b16, #121a2e);
  color: #fff;
}
.mob-band__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.mob-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.mob-band__copy .mx-label--light { color: #a5b4fc !important; }
.mob-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.mob-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mob-band__grid > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.mob-band__grid > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.mob-band__grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff !important;
}
.mob-band__grid span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 600;
}

.mob-process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.mob-process__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.mob-process__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.mob-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.mob-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #d7e5f5;
}
.mob-process__steps em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  color: #6366f1;
}
.mob-process__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.mob-process__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.mob-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.mob-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.mob-stack span:hover {
  border-color: #6366f1;
  color: #4f46e5;
  box-shadow: 0 8px 20px rgba(99,102,241,.14);
}

.mob-cta {
  padding: 0 0 100px;
}
.mob-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(99,102,241,.35), transparent 50%),
    linear-gradient(135deg, #070b16, #152038);
  border: 1px solid rgba(165,180,252,.25);
  color: #fff;
}
.mob-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.mob-cta__box .mx-label--light { color: #a5b4fc !important; }
.mob-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.mob-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .mob-hero__grid,
  .mob-process { grid-template-columns: 1fr; }
  .mob-why,
  .mob-scope__grid,
  .mob-band__grid { grid-template-columns: 1fr 1fr; }
  .mob-scope__head { flex-direction: column; align-items: flex-start; }
  .mob-float { display: none; }
}
@media (max-width: 768px) {
  .mob-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .mob-why,
  .mob-scope__grid,
  .mob-band__grid { grid-template-columns: 1fr; }
  .mob-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .mob-cta { padding-bottom: 70px; }
}

/* =========================================================
   Cloud & DevOps service page
   ========================================================= */
.cld-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(34,211,238,.18), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(0,111,237,.28), transparent 55%),
    linear-gradient(165deg, #040c14 0%, #0a1624 50%, #0d2136 100%);
}
.cld-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 75% 35%, #000 12%, transparent 68%);
  pointer-events: none;
}
.cld-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.cld-kicker {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #67e8f9;
}
.cld-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.cld-hero__lead {
  margin: 0 0 26px;
  max-width: 36rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.7;
}
.cld-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.cld-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.cld-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.cld-hero__pills span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.22);
  font-size: .8rem;
  font-weight: 700;
  color: #a5f3fc;
}

.cld-panel {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6,16,28,.9);
  border: 1px solid rgba(34,211,238,.2);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
}
.cld-panel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cld-panel__dots { display: flex; gap: 6px; }
.cld-panel__dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff5f57;
}
.cld-panel__dots i:nth-child(2) { background: #febc2e; }
.cld-panel__dots i:nth-child(3) { background: #28c840; }
.cld-panel__top > span {
  flex: 1;
  font-size: .78rem;
  font-weight: 650;
  color: rgba(255,255,255,.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.cld-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #86efac;
}
.cld-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: mx-pulse 2s ease-in-out infinite;
}
.cld-panel__body { padding: 16px; }
.cld-panel__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .86rem;
}
.cld-panel__row span { color: rgba(255,255,255,.45); font-weight: 600; }
.cld-panel__row strong { color: #fff !important; font-weight: 750; }
.cld-panel__row em.ok {
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  color: #86efac;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
}
.cld-panel__meters {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.cld-panel__meters > div {
  display: grid;
  grid-template-columns: 64px 1fr 36px;
  gap: 10px;
  align-items: center;
}
.cld-panel__meters p {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.cld-panel__meters b {
  display: block;
  height: 7px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.cld-panel__meters b::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: 6px;
  background: linear-gradient(90deg, #006fed, #22d3ee);
}
.cld-panel__meters b.is-green::after {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.cld-panel__meters span {
  font-size: .75rem;
  font-weight: 800;
  color: #a5f3fc;
  text-align: right;
}
.cld-panel__pipe {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.cld-panel__pipe span {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
}
.cld-panel__pipe span.is-on {
  color: #e0f2fe;
  border-color: rgba(0,111,237,.4);
  background: rgba(0,111,237,.2);
}
.cld-panel__pipe span.is-pulse {
  color: #ecfeff;
  border-color: rgba(34,211,238,.45);
  background: rgba(34,211,238,.18);
  animation: mx-pulse 2s ease-in-out infinite;
}
.cld-panel__pipe i {
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,.2);
}
.cld-panel__logs {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .76rem;
}
.cld-panel__logs code { color: rgba(255,255,255,.55); }
.cld-panel__logs b { color: #4ade80; font-weight: 700; }
.cld-panel__note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

.cld-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.cld-why article {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.cld-why article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,17,31,.09);
}
.cld-why span {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #0891b2;
}
.cld-why h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.cld-why p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.cld-scope__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.cld-scope__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.cld-scope__head > p {
  margin: 0;
  max-width: 26rem;
  color: var(--mx-muted);
  line-height: 1.65;
}
.cld-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cld-scope__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.cld-scope__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,17,31,.08);
}
.cld-scope__grid em {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(8,145,178,.1);
  color: #0e7490;
}
.cld-scope__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.cld-scope__grid p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.cld-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(34,211,238,.22), transparent 45%),
    linear-gradient(180deg, #040c14, #0c1f33);
  color: #fff;
}
.cld-band__copy {
  max-width: 640px;
  margin-bottom: 36px;
}
.cld-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.cld-band__copy .mx-label--light { color: #67e8f9 !important; }
.cld-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}
.cld-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.cld-band__grid > div {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.cld-band__grid > div:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.cld-band__grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff !important;
}
.cld-band__grid span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 600;
}

.cld-process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.cld-process__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink);
}
.cld-process__copy p {
  margin: 0 0 18px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cld-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cld-process__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #d7e5f5;
}
.cld-process__steps em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  color: #0891b2;
}
.cld-process__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.cld-process__steps span {
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.cld-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.cld-stack span {
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: #243447;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.cld-stack span:hover {
  border-color: #0891b2;
  color: #0e7490;
  box-shadow: 0 8px 20px rgba(8,145,178,.14);
}

.cld-cta {
  padding: 0 0 100px;
}
.cld-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(34,211,238,.2), transparent 45%),
    linear-gradient(135deg, #040c14, #0d2136);
  border: 1px solid rgba(103,232,249,.22);
  color: #fff;
}
.cld-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
.cld-cta__box .mx-label--light { color: #67e8f9 !important; }
.cld-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.cld-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cld-hero__grid,
  .cld-process { grid-template-columns: 1fr; }
  .cld-why,
  .cld-scope__grid,
  .cld-band__grid { grid-template-columns: 1fr 1fr; }
  .cld-scope__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .cld-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .cld-why,
  .cld-scope__grid,
  .cld-band__grid { grid-template-columns: 1fr; }
  .cld-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .cld-cta { padding-bottom: 70px; }
}


/* =========================================================
   UI/UX Design — cinematic v2
   ========================================================= */
.ux2-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 24px) 0 0;
  overflow: hidden;
  color: #fff;
  background: #05070e;
}
.ux2-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ux2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: ai-orb-drift 16s ease-in-out infinite;
}
.ux2-blob--a {
  width: 55vw; height: 55vw;
  max-width: 680px; max-height: 680px;
  top: -10%; right: -10%;
  background: rgba(0,111,237,.45);
}
.ux2-blob--b {
  width: 40vw; height: 40vw;
  max-width: 480px; max-height: 480px;
  bottom: 10%; left: -8%;
  background: rgba(255,102,0,.28);
  animation-delay: -6s;
}
.ux2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  opacity: .5;
}
.ux2-hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(200px, 28vh, 320px);
  max-width: 920px;
}
.ux2-eyebrow {
  margin: 0 0 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7eb6ff;
}
.ux2-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
.ux2-line { display: block; }
.ux2-line--accent {
  background: linear-gradient(105deg, #ffffff 10%, #6eb6ff 45%, #ff9a4d 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.ux2-lead {
  margin: 0 0 32px;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,.68);
}
.ux2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.ux2-scroll {
  color: rgba(255,255,255,.55);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s ease;
}
.ux2-scroll:hover { color: #fff; }

.ux2-devices {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: min(46vw, 560px);
  height: min(52vh, 420px);
  z-index: 1;
  transition: transform .15s ease-out;
  pointer-events: none;
}
.ux2-device { position: absolute; }
.ux2-device--left {
  left: 0; bottom: 0;
  width: 78%;
  animation: ux2-bob 8s ease-in-out infinite;
}
.ux2-device--right {
  right: 0; bottom: 8%;
  width: 34%;
  animation: ux2-bob 9s ease-in-out infinite reverse;
}
@keyframes ux2-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.ux2-mac {
  border-radius: 14px;
  overflow: hidden;
  background: #0b101c;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.ux2-mac__bar {
  display: flex; gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ux2-mac__bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5f57;
}
.ux2-mac__bar i:nth-child(2) { background: #febc2e; }
.ux2-mac__bar i:nth-child(3) { background: #28c840; }
.ux2-mac__screen { padding: 14px; }
.ux2-mac__nav {
  height: 10px; width: 40%;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.ux2-mac__hero {
  padding: 20px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0,111,237,.5), rgba(255,102,0,.2));
  border: 1px solid rgba(255,255,255,.1);
}
.ux2-mac__hero em {
  display: block; height: 8px; width: 55%;
  border-radius: 4px; background: rgba(255,255,255,.45);
  margin-bottom: 8px;
}
.ux2-mac__hero em:nth-child(2) {
  width: 35%; height: 6px; background: rgba(255,255,255,.2);
}
.ux2-mac__hero b {
  display: inline-block; margin-top: 10px;
  width: 72px; height: 22px; border-radius: 7px;
  background: #fff;
}
.ux2-mac__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.ux2-mac__grid span {
  height: 48px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.ux2-iphone {
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(160deg, #2a3148, #0a0d14);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.ux2-iphone__notch {
  width: 42%; height: 14px; margin: 4px auto 8px;
  border-radius: 10px; background: #050508;
}
.ux2-iphone__screen {
  border-radius: 20px;
  padding: 8px 10px 14px;
  min-height: 240px;
  background: linear-gradient(180deg, #141a2c, #090c14);
}
.ux2-iphone__status em {
  font-style: normal; font-size: .62rem; font-weight: 700; color: #fff;
}
.ux2-iphone__screen > strong {
  display: block; margin: 8px 0 10px;
  font-size: .95rem; font-weight: 800; color: #fff !important;
}
.ux2-iphone__card {
  height: 64px; border-radius: 12px; margin-bottom: 8px;
  background: linear-gradient(135deg, #006fed, #1a86ff);
  box-shadow: 0 10px 24px rgba(0,111,237,.35);
}
.ux2-iphone__rows { display: grid; gap: 6px; margin-bottom: 10px; }
.ux2-iphone__rows i {
  display: block; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.ux2-iphone__btn {
  height: 28px; border-radius: 9px;
  background: rgba(255,255,255,.12);
}

/* Marquee */
.ux2-marquee {
  background: #fff;
  border-bottom: 1px solid #e8eef6;
  overflow: hidden;
  padding: 18px 0;
}
.ux2-marquee__track {
  display: flex; gap: 40px; width: max-content;
  animation: ux2-marquee 28s linear infinite;
}
.ux2-marquee__track span {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0b1220;
  opacity: .18;
  white-space: nowrap;
}
.ux2-marquee__track span:nth-child(odd) { opacity: .35; color: #006fed; }
@keyframes ux2-marquee {
  to { transform: translateX(-50%); }
}

/* Gallery rail */
.ux2-gallery {
  padding: 80px 0 40px;
  background: #f6f8fc;
}
.ux2-gallery__head {
  margin-bottom: 36px;
}
.ux2-gallery__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--mx-ink) !important;
}
.ux2-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px max(24px, calc((100vw - 1180px) / 2 + 24px)) 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ux2-shot {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
  transition: transform .3s ease;
}
.ux2-shot:hover { transform: translateY(-10px); }
.ux2-shot__frame {
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 18px 50px rgba(7,17,31,.08);
  margin-bottom: 16px;
  padding: 16px;
}
.ux2-shot__frame--dark { background: #0b1220; border-color: #1a2438; }
.ux2-shot__frame--warm {
  background: linear-gradient(160deg, #fff7f0, #ffe8d6);
  border-color: #ffd2b0;
}
.ux2-shot__frame--phone {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0f1424, #1a2035);
}
.ux2-shot h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ux2-shot > p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  font-weight: 600;
}
.ux2-shot__ui header {
  display: flex; gap: 6px; align-items: center; margin-bottom: 14px;
}
.ux2-shot__ui header span {
  width: 8px; height: 8px; border-radius: 50%; background: #ff5f57;
}
.ux2-shot__ui header span:nth-child(2) { background: #febc2e; }
.ux2-shot__ui header b {
  margin-left: auto; width: 40%; height: 8px; border-radius: 4px;
  background: #e8eef6;
}
.ux2-shot__hero-block {
  padding: 22px 16px; border-radius: 14px; margin-bottom: 12px;
  background: linear-gradient(135deg, #006fed, #1a86ff);
  color: #fff;
}
.ux2-shot__hero-block p {
  margin: 0 0 4px; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; opacity: .75;
}
.ux2-shot__hero-block strong {
  font-size: 1.2rem; font-weight: 800; color: #fff !important;
}
.ux2-shot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.ux2-shot__cols i {
  height: 52px; border-radius: 10px; background: #eef3fa;
  display: block;
}
.ux2-shot__ui--dash {
  display: grid; grid-template-columns: 40px 1fr; gap: 10px; height: 100%;
}
.ux2-shot__ui--dash aside {
  border-radius: 10px; background: rgba(255,255,255,.06);
}
.ux2-shot__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px;
}
.ux2-shot__stats b {
  height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: block;
}
.ux2-shot__chart {
  height: 90px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,111,237,.35), rgba(0,111,237,.05));
  border: 1px solid rgba(110,182,255,.25);
}
.ux2-shot__phone {
  width: 120px; padding: 12px 10px; border-radius: 22px;
  background: #0a0e18; border: 1px solid rgba(255,255,255,.15);
}
.ux2-shot__phone em {
  display: block; width: 36px; height: 5px; margin: 0 auto 12px;
  border-radius: 4px; background: #050508;
}
.ux2-shot__phone strong {
  display: block; height: 10px; width: 50%; margin-bottom: 10px;
  border-radius: 4px; background: rgba(255,255,255,.35);
}
.ux2-shot__p-card {
  height: 56px; border-radius: 12px; margin-bottom: 8px;
  background: linear-gradient(135deg, #ff6600, #ff8a3d);
}
.ux2-shot__p-list { display: grid; gap: 6px; }
.ux2-shot__p-list i {
  display: block; height: 22px; border-radius: 7px;
  background: rgba(255,255,255,.08);
}
.ux2-shot__ui--sys {
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px; height: 100%; padding: 10px;
}
.ux2-shot__swatches { display: flex; gap: 10px; }
.ux2-shot__swatches i {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c); border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.ux2-shot__type {
  font-size: 3.2rem; font-weight: 800; letter-spacing: -.06em;
  color: #0b1220; line-height: 1;
}
.ux2-shot__btns { display: flex; gap: 8px; }
.ux2-shot__btns b {
  height: 34px; border-radius: 10px; display: block;
}
.ux2-shot__btns b:first-child { width: 100px; background: #006fed; }
.ux2-shot__btns b:last-child {
  width: 80px; background: transparent;
  border: 1.5px solid #c5d5ea;
}
.ux2-shot__flow {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 40px;
}
.ux2-shot__flow span {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; background: #fff;
  border: 2px solid #ffb07a; color: #ff6600;
}
.ux2-shot__flow i {
  width: 24px; height: 2px; background: #ffb07a;
}
.ux2-shot__flow-label {
  text-align: center; margin-top: 24px;
  font-weight: 750; color: #9a4a12; font-size: .9rem;
}

/* Live theme */
.ux2-live {
  padding: 100px 0;
  background: #fff;
}
.ux2-live__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.ux2-live__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.1;
  color: var(--mx-ink) !important;
}
.ux2-live__copy > p {
  margin: 0 0 28px;
  color: var(--mx-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 32rem;
}
.ux2-palettes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ux2-palettes button {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1.5px solid #d7e5f5;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 750;
  font-size: .88rem;
  color: #243447;
  transition: .2s ease;
  text-align: left;
}
.ux2-palettes button i {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(0,0,0,.08);
}
.ux2-palettes button:hover,
.ux2-palettes button.is-active {
  border-color: #006fed;
  box-shadow: 0 10px 28px rgba(0,111,237,.12);
  transform: translateY(-2px);
}
.ux2-preview {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d7e5f5;
  box-shadow: 0 30px 70px rgba(7,17,31,.12);
  transition: background .35s ease, border-color .35s ease;
  --p: #006fed;
  --ink: #0b1220;
  --soft: #f3f7fd;
  --text: #5b6b7c;
  background: var(--soft);
}
.ux2-preview[data-theme="ember"] {
  --p: #ff6600; --ink: #1a0f0a; --soft: #fff7f0; --text: #8a5a3a;
}
.ux2-preview[data-theme="ink"] {
  --p: #111827; --ink: #111827; --soft: #f3f4f6; --text: #6b7280;
}
.ux2-preview[data-theme="mint"] {
  --p: #0d9488; --ink: #042f2e; --soft: #ecfdf5; --text: #3f6f68;
}
.ux2-preview__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ux2-dots { display: flex; gap: 5px; }
.ux2-dots i {
  width: 9px; height: 9px; border-radius: 50%; background: #ff5f57;
}
.ux2-dots i:nth-child(2) { background: #febc2e; }
.ux2-dots i:nth-child(3) { background: #28c840; }
.ux2-preview__bar span {
  font-size: .72rem; font-weight: 750;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text);
}
.ux2-preview__body { padding: 36px 32px 32px; }
.ux2-preview__eyebrow {
  margin: 0 0 10px;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--p);
}
.ux2-preview__body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1;
  color: var(--ink) !important;
  transition: color .35s ease;
}
.ux2-preview__text {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1.05rem; line-height: 1.65;
  max-width: 28rem;
  transition: color .35s ease;
}
.ux2-preview__actions { display: flex; gap: 10px; margin-bottom: 24px; }
.ux2-preview__primary,
.ux2-preview__ghost {
  font-family: inherit; font-weight: 750; font-size: .9rem;
  padding: 12px 18px; border-radius: 12px; cursor: default;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.ux2-preview__primary {
  border: 0; background: var(--p); color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--p) 35%, transparent);
}
.ux2-preview__ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid color-mix(in srgb, var(--ink) 20%, transparent);
}
.ux2-preview__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.ux2-preview__cards > div {
  height: 72px; border-radius: 14px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.ux2-preview__cards > div::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--p);
  transition: background .35s ease;
}

/* Promise */
.ux2-promise {
  padding: 100px 0;
  background: #060912;
  color: #fff;
}
.ux2-promise h2 {
  margin: 0 0 48px;
  max-width: 16ch;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.08;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ux2-promise h2 span {
  background: linear-gradient(105deg, #9fd0ff, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.ux2-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ux2-promise__grid > div {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  transition: .25s ease;
}
.ux2-promise__grid > div:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
}
.ux2-promise__grid strong {
  display: block; margin-bottom: 16px;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  color: #7eb6ff;
}
.ux2-promise__grid h3 {
  margin: 0 0 8px;
  font-size: 1.25rem; font-weight: 800;
  color: #fff !important;
}
.ux2-promise__grid p {
  margin: 0;
  color: rgba(255,255,255,.6);
  line-height: 1.65; font-size: .98rem;
}

/* End CTA */
.ux2-end { padding: 0 0 100px; background: #060912; }
.ux2-end__box {
  padding: clamp(40px, 6vw, 64px);
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,111,237,.35), transparent 55%),
    linear-gradient(180deg, #0c1528, #0a101c);
  border: 1px solid rgba(142,197,255,.2);
  color: #fff;
}
.ux2-end__kicker {
  margin: 0 0 12px;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: #7eb6ff;
}
.ux2-end__box h2 {
  margin: 0 auto 14px;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.1;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ux2-end__box > p {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: rgba(255,255,255,.65) !important;
  font-size: 1.08rem; line-height: 1.7;
}
.ux2-end__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
}
.ux2-end__link {
  color: rgba(255,255,255,.7);
  font-weight: 750; text-decoration: none;
  transition: color .2s ease;
}
.ux2-end__link:hover { color: #fff; }

@media (max-width: 1024px) {
  .ux2-devices { display: none; }
  .ux2-hero__inner { padding-bottom: 64px; max-width: none; }
  .ux2-hero { min-height: auto; padding-bottom: 48px; }
  .ux2-live__grid { grid-template-columns: 1fr; }
  .ux2-promise__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ux2-hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .ux2-palettes { grid-template-columns: 1fr; }
  .ux2-preview__body { padding: 28px 20px; }
  .ux2-end { padding-bottom: 70px; }
}

/* UX2 polish pass */
.ux2-glow-btn {
  box-shadow: 0 0 0 0 rgba(0,111,237,.45), 0 16px 34px rgba(0,111,237,.35) !important;
  animation: ux2-glow 2.4s ease-in-out infinite;
}
@keyframes ux2-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,111,237,.4), 0 16px 34px rgba(0,111,237,.32); }
  50% { box-shadow: 0 0 0 10px rgba(0,111,237,0), 0 18px 40px rgba(0,111,237,.4); }
}
.ux2-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ux2-scroll i {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  position: relative;
}
.ux2-scroll i::after {
  content: '';
  position: absolute;
  left: 5px; top: 4px;
  width: 5px; height: 5px;
  border-right: 1.5px solid rgba(255,255,255,.7);
  border-bottom: 1.5px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  animation: ux2-chev 1.2s ease-in-out infinite;
}
@keyframes ux2-chev {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .7; }
  50% { transform: rotate(45deg) translate(1px, 2px); opacity: 1; }
}
.ux2-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 480px;
}
.ux2-hero__meta > div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.ux2-hero__meta strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 2px;
}
.ux2-hero__meta span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.48);
}
.ux2-cursor {
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: 0 0 24px rgba(0,111,237,.45);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 5;
}
.ux2-mac__bar {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ux2-mac__bar span {
  margin-left: 8px;
  flex: 1;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(0,0,0,.25);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
}
.ux2-mac__screen {
  display: grid !important;
  grid-template-columns: 44px 1fr;
  gap: 0;
  padding: 0 !important;
  min-height: 220px;
}
.ux2-mac__side {
  padding: 12px 8px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  display: grid;
  gap: 8px;
  align-content: start;
}
.ux2-mac__side b {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #006fed, #ff6600);
  margin-bottom: 4px;
}
.ux2-mac__side i {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
}
.ux2-mac__side i.on {
  background: #006fed;
  box-shadow: 0 0 0 3px rgba(0,111,237,.25);
}
.ux2-mac__main { padding: 12px; }
.ux2-mac__nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
  height: auto !important;
  width: auto !important;
  background: none !important;
}
.ux2-mac__nav em {
  height: 7px; width: 36px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  display: block;
}
.ux2-mac__nav strong {
  margin-left: auto;
  width: 48px; height: 18px;
  border-radius: 6px;
  background: #006fed;
  display: block;
}
.ux2-iphone__island {
  width: 42%;
  height: 16px;
  margin: 6px auto 8px;
  border-radius: 12px;
  background: #050508;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.ux2-iphone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ux2-iphone__status b {
  width: 28px; height: 8px;
  border-radius: 3px;
  background: rgba(255,255,255,.3);
}
.ux2-iphone__screen > p {
  margin: 8px 0 0;
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
}
.ux2-iphone__card {
  display: grid;
  place-items: center;
}
.ux2-iphone__card span {
  font-size: .72rem;
  font-weight: 750;
  color: #fff;
}
.ux2-iphone__dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ux2-iphone__dock i {
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
}
.ux2-iphone__dock i.on {
  background: #006fed;
  box-shadow: 0 0 0 3px rgba(0,111,237,.2);
}

.ux2-gallery__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.ux2-gallery__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ux2-gallery__nav button {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid #d7e5f5;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  color: #0b1220;
  transition: .2s ease;
}
.ux2-gallery__nav button:hover {
  border-color: #006fed;
  color: #006fed;
  box-shadow: 0 8px 20px rgba(0,111,237,.12);
  transform: translateY(-2px);
}
.ux2-shot__frame {
  transition: transform .35s ease, box-shadow .35s ease;
}
.ux2-shot:hover .ux2-shot__frame {
  box-shadow: 0 28px 60px rgba(7,17,31,.14);
}
.ux2-preview.is-flash {
  animation: ux2-flash .45s ease;
}
@keyframes ux2-flash {
  0% { transform: scale(.985); }
  60% { transform: scale(1.01); }
  100% { transform: scale(1); }
}
.ux2-preview__cards > div {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 84px;
}
.ux2-preview__cards strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink) !important;
  margin-bottom: 2px;
}
.ux2-preview__cards span {
  font-size: .72rem;
  font-weight: 650;
  color: var(--text);
}
.ux2-end__box {
  position: relative;
  overflow: hidden;
}
.ux2-end__box::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  right: -60px; top: -80px;
  border-radius: 50%;
  background: rgba(0,111,237,.25);
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .ux2-hero__meta { grid-template-columns: 1fr; max-width: none; }
  .ux2-gallery__top { flex-direction: column; align-items: flex-start; }
}

/* Real screen gallery media */
.ux2-shot__media {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid #d7e5f5;
  box-shadow: 0 18px 50px rgba(7,17,31,.1);
  margin-bottom: 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.ux2-shot:hover .ux2-shot__media {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(7,17,31,.16);
}
.ux2-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.ux2-shot:hover .ux2-shot__media img {
  transform: scale(1.04);
}
.ux2-shot__media--phone {
  aspect-ratio: 9 / 14;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  background: #05070e;
  border-radius: 28px;
  border: 3px solid #1a2030;
  box-shadow:
    0 24px 50px rgba(7,17,31,.2),
    inset 0 0 0 1px rgba(255,255,255,.08);
}
.ux2-shot--phone {
  flex: 0 0 min(280px, 70vw);
}
.ux2-shot__media--phone img {
  object-fit: cover;
  object-position: center top;
}

/* Gallery scroll polish */
.ux2-gallery {
  position: relative;
  overflow: hidden;
}
.ux2-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px max(24px, calc((100vw - 1180px) / 2 + 24px)) 48px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: max(24px, calc((100vw - 1180px) / 2 + 24px));
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.ux2-rail::-webkit-scrollbar { display: none; }
.ux2-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.ux2-rail.is-dragging .ux2-shot {
  pointer-events: none;
}
.ux2-shot {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  transition: transform .3s ease;
}
.ux2-shot:hover { transform: translateY(-8px); }
.ux2-shot--3,
.ux2-shot:nth-child(3) {
  flex: 0 0 min(280px, 70vw);
}
.ux2-shot__frame {
  aspect-ratio: 4 / 3.15;
  height: auto;
}
.ux2-shot__frame--phone {
  aspect-ratio: 4 / 3.15;
}
.ux2-gallery__nav button:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.ux2-gallery__nav button:disabled:hover {
  border-color: #d7e5f5;
  color: #0b1220;
}

/* =========================================================
   About page
   ========================================================= */
.ab-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 90% 15%, rgba(0,111,237,.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(255,102,0,.14), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.ab-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 30% 40%, #000 15%, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.ab-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.ab-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ab-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ab-hero h1 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 45%, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.ab-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.ab-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.ab-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.ab-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 420px;
}
.ab-hero__stats > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.ab-hero__stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff !important;
}
.ab-hero__stats span {
  font-size: .75rem;
  font-weight: 650;
  color: rgba(255,255,255,.5);
}
.ab-hero__visual {
  position: relative;
}
.ab-hero__photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.ab-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: rgba(0,0,0,.2);
}
.ab-hero__chip {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,16,28,.88);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .75rem;
  font-weight: 750;
  color: #dbeafe;
  backdrop-filter: blur(8px);
  animation: ai-orb-drift 9s ease-in-out infinite;
}
.ab-hero__chip--1 { top: 12%; left: -8px; }
.ab-hero__chip--2 { top: 48%; right: -10px; animation-delay: -2s; color: #ffd2b0; }
.ab-hero__chip--3 { bottom: 10%; left: 12%; animation-delay: -4s; }

/* One-line identity strip — makes About instantly clear */
.ab-identity {
  padding: 28px 0;
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
  border-bottom: 1px solid #d7e5f5;
}
.ab-identity__line {
  margin: 0 0 16px;
  max-width: 52rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.ab-identity__line strong {
  color: var(--mx-blue);
  font-weight: 800;
}
.ab-identity__line em {
  font-style: normal;
  font-weight: 800;
  color: var(--mx-ink);
  border-bottom: 2px solid rgba(0,111,237,.35);
}
.ab-identity__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-identity__pills span {
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d0e0f2;
  font-size: .82rem;
  font-weight: 700;
  color: var(--mx-muted);
}

.ab-story {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.ab-story__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mx-ink) !important;
}
.ab-story__copy p {
  margin: 0 0 14px;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.ab-story__side {
  display: grid;
  gap: 14px;
}
.ab-panel {
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0a1628, #0c1f3d);
  color: #fff;
  border: 1px solid rgba(142,197,255,.2);
}
.ab-panel--soft {
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: var(--mx-ink);
  border: 1px solid #d7e5f5;
}
.ab-panel__label {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ab-panel--soft .ab-panel__label { color: var(--mx-blue); }
.ab-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
}
.ab-panel--soft strong { color: var(--mx-ink) !important; }
.ab-panel > p {
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  font-size: .94rem;
}
.ab-panel--soft > p { color: var(--mx-muted); }
.ab-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ab-panel li {
  position: relative;
  padding-left: 16px;
  font-weight: 650;
  font-size: .94rem;
  color: var(--mx-ink);
}
.ab-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mx-blue);
}

.ab-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ab-duo article,
.ab-duo__card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 12px 32px rgba(7,17,31,.05);
  transition: .25s ease;
}
.ab-duo__card--build {
  border-top: 3px solid var(--mx-blue);
}
.ab-duo__card--train {
  border-top: 3px solid var(--mx-orange);
}
.ab-duo article:hover,
.ab-duo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7,17,31,.1);
}
.ab-duo em {
  display: block;
  margin-bottom: 12px;
  font-style: normal;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.ab-duo__card--train em,
.ab-duo article:last-child em { color: var(--mx-orange); }
.ab-duo h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ab-duo p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  line-height: 1.65;
}
.ab-duo__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ab-duo__list li {
  position: relative;
  padding-left: 18px;
  font-size: .92rem;
  font-weight: 650;
  color: var(--mx-ink);
}
.ab-duo__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mx-blue);
}
.ab-duo__card--train .ab-duo__list li::before { background: var(--mx-orange); }
.ab-duo a {
  margin-top: auto;
  font-weight: 750;
  color: var(--mx-blue);
  text-decoration: none;
}
.ab-duo__card--train a { color: var(--mx-orange); }
.ab-duo a:hover { text-decoration: underline; }

.ab-vmv {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,111,237,.32), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.ab-vmv__head {
  margin-bottom: 36px;
}
.ab-vmv__head h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ab-vmv__head p:not(.mx-label) {
  color: rgba(255,255,255,.65) !important;
}
.ab-vmv__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ab-vmv__grid article {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.ab-vmv__grid span {
  display: block;
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ab-vmv__grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff !important;
  line-height: 1.3;
}
.ab-vmv__grid p {
  margin: 0;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-size: .96rem;
}
.ab-vmv__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ab-vmv__grid li {
  color: rgba(255,255,255,.75);
  font-weight: 650;
  font-size: .95rem;
  padding-left: 14px;
  position: relative;
}
.ab-vmv__grid li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff8a3d;
}

.ab-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.ab-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--mx-blue), var(--mx-orange));
  opacity: .35;
  pointer-events: none;
}
.ab-timeline article {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.ab-timeline article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
}
.ab-timeline em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(110deg, var(--mx-blue), #1a86ff);
}
.ab-timeline article:nth-child(even) em {
  background: linear-gradient(110deg, var(--mx-orange), #ff8a3d);
}
.ab-timeline h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ab-timeline p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.ab-diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ab-diff article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.ab-diff article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
  border-color: #b8d4f0;
}
.ab-diff span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--mx-blue), #1a86ff);
}
.ab-diff article:nth-child(even) span {
  background: linear-gradient(135deg, var(--mx-orange), #ff8a3d);
}
.ab-diff h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ab-diff p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.6;
}

.ab-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ab-team article {
  text-align: center;
  padding: 24px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d7e5f5;
}
.ab-team img,
.ab-team__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
}
.ab-team__avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #006fed, #1a86ff);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}
.ab-team h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ab-team p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .9rem;
  font-weight: 600;
}

.ab-office {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,102,0,.18), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.ab-office__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.ab-office h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ab-office .mx-label--light { color: #ffb07a !important; }
.ab-office > .ab-office__grid > div > p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.68) !important;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 30rem;
}
.ab-office__img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.ab-office__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.ab-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.ab-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.ab-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ab-cta__box .mx-label--light { color: #8ec5ff !important; }
.ab-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.ab-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ab-hero__grid,
  .ab-story,
  .ab-duo,
  .ab-office__grid { grid-template-columns: 1fr; }
  .ab-vmv__grid,
  .ab-timeline { grid-template-columns: 1fr 1fr; }
  .ab-timeline::before { display: none; }
  .ab-team { grid-template-columns: 1fr 1fr; }
  .ab-hero__chip { display: none; }
}
@media (max-width: 768px) {
  .ab-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .ab-hero__stats,
  .ab-vmv__grid,
  .ab-timeline,
  .ab-diff,
  .ab-team { grid-template-columns: 1fr; }
  .ab-identity { padding: 22px 0; }
  .ab-identity__line { font-size: 1.02rem; }
  .ab-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .ab-cta { padding: 40px 0 70px; }
}

/* =========================================================
   Training pages (tri-*)
   ========================================================= */
.tri-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 90% 12%, rgba(255,102,0,.22), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(0,111,237,.26), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.tri-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 30% 40%, #000 12%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.tri-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.tri-hero__grid--show { grid-template-columns: 1fr; max-width: 760px; }
.tri-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffb07a;
}
.tri-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.tri-hero h1 span {
  background: linear-gradient(110deg, #ffb07a, #ff8a3d 40%, #9fd0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.tri-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.tri-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.tri-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.tri-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 460px;
}
.tri-hero__stats > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.tri-hero__stats strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff !important;
}
.tri-hero__stats span {
  font-size: .74rem;
  font-weight: 650;
  color: rgba(255,255,255,.5);
}
.tri-hero__panel {
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: rgba(8,16,30,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.tri-hero__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tri-hero__panel-top span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffb07a;
}
.tri-hero__panel-top em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.tri-hero__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.tri-hero__steps li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.tri-hero__steps i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.tri-hero__steps .is-done i { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.tri-hero__steps .is-active i { background: #ff8a3d; box-shadow: 0 0 0 3px rgba(255,138,61,.25); }
.tri-hero__steps .is-active {
  background: rgba(255,102,0,.1);
  border-color: rgba(255,176,122,.3);
}
.tri-hero__steps strong {
  display: block;
  font-size: .92rem;
  font-weight: 750;
  color: #fff;
}
.tri-hero__steps span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.tri-hero__panel-foot {
  margin: 14px 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.tri-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #fff8f3, #fff3eb);
  border-bottom: 1px solid #f0d9c8;
}
.tri-strip__line {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.tri-strip__line strong { color: var(--mx-orange); font-weight: 800; }
.tri-strip__line em {
  font-style: normal;
  font-weight: 800;
  border-bottom: 2px solid rgba(255,102,0,.35);
}

.tri-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tri-why article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.tri-why article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
}
.tri-why span {
  display: block;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-orange);
}
.tri-why h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.tri-why p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.tri-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tri-program {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d7e5f5;
  border-top: 3px solid var(--mx-orange);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.tri-program:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7,17,31,.1);
  border-color: #f0c4a8;
}
.tri-program__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tri-program__top em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-orange);
}
.tri-program__tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fff3eb;
  color: var(--mx-orange);
}
.tri-program h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
}
.tri-program > p {
  margin: 0 0 14px;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .98rem;
  flex: 1;
}
.tri-program__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.tri-program__meta span {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.tri-program__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 750;
  color: var(--mx-orange);
}
.tri-program__link i {
  font-style: normal;
  transition: transform .2s ease;
}
.tri-program:hover .tri-program__link i { transform: translateX(3px); }
.tri-empty {
  margin: 0;
  padding: 32px;
  text-align: center;
  color: var(--mx-muted);
  background: #fff;
  border: 1px dashed #d7e5f5;
  border-radius: 16px;
}

.tri-domains {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tri-domains article {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.tri-domains article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
}
.tri-domains em {
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.tri-domains article:nth-child(even) em { color: var(--mx-orange); }
.tri-domains h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.tri-domains p {
  margin: 0 0 14px;
  color: var(--mx-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.tri-domains ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tri-domains li {
  padding: 4px 9px;
  border-radius: 8px;
  background: #f4f8ff;
  border: 1px solid #e0ebf7;
  font-size: .74rem;
  font-weight: 700;
  color: var(--mx-ink);
}

.tri-method {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,102,0,.22), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.tri-method__head { margin-bottom: 36px; }
.tri-method__head h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.tri-method__head p:not(.mx-label) {
  color: rgba(255,255,255,.65) !important;
}
.tri-method__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tri-method__grid article {
  padding: 24px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.tri-method__grid em {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .76rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(110deg, var(--mx-orange), #ff8a3d);
}
.tri-method__grid article:nth-child(odd) em {
  background: linear-gradient(110deg, var(--mx-blue), #1a86ff);
}
.tri-method__grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff !important;
}
.tri-method__grid p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.6;
}

.tri-who {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tri-who article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
}
.tri-who span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--mx-orange), #ff8a3d);
}
.tri-who article:nth-child(even) span {
  background: linear-gradient(135deg, var(--mx-blue), #1a86ff);
}
.tri-who h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.tri-who p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.tri-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tri-faq article {
  padding: 22px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
}
.tri-faq h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.tri-faq p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.6;
}

.tri-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.tri-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,102,0,.28), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(255,176,122,.22);
  color: #fff;
}
.tri-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.tri-cta__box .mx-label--light { color: #ffb07a !important; }
.tri-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.tri-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.tri-show__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.tri-show__meta > div {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  min-width: 120px;
}
.tri-show__meta strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff !important;
}
.tri-show__meta span {
  font-size: .74rem;
  font-weight: 650;
  color: rgba(255,255,255,.5);
}
.tri-show__body {
  max-width: 48rem;
  color: var(--mx-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .tri-hero__grid { grid-template-columns: 1fr; }
  .tri-why,
  .tri-domains,
  .tri-method__grid { grid-template-columns: 1fr 1fr; }
  .tri-who { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tri-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .tri-hero__stats,
  .tri-why,
  .tri-programs,
  .tri-domains,
  .tri-method__grid,
  .tri-faq { grid-template-columns: 1fr; }
  .tri-cta { padding: 40px 0 70px; }
  .tri-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}


/* =========================================================
   Insights — services-matched redesign (ins-*)
   ========================================================= */
.ins-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(0,111,237,.3), transparent 55%),
    radial-gradient(ellipse 40% 40% at 8% 88%, rgba(255,102,0,.14), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.ins-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 28% 40%, #000 12%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.ins-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.ins-hero__grid--article {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.ins-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ins-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ins-hero h1 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 45%, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.ins-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.ins-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.ins-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.ins-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.ins-hero__pills span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 650;
  color: rgba(255,255,255,.7);
}
.ins-hero__panel {
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: rgba(8,16,30,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.ins-hero__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ins-hero__panel-top span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ins-hero__panel-top em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.ins-hero__map {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ins-hero__map li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.ins-hero__map i {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6eb6ff, #ffb07a);
}
.ins-hero__map strong {
  display: block;
  font-size: .92rem;
  font-weight: 750;
  color: #fff;
}
.ins-hero__map strong a {
  color: #fff;
  text-decoration: none;
}
.ins-hero__map strong a:hover { color: #9fd0ff; }
.ins-hero__map span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 550;
  line-height: 1.4;
}
.ins-hero__panel-foot {
  margin: 14px 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.ins-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
  border-bottom: 1px solid #d7e5f5;
}
.ins-strip__line {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.ins-strip__line strong {
  color: var(--mx-blue);
  font-weight: 800;
}

.ins-feature {
  display: grid;
  grid-template-columns: 1.45fr .7fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e5f5;
  border-top: 3px solid var(--mx-blue);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 36px rgba(7,17,31,.06);
  transition: .25s ease;
}
.ins-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7,17,31,.1);
}
.ins-feature__main {
  padding: 32px 30px;
}
.ins-feature__main em {
  display: block;
  margin-bottom: 12px;
  font-style: normal;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.ins-feature__main h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
  line-height: 1.2;
}
.ins-feature__main > p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.ins-feature__main ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ins-feature__main li {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f4f8ff;
  border: 1px solid #e0ebf7;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.ins-feature__cta {
  font-size: .95rem;
  font-weight: 750;
  color: var(--mx-blue);
}
.ins-feature__meta {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-left: 1px solid #d7e5f5;
}
.ins-feature__meta > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #0a1628, #0c1f3d);
  color: #fff;
}
.ins-feature__meta strong {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ins-feature__meta span {
  font-size: 1rem;
  font-weight: 750;
  color: #fff;
}

.ins-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ins-filters a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: var(--mx-muted);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.ins-filters a i {
  font-style: normal;
  padding: 1px 7px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--mx-blue);
  font-size: .72rem;
  font-weight: 800;
}
.ins-filters a:hover,
.ins-filters a.is-active {
  background: var(--mx-blue);
  border-color: var(--mx-blue);
  color: #fff;
}
.ins-filters a.is-active i,
.ins-filters a:hover i {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.ins-filter-note {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d7e5f5;
  color: var(--mx-muted);
}
.ins-filter-note strong { color: var(--mx-blue); }
.ins-filter-note a {
  margin-left: 10px;
  font-weight: 700;
  color: var(--mx-blue);
  text-decoration: none;
}

.ins-list {
  display: grid;
  gap: 12px;
}
.ins-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  text-decoration: none;
  color: inherit;
  transition: .25s ease;
}
.ins-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,17,31,.08);
  border-color: #b7d3f5;
}
.ins-row > em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--mx-blue);
}
.ins-row__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ins-row__tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--mx-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ins-row__date {
  font-size: .78rem;
  font-weight: 650;
  color: var(--mx-muted);
}
.ins-row h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink);
  line-height: 1.3;
}
.ins-row p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.6;
}
.ins-row__go {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  font-weight: 750;
  color: var(--mx-blue);
  white-space: nowrap;
}
.ins-row__go i {
  font-style: normal;
  transition: transform .2s ease;
}
.ins-row:hover .ins-row__go i { transform: translateX(3px); }
.ins-pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.ins-empty {
  text-align: center;
  padding: 48px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #d7e5f5;
}
.ins-empty p {
  margin: 0 0 16px;
  color: var(--mx-muted);
  font-size: 1.05rem;
}

.ins-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,111,237,.3), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.ins-band__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 36px;
  align-items: start;
}
.ins-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ins-band .mx-label--light { color: #8ec5ff !important; }
.ins-band__grid > div > p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.7) !important;
  line-height: 1.7;
  max-width: 36rem;
}
.ins-band__note {
  margin-bottom: 24px !important;
  font-size: .92rem !important;
  color: rgba(255,255,255,.5) !important;
}
.ins-band__side {
  display: grid;
  gap: 12px;
}
.ins-band__card {
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.ins-band__card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.ins-band__card span {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.ins-news {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 12px 32px rgba(7,17,31,.04);
}
.ins-news h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--mx-ink) !important;
}
.ins-news > div > p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.65;
}
.ins-news__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ins-news__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #d0e0f2;
  font-size: 1rem;
  outline: none;
}
.ins-news__form input:focus { border-color: var(--mx-blue); }
.ins-news__note {
  margin: 12px 0 0 !important;
  font-size: .85rem !important;
  color: var(--mx-muted) !important;
}
.ins-alert {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 650;
}
.ins-alert--ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.ins-alert--err { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

.ins-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.ins-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.ins-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ins-cta__box .mx-label--light { color: #8ec5ff !important; }
.ins-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.ins-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.ins-show__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.ins-show__cats a {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #9fd0ff;
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}
.ins-show__cats a:hover { background: rgba(255,255,255,.14); color: #fff; }
.ins-show__media { padding: 0 0 20px; margin-top: -24px; }
.ins-show__img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d7e5f5;
  box-shadow: 0 24px 60px rgba(7,17,31,.12);
}
.ins-show__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
}
.ins-article { max-width: 760px; margin: 0 auto; }
.ins-article__body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--mx-ink);
}
.ins-article__body h2,
.ins-article__body h3 {
  margin: 1.6em 0 .6em;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--mx-ink) !important;
}
.ins-article__body p { margin: 0 0 1.1em; color: var(--mx-muted); }
.ins-article__body a { color: var(--mx-blue); }
.ins-article__body ul,
.ins-article__body ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
  color: var(--mx-muted);
}
.ins-article__body li { margin-bottom: .4em; }
.ins-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.2em 0;
}
.ins-article__foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #d7e5f5;
}
.ins-article__tags { margin-bottom: 24px; }
.ins-article__tags > p {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mx-muted);
}
.ins-article__tags > div { display: flex; flex-wrap: wrap; gap: 8px; }
.ins-article__tags a {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--mx-blue);
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
}
.ins-article__author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: #f4f8ff;
  border: 1px solid #d7e5f5;
}
.ins-article__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #006fed, #1a86ff);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.ins-article__author strong {
  display: block;
  font-size: 1.05rem;
  color: var(--mx-ink);
}
.ins-article__author span {
  color: var(--mx-muted);
  font-size: .9rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ins-hero__grid,
  .ins-feature,
  .ins-band__grid,
  .ins-news { grid-template-columns: 1fr; }
  .ins-feature__meta {
    grid-template-columns: repeat(3, 1fr);
    border-left: none;
    border-top: 1px solid #d7e5f5;
  }
}
@media (max-width: 768px) {
  .ins-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .ins-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }
  .ins-row__go { display: none; }
  .ins-feature__meta { grid-template-columns: 1fr; }
  .ins-news { padding: 24px; }
  .ins-cta { padding: 40px 0 70px; }
  .ins-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .ins-show__img img { aspect-ratio: 16/10; }
}

/* =========================================================
   Contact page (ct-*) — premium conversion layout
   ========================================================= */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 90% 10%, rgba(0,111,237,.32), transparent 55%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(255,102,0,.16), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 28% 40%, #000 12%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.ct-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.ct-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ct-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ct-hero h1 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 40%, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.ct-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.ct-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.ct-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.ct-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.ct-hero__pills span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 650;
  color: rgba(255,255,255,.7);
}
.ct-hero__panel {
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: rgba(8,16,30,.75);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.ct-hero__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ct-hero__panel-top span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ct-hero__panel-top em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.ct-hero__steps {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ct-hero__steps li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.ct-hero__steps i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.ct-hero__steps .is-done i {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.ct-hero__steps .is-active {
  background: rgba(0,111,237,.12);
  border-color: rgba(142,197,255,.28);
}
.ct-hero__steps .is-active i {
  background: #6eb6ff;
  box-shadow: 0 0 0 3px rgba(110,182,255,.25);
}
.ct-hero__steps strong {
  display: block;
  font-size: .92rem;
  font-weight: 750;
  color: #fff;
}
.ct-hero__steps span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.ct-hero__direct {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}
.ct-hero__direct a {
  color: #9fd0ff;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.ct-hero__direct a:hover { color: #fff; }

.ct-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
  border-bottom: 1px solid #d7e5f5;
}
.ct-strip__line {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.ct-strip__line strong {
  color: var(--mx-blue);
  font-weight: 800;
}

.ct-main {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 28px;
  align-items: start;
}
.ct-form-wrap {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #d7e5f5;
  box-shadow: 0 16px 44px rgba(7,17,31,.06);
}
.ct-form-head { margin-bottom: 24px; text-align: left; }
.ct-form-head .mx-head,
.ct-form-head { max-width: none; }
.ct-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 650;
}
.ct-alert--ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.ct-alert--err { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.ct-alert ul { margin: 0; padding-left: 18px; }

.ct-inquiry__label {
  margin: 0 0 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.ct-inquiry {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ct-inquiry__btn {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1.5px solid #d0e0f2;
  background: #f8fbff;
  color: var(--mx-muted);
  font-size: .85rem;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.ct-inquiry__btn:hover {
  border-color: #b7d3f5;
  color: var(--mx-ink);
}
.ct-inquiry__btn.is-active {
  background: var(--mx-blue);
  border-color: var(--mx-blue);
  color: #fff;
}

.ct-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-field label {
  font-size: .84rem;
  font-weight: 750;
  color: var(--mx-ink);
}
.ct-field label span { color: var(--mx-orange); }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid #d0e0f2;
  background: #fff;
  font-size: .98rem;
  color: var(--mx-ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--mx-blue);
  box-shadow: 0 0 0 3px rgba(0,111,237,.12);
}
.ct-field textarea { resize: vertical; min-height: 130px; }
.ct-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.ct-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 28rem;
  font-size: .88rem;
  color: var(--mx-muted);
  font-weight: 600;
  cursor: pointer;
}
.ct-check input { margin-top: 3px; accent-color: var(--mx-blue); }
.ct-form__note {
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--mx-muted);
}

.ct-side {
  display: grid;
  gap: 12px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.ct-side__card {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
  transition: .25s ease;
}
.ct-side__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(7,17,31,.08);
}
.ct-side__card em {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mx-blue);
}
.ct-side__card:nth-child(2) em { color: var(--mx-orange); }
.ct-side__card:nth-child(3) em { color: #16a34a; }
.ct-side__card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ct-side__card p {
  margin: 0 0 12px;
  color: var(--mx-muted);
  font-size: .9rem;
  line-height: 1.55;
}
.ct-side__card > a {
  display: block;
  font-weight: 750;
  color: var(--mx-blue);
  text-decoration: none;
  font-size: .95rem;
}
.ct-side__card > a:hover { text-decoration: underline; }
.ct-side__alt {
  margin-top: 4px !important;
  font-size: .85rem !important;
  color: var(--mx-muted) !important;
  font-weight: 650 !important;
}
.ct-side__hours {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0a1628, #0c1f3d);
  border: 1px solid rgba(142,197,255,.2);
  color: #fff;
}
.ct-side__hours strong {
  display: block;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.ct-side__hours ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ct-side__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .88rem;
}
.ct-side__hours span { color: rgba(255,255,255,.55); font-weight: 650; }
.ct-side__hours em { font-style: normal; font-weight: 750; color: #fff; }

.ct-office {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,102,0,.18), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.ct-office__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.ct-office h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ct-office .mx-label--light { color: #ffb07a !important; }
.ct-office__grid > div > p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.68) !important;
  line-height: 1.7;
  max-width: 30rem;
}
.ct-office__address {
  margin-bottom: 24px !important;
  font-weight: 650 !important;
  color: rgba(255,255,255,.85) !important;
}
.ct-office__map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  min-height: 340px;
  background: #0a1628;
}
.ct-office__map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.ct-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ct-faq article {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d7e5f5;
}
.ct-faq h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.ct-faq p {
  margin: 0;
  color: var(--mx-muted);
  font-size: .94rem;
  line-height: 1.6;
}

.ct-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.ct-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.ct-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.ct-cta__box .mx-label--light { color: #8ec5ff !important; }
.ct-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.ct-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ct-hero__grid,
  .ct-main,
  .ct-office__grid { grid-template-columns: 1fr; }
  .ct-side { position: static; grid-template-columns: 1fr 1fr; }
  .ct-side__hours { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .ct-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .ct-form-wrap { padding: 22px; }
  .ct-form__grid,
  .ct-faq,
  .ct-side { grid-template-columns: 1fr; }
  .ct-form__foot { flex-direction: column; align-items: stretch; }
  .ct-cta { padding: 40px 0 70px; }
  .ct-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .ct-office__map iframe { height: 280px; }
}

/* ===== SEO landing pages ===== */
.seo-hero {
  position: relative;
  padding: calc(var(--header-h, 72px) + 48px) 0 64px;
  background: linear-gradient(160deg, #061428 0%, #0a2a52 48%, #0d3a6e 100%);
  color: #fff;
  overflow: hidden;
}
.seo-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(0, 111, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(110, 182, 255, 0.15), transparent 55%);
  pointer-events: none;
}
.seo-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.seo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b8d9ff;
}
.seo-hero__badge span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.seo-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.seo-hero__lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 640px;
}
.seo-hero .mx-actions { margin-bottom: 32px; }
.seo-hero__ghost {
  border-color: rgba(255,255,255,.28) !important;
  color: #fff !important;
}
.seo-hero__ghost:hover {
  background: rgba(255,255,255,.12) !important;
}
.seo-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.seo-hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.seo-hero__stats span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.seo-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}
.seo-copy p {
  margin: 0 0 14px;
  color: var(--mx-muted, #4b5563);
  line-height: 1.7;
}
.seo-side__card {
  padding: 24px;
  border-radius: 16px;
  background: #f4f8fc;
  border: 1px solid rgba(0, 111, 237, 0.1);
}
.seo-side__card h3 { margin: 0 0 12px; font-size: 1.1rem; }
.seo-side__card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.seo-side__card li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--mx-muted, #4b5563);
  font-size: 14px;
}
.seo-side__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #006fed;
}
.seo-side__link {
  font-weight: 600;
  color: #006fed;
  text-decoration: none;
}
.seo-side__link:hover { text-decoration: underline; }
.seo-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seo-why article {
  padding: 22px 22px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.seo-why h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.seo-why p {
  margin: 0;
  color: var(--mx-muted, #4b5563);
  font-size: 14px;
  line-height: 1.6;
}
.seo-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.seo-services__item {
  display: block;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.seo-services__item:hover {
  border-color: rgba(0, 111, 237, 0.35);
  box-shadow: 0 8px 24px rgba(0, 111, 237, 0.08);
}
.seo-services__item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}
.seo-services__item span {
  font-size: 14px;
  color: var(--mx-muted, #4b5563);
  line-height: 1.5;
}
.seo-faq-wrap { max-width: 820px; }
.seo-faq details {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  padding: 16px 0;
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  color: #0f172a;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq details p {
  margin: 10px 0 0;
  color: var(--mx-muted, #4b5563);
  line-height: 1.65;
  font-size: 15px;
}
.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.seo-related a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 10px;
  background: #f4f8fc;
  border: 1px solid rgba(0, 111, 237, 0.12);
  color: #0a2a52;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.seo-related a:hover {
  background: #e8f2fc;
  border-color: rgba(0, 111, 237, 0.3);
}
.seo-cta {
  padding: 0 0 90px;
  background: #fff;
}
.seo-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #061428, #0d3a6e);
  color: #fff;
}
.seo-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.seo-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.seo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.seo-cta__ghost {
  border-color: rgba(255,255,255,.3) !important;
  color: #fff !important;
}
.mx-footer__subhead {
  margin-top: 22px;
}
@media (max-width: 900px) {
  .seo-grid,
  .seo-why,
  .seo-services { grid-template-columns: 1fr; }
  .seo-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}
@media (max-width: 640px) {
  .seo-hero { padding: calc(var(--header-h, 72px) + 28px) 0 48px; }
}

/* =========================================================
   Enquiry popup (dm-ep) — premium split modal
   ========================================================= */
body.dm-ep-lock { overflow: hidden; }

.dm-ep {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .4s cubic-bezier(.22, 1, .36, 1),
    visibility .4s cubic-bezier(.22, 1, .36, 1);
}
.dm-ep.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dm-ep.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dm-ep[hidden] { display: none !important; }

.dm-ep__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1);
}
.dm-ep.is-open .dm-ep__backdrop { opacity: 1; }
.dm-ep.is-closing .dm-ep__backdrop { opacity: 0; }

.dm-ep__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  width: min(760px, 100%);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 90px rgba(0, 0, 0, .45);
  transform: translateY(28px) scale(.94);
  opacity: 0;
  transition:
    transform .48s cubic-bezier(.16, 1, .3, 1),
    opacity .4s cubic-bezier(.22, 1, .36, 1);
}
.dm-ep.is-open .dm-ep__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.dm-ep.is-closing .dm-ep__dialog {
  transform: translateY(16px) scale(.96);
  opacity: 0;
  transition-duration: .36s;
}

.dm-ep__brand-inner,
.dm-ep__panel {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .45s cubic-bezier(.22, 1, .36, 1) .08s,
    transform .45s cubic-bezier(.22, 1, .36, 1) .08s;
}
.dm-ep__panel {
  transition-delay: .14s;
}
.dm-ep.is-open .dm-ep__brand-inner,
.dm-ep.is-open .dm-ep__panel {
  opacity: 1;
  transform: translateY(0);
}
.dm-ep.is-closing .dm-ep__brand-inner,
.dm-ep.is-closing .dm-ep__panel {
  opacity: 0;
  transform: translateY(6px);
  transition-delay: 0s;
  transition-duration: .28s;
}

/* —— Brand column —— */
.dm-ep__brand {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 100% -10%, rgba(0,111,237,.48), transparent 55%),
    radial-gradient(ellipse 55% 50% at -5% 110%, rgba(255,102,0,.24), transparent 50%),
    linear-gradient(160deg, #06101c 0%, #0b1830 50%, #12243c 100%);
}
.dm-ep__brand-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 15%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.dm-ep__brand-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 36px 30px;
}
.dm-ep__logo {
  width: 82px;
  height: auto;
  margin-bottom: 26px;
  display: block;
}
.dm-ep__brand-kicker {
  margin: 0 0 10px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.dm-ep__brand-title {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  color: #fff;
}
.dm-ep__brand-text {
  margin: 0 0 22px;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.64);
  max-width: 17rem;
}
.dm-ep__perks {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.dm-ep__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 650;
  color: rgba(255,255,255,.82);
}
.dm-ep__perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #6eb6ff;
  box-shadow: 0 0 0 3px rgba(110,182,255,.2);
}
.dm-ep__call {
  display: inline-flex;
  align-items: center;
  color: #9fd0ff;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.dm-ep__call:hover { color: #fff; }

/* —— Form panel —— */
.dm-ep__panel {
  position: relative;
  padding: 28px 26px 24px;
  background: #fff;
}
.dm-ep__body[hidden],
.dm-ep__success[hidden],
.dm-ep__alert[hidden] {
  display: none !important;
}

.dm-ep__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: #f1f5fb;
  color: #4a5a6e;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.dm-ep__close:hover {
  background: #e5eef8;
  color: var(--mx-blue);
}

.dm-ep__head { margin-bottom: 14px; padding-right: 28px; }
.dm-ep__title {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
  line-height: 1.2;
}
.dm-ep__lead {
  margin: 0;
  color: #6a7b8f;
  font-size: .86rem;
  line-height: 1.45;
}

.dm-ep__alert {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 650;
}
.dm-ep__alert--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dm-ep__alert ul { margin: 0; padding-left: 16px; }

.dm-ep__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 11px;
  background: #eef3f9;
}
.dm-ep__chip {
  padding: 8px 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #5a6b7f;
  font-size: .75rem;
  font-weight: 750;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.dm-ep__chip:hover { color: var(--mx-ink); }
.dm-ep__chip.is-active {
  background: #fff;
  color: var(--mx-blue);
  box-shadow: 0 1px 3px rgba(7,17,31,.1);
}

.dm-ep__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dm-ep__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dm-ep__field--full { grid-column: 1 / -1; }
.dm-ep__field label {
  font-size: .72rem;
  font-weight: 750;
  color: #4a5a6e;
}
.dm-ep__field label em {
  font-style: normal;
  color: var(--mx-orange);
  font-weight: 800;
}
.dm-ep__field input,
.dm-ep__field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #d4e0ef;
  background: #fff;
  font-size: .9rem;
  color: var(--mx-ink);
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dm-ep__field input::placeholder,
.dm-ep__field textarea::placeholder {
  color: #9aabbc;
}
.dm-ep__field input:hover,
.dm-ep__field textarea:hover {
  border-color: #b8cce3;
}
.dm-ep__field input:focus,
.dm-ep__field textarea:focus {
  border-color: var(--mx-blue);
  box-shadow: 0 0 0 3px rgba(0,111,237,.11);
}
.dm-ep__field textarea {
  resize: none;
  min-height: 68px;
  line-height: 1.45;
}

.dm-ep__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.dm-ep__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #1a86ff, #006fed);
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,111,237,.24);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.dm-ep__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,111,237,.32);
}
.dm-ep__submit:disabled,
.dm-ep__submit.is-loading {
  opacity: .7;
  cursor: wait;
  transform: none;
}
.dm-ep__skip {
  border: 0;
  background: none;
  padding: 0;
  color: #8494a8;
  font-size: .84rem;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  transition: color .15s ease;
}
.dm-ep__skip:hover { color: var(--mx-ink); }

.dm-ep__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  padding: 16px 8px;
}
.dm-ep__success .dm-ep__title { margin-bottom: 6px; }
.dm-ep__success .dm-ep__lead { margin-bottom: 18px; }
.dm-ep__success-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
  color: #15803d;
  animation: dmEpPop .4s cubic-bezier(.22, 1, .36, 1);
}
@keyframes dmEpPop {
  from { transform: scale(.55); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 740px) {
  .dm-ep {
    padding: 0;
    align-items: flex-end;
  }
  .dm-ep__dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 94vh;
    overflow: auto;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }
  .dm-ep.is-open .dm-ep__dialog {
    transform: translateY(0);
    opacity: 1;
  }
  .dm-ep.is-closing .dm-ep__dialog {
    transform: translateY(100%);
    opacity: 1;
  }
  .dm-ep__brand-inner {
    padding: 22px 18px 18px;
  }
  .dm-ep__logo {
    width: 64px;
    margin-bottom: 12px;
  }
  .dm-ep__brand-title {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .dm-ep__brand-text,
  .dm-ep__perks { display: none; }
  .dm-ep__call {
    margin-top: 4px;
    font-size: .8rem;
  }
  .dm-ep__panel {
    padding: 18px 16px 26px;
  }
  .dm-ep__close {
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
  }
  .dm-ep__close:hover {
    background: rgba(255,255,255,.2);
    color: #fff;
  }
  .dm-ep__grid { grid-template-columns: 1fr; }
  .dm-ep__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .dm-ep__submit { width: 100%; }
  .dm-ep__skip { text-align: center; padding: 4px; }
  .dm-ep__success { min-height: 240px; }
}

/* =========================================================
   Careers page (cr-*)
   ========================================================= */
.cr-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(0,111,237,.3), transparent 55%),
    radial-gradient(ellipse 40% 40% at 8% 88%, rgba(255,102,0,.16), transparent 50%),
    linear-gradient(165deg, #050a14 0%, #0a1628 50%, #102038 100%);
}
.cr-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 28% 40%, #000 12%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.cr-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.cr-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.cr-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.cr-hero h1 span {
  background: linear-gradient(110deg, #9fd0ff, #6eb6ff 45%, #ffb07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.cr-hero__lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1.7;
}
.cr-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.cr-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.cr-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 440px;
}
.cr-hero__stats > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.cr-hero__stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
}
.cr-hero__stats span {
  font-size: .74rem;
  font-weight: 650;
  color: rgba(255,255,255,.5);
}
.cr-hero__panel {
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: rgba(8,16,30,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.cr-hero__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cr-hero__panel-top span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.cr-hero__panel-top em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.cr-hero__map {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.cr-hero__map li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.cr-hero__map i {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6eb6ff, #ffb07a);
}
.cr-hero__map strong {
  display: block;
  font-size: .92rem;
  font-weight: 750;
  color: #fff;
}
.cr-hero__map span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.cr-strip {
  padding: 26px 0;
  background: linear-gradient(180deg, #f4f8ff, #eef4fc);
  border-bottom: 1px solid #d7e5f5;
}
.cr-strip__line {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  color: var(--mx-ink);
  font-weight: 650;
}
.cr-strip__line strong {
  color: var(--mx-blue);
  font-weight: 800;
}

.cr-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cr-job {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d7e5f5;
  border-top: 3px solid var(--mx-blue);
  box-shadow: 0 10px 28px rgba(7,17,31,.04);
  transition: .25s ease;
}
.cr-job:nth-child(even) { border-top-color: var(--mx-orange); }
.cr-job:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7,17,31,.1);
}
.cr-job__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cr-job__top em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mx-blue);
}
.cr-job:nth-child(even) .cr-job__top em { color: var(--mx-orange); }
.cr-job__dept {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--mx-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cr-job:nth-child(even) .cr-job__dept {
  background: #fff3eb;
  color: var(--mx-orange);
}
.cr-job h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mx-ink);
}
.cr-job > p {
  margin: 0 0 14px;
  color: var(--mx-muted);
  line-height: 1.65;
  font-size: .96rem;
  flex: 1;
}
.cr-job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.cr-job__meta span {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.cr-job__skills {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cr-job__skills li {
  padding: 4px 9px;
  border-radius: 8px;
  background: #f4f8ff;
  border: 1px solid #e0ebf7;
  font-size: .74rem;
  font-weight: 700;
  color: var(--mx-ink);
}
.cr-job__cta {
  margin-top: auto;
  font-weight: 750;
  color: var(--mx-blue);
  text-decoration: none;
}
.cr-job:nth-child(even) .cr-job__cta { color: var(--mx-orange); }
.cr-job__cta:hover { text-decoration: underline; }

.cr-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,111,237,.3), transparent 45%),
    linear-gradient(180deg, #060912, #0c1f3d);
  color: #fff;
}
.cr-band__grid {
  display: grid;
  gap: 36px;
}
.cr-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.cr-band .mx-label--light { color: #8ec5ff !important; }
.cr-band__grid > div > p {
  margin: 0;
  color: rgba(255,255,255,.65) !important;
  max-width: 36rem;
}
.cr-band__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cr-band__steps article {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.cr-band__steps em {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: .76rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(110deg, var(--mx-blue), #1a86ff);
}
.cr-band__steps article:nth-child(even) em {
  background: linear-gradient(110deg, var(--mx-orange), #ff8a3d);
}
.cr-band__steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff !important;
}
.cr-band__steps p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
}

.cr-open {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d7e5f5;
}
.cr-open h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mx-ink);
}
.cr-open p {
  margin: 0;
  color: var(--mx-muted);
  line-height: 1.6;
}

.cr-cta {
  padding: 64px 0 100px;
  background: #fff;
}
.cr-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,111,237,.32), transparent 50%),
    linear-gradient(135deg, #07111f, #0c1f3d);
  border: 1px solid rgba(142,197,255,.22);
  color: #fff;
}
.cr-cta__box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.cr-cta__box .mx-label--light { color: #8ec5ff !important; }
.cr-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  max-width: 36rem;
  line-height: 1.6;
}
.cr-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cr-hero__grid { grid-template-columns: 1fr; }
  .cr-band__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cr-hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .cr-hero__stats,
  .cr-list,
  .cr-band__steps { grid-template-columns: 1fr; }
  .cr-open {
    flex-direction: column;
    align-items: flex-start;
  }
  .cr-cta { padding: 40px 0 70px; }
  .cr-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}
