﻿:root {
  --bg-soft: #f4f8fc;
  --ink-main: #112236;
  --ink-muted: #4f6177;
  --brand: #00a3b8;
  --brand-deep: #0a1929;
  --card-border: #dfe7f0;
  --card-glow: 0 18px 38px rgba(0, 163, 184, 0.14);
  --hero-neon: #22b8d4;
  --hero-neon-soft: #84dff1;
  --hero-violet: #0f65b0;
  --hero-deep: #041a35;
  --navbar-offset: 84px;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
body {
  font-family: "Tajawal", sans-serif;
  background: radial-gradient(
    circle at 10% 0%,
    #ffffff 0%,
    #eef4fb 52%,
    #e8f1fa 100%
  );
  color: var(--ink-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 18%, rgb(0 163 184 / 0.09), transparent 40%),
    radial-gradient(circle at 20% 75%, rgb(10 25 41 / 0.08), transparent 45%);
  pointer-events: none;
  z-index: -1;
}
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  z-index: 1500;
  background: linear-gradient(90deg, #00a3b8, #2bd4e4);
  box-shadow: 0 0 14px rgb(0 163 184 / 0.6);
  transition: width 0.15s linear;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #e0e7ff;
}
::-webkit-scrollbar-thumb {
  background: #0a1929;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00a3b8;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 50px 0;
  position: relative;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0a1929;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 70%;
  height: 4px;
  background: linear-gradient(to left, #00a3b8, transparent);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 700px;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.85;
}
.btn-primary {
  background: linear-gradient(135deg, #00a3b8, #108ea1);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgb(0 163 184 / 0.34);
  border: 2px solid #00a3b8;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgb(255 255 255 / 0.25) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.btn-primary:hover:before {
  transform: translateX(120%);
}
.btn-primary:hover {
  background: #fff0;
  color: #00a3b8;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgb(0 163 184 / 0.4);
}
.navbar {
  background: linear-gradient(
    120deg,
    rgb(5 12 20 / 0.94),
    rgb(8 19 30 / 0.92)
  );
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgb(0 0 0 / 0.1);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition:
    background 0.25s ease,
    padding 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}
.navbar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.navbar.scrolled {
  padding: 10px 0;
  background: linear-gradient(
    120deg,
    rgb(4 10 16 / 0.96),
    rgb(7 16 27 / 0.95)
  );
  box-shadow:
    0 10px 28px rgb(6 14 23 / 0.42),
    inset 0 -1px 0 rgb(130 221 236 / 0.2);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
.logo span {
  color: #fff;
}
.logo .point {
  color: #00a3b8;
}
.logo img {
  height: 48px;
  width: auto;
  padding: 5px;
  border-radius: 12px;
  /* background: white ; */
  /* border: 1px solid rgb(255 255 255 / 0.28); */
  display: block;
  /* filter:
    drop-shadow(0 10px 18px rgb(0 0 0 / 0.32))
    drop-shadow(0 0 16px rgb(157 239 255 / 0.22)); */
  transition: transform 0.25s ease;
  position: relative;
}
.logo img:after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    #00a3b8 0%,
    #00a3b8 25%,
    transparent 25%,
    transparent 50%,
    #00a3b8 50%,
    #00a3b8 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 8px 8px;
  opacity: 0.6;
}
.logo:hover img {
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: min(70vw, 980px);
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-links::-webkit-scrollbar {
  display: none;
}
.nav-links a {
  color: #dceaf4;
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #fff0;
  padding: 8px 12px;
}
.nav-links a:hover {
  color: #9defff;
  border-color: rgb(157 239 255 / 0.24);
  background: rgb(0 163 184 / 0.14);
}
.nav-links a.active {
  color: #081a2a;
  border-color: rgb(120 234 248 / 0.55);
  background: linear-gradient(120deg, #9defff, #66dce9);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgb(168 241 251 / 0.28);
  background: rgb(255 255 255 / 0.08);
  color: #eef9ff;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgb(0 163 184 / 0.2);
  border-color: rgb(168 241 251 / 0.48);
  transform: translateY(-1px);
}
.lang-toggle {
  --thumb-shift: 0;
  position: relative;
  width: 92px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgb(168 241 251 / 0.36);
  background: linear-gradient(
    140deg,
    rgb(255 255 255 / 0.14),
    rgb(255 255 255 / 0.04)
  );
  box-shadow:
    0 12px 24px rgb(2 13 23 / 0.32),
    inset 0 0 0 1px rgb(0 163 184 / 0.22);
  color: #e9f8ff;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 3px;
  cursor: pointer;
  isolation: isolate;
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.lang-toggle:before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 12% 20%,
    rgb(132 223 241 / 0.28),
    transparent 48%
  );
  z-index: -2;
}
.lang-toggle:hover {
  border-color: rgb(168 241 251 / 0.56);
  box-shadow:
    0 14px 30px rgb(2 13 23 / 0.38),
    0 0 22px rgb(0 163 184 / 0.35);
  transform: translateY(-1px);
}
.lang-toggle:focus-visible {
  outline: 2px solid rgb(132 223 241 / 0.85);
  outline-offset: 2px;
}
.lang-toggle-option {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.72;
  transition:
    opacity 0.24s ease,
    color 0.24s ease;
}
.lang-toggle-option.is-active {
  opacity: 1;
  color: #051423;
}
.lang-toggle-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: linear-gradient(125deg, #9defff, #66dce9 62%, #2bb8d0);
  box-shadow: 0 10px 22px rgb(47 193 213 / 0.45);
  transform: translateX(var(--thumb-shift));
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.1, 1);
  z-index: 1;
}
html[dir="ltr"] .lang-toggle-thumb {
  right: auto;
  left: 3px;
}
.hero {
  background: linear-gradient(
    120deg,
    rgb(3 18 38 / 0.84),
    rgb(6 44 78 / 0.74) 24%,
    rgb(7 88 132 / 0.34)
  );
  color: #fff;
  margin-top: var(--navbar-offset);
  padding: 10px 0 102px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgb(103 231 245 / 0.25);
  min-height: clamp(620px, 78vh, 900px);
  transition: padding-top 0.3s ease;
  perspective: 1300px;
  --hero-ready: 0;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-slider:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgb(132 223 241 / 0.12),
    transparent 34%,
    transparent 65%,
    rgb(15 101 176 / 0.2)
  );
  mix-blend-mode: screen;
  animation: heroAuraSweep 15s ease-in-out infinite;
}
.hero-bg-slider:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(132 223 241 / 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgb(132 223 241 / 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
  animation: heroGridShift 22s linear infinite;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.03);
  transition:
    opacity 900ms ease,
    transform 6.8s ease,
    filter 900ms ease;
  will-change: opacity, transform, filter;
}
.hero-bg-slide.s1 {
  background-image: url(/images/sliders/1.png);
}
.hero-bg-slide.s2 {
  background-image: url(/images/sliders/2.png);
}
.hero-bg-slide.s3 {
  background-image: url(/images/sliders/3.png);
}
.hero-bg-slide.s4 {
  background-image: url(/images/sliders/4.png);
}
.hero-bg-slide.s5 {
  background-image: url(/images/sliders/5.png);
}
.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
  filter: saturate(1.15) contrast(1.08);
}
body.nav-visible .hero {
  padding-top: 10px;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero:before {
  inset: 0;
  background:
    radial-gradient(circle at 80% 16%, rgb(34 184 212 / 0.26), transparent 36%),
    radial-gradient(circle at 18% 84%, rgb(15 101 176 / 0.26), transparent 40%),
    radial-gradient(circle at 50% 50%, rgb(132 223 241 / 0.18), transparent 38%);
}
.hero:after {
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgb(4 22 45 / 0.9), transparent);
}
.hero .container {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1.5fr 0.98fr;
  gap: 28px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 28px 24px;
  max-width: min(780px, 100%);
  min-height: 360px;
  border-radius: 26px;
  box-shadow: 0 18px 34px rgb(2 12 22 / 0.28);
  transform-style: preserve-3d;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 20px;
  color: #d6f4fb;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(8 43 73 / 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgb(7 31 58 / 0.35);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.9rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
  text-wrap: balance;
  text-shadow: 0 12px 30px rgb(0 0 0 / 0.4);
}
.hero-content p {
  font-size: 1.12rem;
  color: #dceefe;
  margin-bottom: 24px;
  max-width: 90%;
  line-height: 1.85;
  text-shadow: 0 5px 16px rgb(0 0 0 / 0.26);
}
.hero-slide-title,
.hero-slide-subtitle {
  display: block;
  transition:
    opacity 360ms ease,
    transform 460ms ease,
    filter 360ms ease;
}
.hero-slide-title {
  min-height: 2.35em;
}
.hero-slide-subtitle {
  min-height: 3.7em;
}
.hero-slide-title.text-switching,
.hero-slide-subtitle.text-switching {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}
.hero-slider-meta {
  display: grid;
  gap: 14px;
  max-width: 460px;
}
.hero-slider-track {
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background: rgb(132 223 241 / 0.26);
  overflow: hidden;
}
.hero-slider-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #84dff1, #22b8d4, #0f65b0);
  box-shadow: 0 0 18px rgb(34 184 212 / 0.5);
  transition: width 300ms linear;
}
.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 15px 0;
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgb(132 223 241 / 0.4);
  box-shadow: inset 0 0 0 1px rgb(7 46 74 / 0.45);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    width 260ms ease,
    box-shadow 220ms ease;
}
.hero-slider-dot:hover {
  transform: translateY(-2px);
  background: rgb(193 240 249 / 0.82);
}
.hero-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #d2f4fb, #55cfe5 65%, #0f65b0);
  box-shadow:
    inset 0 0 0 1px rgb(5 37 58 / 0.35),
    0 0 18px rgb(34 184 212 / 0.48);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-actions .btn-primary {
  min-width: 176px;
  box-shadow: 0 14px 30px rgb(0 163 184 / 0.38);
}
.btn-outline {
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(7 41 70 / 0.62);
  color: #eefbff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--hero-neon-soft);
  background: rgb(7 60 94 / 0.74);
}
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-chip {
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgb(163 236 247 / 0.32);
  background: rgb(6 27 49 / 0.54);
  color: #ddf2ff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  transform: translateZ(16px);
}
.hero-kpi {
  border: 1px solid rgb(128 221 242 / 0.34);
  border-radius: 12px;
  padding: 10px;
  background: rgb(6 25 44 / 0.5);
  backdrop-filter: blur(7px);
}
.hero-kpi strong {
  display: block;
  color: var(--hero-neon-soft);
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.hero-kpi span {
  color: #d0e6fa;
  font-size: 0.79rem;
  line-height: 1.65;
}
.hero-scene {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  transform-style: preserve-3d;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-a {
  width: 180px;
  height: 180px;
  top: 6%;
  right: 8%;
  background: radial-gradient(circle, rgb(34 184 212 / 0.52), #fff0);
  animation: floatOrbit 8s ease-in-out infinite;
}
.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -2%;
  background: radial-gradient(circle, rgb(15 101 176 / 0.44), #fff0);
  animation: floatOrbit 10s ease-in-out infinite 0.7s;
}
.hero-orb-c {
  width: 100px;
  height: 100px;
  top: 42%;
  left: 18%;
  background: radial-gradient(circle, rgb(132 223 241 / 0.42), #fff0);
  animation: floatOrbit 7s ease-in-out infinite 1.2s;
}
.hero-glass-panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgb(132 223 241 / 0.4);
  background: linear-gradient(150deg, rgb(6 25 43 / 0.78), rgb(10 39 62 / 0.7));
  box-shadow: 0 24px 44px rgb(1 11 22 / 0.45);
  backdrop-filter: blur(12px);
  overflow: hidden;
  min-height: 380px;
}
.hero-glass-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgb(34 184 212 / 0.2),
      transparent 35%,
      transparent 65%,
      rgb(15 101 176 / 0.24)
    ),
    radial-gradient(circle at 20% 10%, rgb(132 223 241 / 0.24), transparent 40%);
  pointer-events: none;
}
.hero-glass-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(132 223 241 / 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgb(132 223 241 / 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, rgb(0 0 0 / 0.95), rgb(0 0 0 / 0.2));
  opacity: 0.38;
  pointer-events: none;
}
.hero-panel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-content: space-between;
  padding: 20px;
  gap: 14px;
}
.hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hero-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgb(132 223 241 / 0.46);
  background: rgb(7 39 66 / 0.64);
  color: #dff8ff;
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-panel-score {
  padding: 7px 11px;
  border-radius: 10px;
  background: rgb(34 184 212 / 0.16);
  border: 1px solid rgb(34 184 212 / 0.42);
  color: var(--hero-neon-soft);
  font-weight: 800;
  font-size: 0.84rem;
}
.ai-core-wrap {
  min-height: 190px;
  display: grid;
  place-items: center;
  position: relative;
}
.ai-core {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 1px solid rgb(132 223 241 / 0.46);
  background: radial-gradient(
    circle at 30% 30%,
    rgb(132 223 241 / 0.36),
    rgb(12 43 72 / 0.85)
  );
  display: grid;
  place-items: center;
  position: relative;
  box-shadow:
    0 0 24px rgb(34 184 212 / 0.34),
    inset 0 0 22px rgb(34 184 212 / 0.2);
  animation: pulseCore 3.6s ease-in-out infinite;
}
.ai-core i {
  color: var(--hero-neon-soft);
  font-size: 2.1rem;
  text-shadow: 0 0 10px rgb(132 223 241 / 0.52);
}
.core-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgb(132 223 241 / 0.5);
  animation: spinOrbit 11s linear infinite;
}
.core-ring:before,
.core-ring:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hero-neon-soft);
  box-shadow: 0 0 12px rgb(132 223 241 / 0.68);
}
.core-ring:before {
  top: 10px;
  left: 16px;
}
.core-ring:after {
  bottom: 13px;
  right: 20px;
}
.hero-data-stream {
  display: grid;
  gap: 10px;
}
.data-line {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(6 24 43 / 0.7);
  border: 1px solid rgb(132 223 241 / 0.28);
  position: relative;
}
.data-line span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(
    90deg,
    rgb(34 184 212 / 0.24),
    rgb(34 184 212 / 0.9),
    rgb(132 223 241 / 0.7)
  );
  animation: dataFlow 2.9s ease-in-out infinite;
}
.data-line:nth-child(2) span {
  width: 58%;
  animation-delay: 0.45s;
}
.data-line:nth-child(3) span {
  width: 82%;
  animation-delay: 0.85s;
}
.hero-floating-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 11px;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(7 40 66 / 0.72);
  color: #dcf7ff;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgb(2 15 31 / 0.32);
  backdrop-filter: blur(7px);
  animation: floatOrbit 8.4s ease-in-out infinite;
}
.hero-floating-chip i {
  color: var(--hero-neon-soft);
  margin-inline-start: 5px;
}
.chip-a {
  top: 8%;
  left: 2%;
  animation-delay: 0.6s;
}
.chip-b {
  top: 54%;
  right: 4%;
  animation-delay: 1.2s;
}
.hero-quick-cards {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: end;
  padding-bottom: 8px;
}
.hero-stat-card {
  position: relative;
  border: 1px solid rgb(139 230 246 / 0.35);
  background: linear-gradient(160deg, rgb(8 32 54 / 0.8), rgb(6 22 39 / 0.74));
  color: #e7f8ff;
  border-radius: 14px;
  padding: 14px 15px;
  box-shadow: 0 12px 28px rgb(2 12 24 / 0.3);
  backdrop-filter: blur(8px);
  animation: floatOrbit 8s ease-in-out infinite;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.hero-stat-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgb(132 223 241 / 0.66);
  box-shadow: 0 18px 30px rgb(2 16 30 / 0.4);
}
.hero-stat-card:nth-child(2) {
  animation-delay: 0.8s;
}
.hero-stat-card:nth-child(3) {
  animation-delay: 1.5s;
}
.hero-stat-card strong {
  display: block;
  color: #a8f1fb;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.hero-stat-card span {
  font-size: 0.86rem;
  color: #d9edf9;
  line-height: 1.65;
}
.hero [data-hero-item] {
  --hero-scroll-x: 0px;
  --hero-scroll-y: 0px;
  --hero-scroll-rotate: 0deg;
  --hero-scroll-scale: 1;
  opacity: 0;
  transform: translate3d(
      var(--hero-scroll-x),
      calc(34px + var(--hero-scroll-y)),
      0
    )
    rotate(var(--hero-scroll-rotate))
    scale(calc(0.97 * var(--hero-scroll-scale)));
  filter: blur(7px);
  transition:
    transform 0.72s cubic-bezier(0.2, 0.7, 0.1, 1),
    opacity 0.66s ease,
    filter 0.72s ease;
  transition-delay: var(--hero-delay, 0ms);
}
.hero.is-ready [data-hero-item] {
  opacity: 1;
  transform: translate3d(var(--hero-scroll-x), var(--hero-scroll-y), 0)
    rotate(var(--hero-scroll-rotate)) scale(var(--hero-scroll-scale));
  filter: blur(0);
  transition: transform 0.16s linear;
  transition-delay: 0ms;
  will-change: transform;
}
@keyframes floatOrbit {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulseCore {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spinOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dataFlow {
  0% {
    transform: translateX(0);
    filter: saturate(0.9);
  }
  50% {
    transform: translateX(8%);
    filter: saturate(1.2);
  }
  100% {
    transform: translateX(0);
    filter: saturate(0.9);
  }
}
@keyframes heroSlideSwap {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroSlidePulse {
  0% {
    transform: scale(1.1) translate3d(0, 0, 0);
    filter: saturate(1.03) contrast(1.02);
  }
  50% {
    transform: scale(1.03) translate3d(0, -1%, 0);
    filter: saturate(1.12) contrast(1.06);
  }
  100% {
    transform: scale(1.1) translate3d(0, 0, 0);
    filter: saturate(1.03) contrast(1.02);
  }
}
@keyframes heroAuraSweep {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-2%);
  }
  50% {
    opacity: 0.58;
    transform: translateX(2%);
  }
}
@keyframes heroGridShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-42px, -42px, 0);
  }
}
.shape {
  position: absolute;
  background: rgb(0 163 184 / 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.shape1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
.shape2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  background: rgb(10 25 41 / 0.2);
}
@keyframes drift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes riseUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes partnerFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.dx6-section {
  background:
    radial-gradient(circle at 88% 6%, rgb(18 169 200 / 0.12), transparent 42%),
    radial-gradient(circle at 10% 92%, rgb(3 65 116 / 0.1), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #edf5fc 100%);
  border-top: 1px solid #d7e7f4;
}
.dx6-section .section-title {
  background: linear-gradient(120deg, #12a9c8, #0b77ac 60%, #034174);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.dx6-intro {
  background: linear-gradient(150deg, #07355f, #034174);
  color: #e7f4ff;
  border: 1px solid rgb(106 201 222 / 0.38);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 42px rgb(4 38 70 / 0.28);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.dx6-intro:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -110px;
  left: -95px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.36), transparent 70%);
  pointer-events: none;
}
.dx6-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #c5f1f9;
  border: 1px solid rgb(132 223 241 / 0.45);
  background: rgb(18 169 200 / 0.16);
}
.dx6-intro p {
  color: #d5e9f8;
  line-height: 1.9;
  margin-top: 8px;
}
.dx6-utility-bar {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 16px;
  border: 1px solid rgb(130 194 220 / 0.48);
  background: linear-gradient(
    120deg,
    rgb(255 255 255 / 0.95),
    rgb(233 244 252 / 0.9)
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgb(6 57 93 / 0.14);
}
.dx6-mini-nav {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.dx6-mini-nav a {
  text-decoration: none;
  color: #0a4f7e;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #c3daeb;
  background: linear-gradient(180deg, #ffffff, #f0f7fd);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
}
.dx6-mini-nav a:hover,
.dx6-mini-nav a:focus {
  border-color: #6fc2dc;
  color: #0b77ac;
  background: #fff;
}
.dx6-mini-nav a.is-active {
  border-color: #12a9c8;
  color: #fff;
  background: linear-gradient(135deg, #12a9c8, #0b77ac 60%, #034174);
  box-shadow: 0 10px 22px rgb(6 69 108 / 0.34);
}
.dx6-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.dx6-action-btn {
  border: 1px solid rgb(89 188 214 / 0.65);
  background: linear-gradient(145deg, #034174, #0b77ac);
  color: #e9f8ff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.dx6-action-btn:hover {
  border-color: #84dff1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(6 69 108 / 0.34);
}
.framework-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgb(130 194 220 / 0.42);
  background:
    radial-gradient(circle at 8% 10%, rgb(18 169 200 / 0.18), transparent 42%),
    radial-gradient(circle at 92% 84%, rgb(11 119 172 / 0.2), transparent 38%),
    linear-gradient(165deg, rgb(251 254 255 / 0.98), rgb(233 244 252 / 0.95));
  box-shadow: 0 24px 44px rgb(6 52 83 / 0.16);
  isolation: isolate;
}
.framework-grid {
  display: flex;
  gap: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  direction: ltr;
}
.framework-card {
  background: #fff0;
  border-radius: 0;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  border: 0;
  position: relative;
  min-width: 100%;
  opacity: 0.4;
  transform: scale(0.985);
  pointer-events: none;
  padding: 0;
  direction: rtl;
}
.framework-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.framework-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(360px, 36vw, 460px);
  align-items: stretch;
}
.framework-card-inner.intro-only {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(280px, 30vw, 360px);
}
.framework-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #041322;
}
.framework-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgb(132 223 241 / 0.2), transparent 38%),
    linear-gradient(180deg, #fff0, rgb(3 18 32 / 0.36));
  pointer-events: none;
}
.framework-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.03);
  transition:
    transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.95s ease;
}
.framework-media-full img {
  object-fit: cover;
  background: radial-gradient(circle at center, #0d314f, #041322 72%);
}
.framework-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 84% 14%, rgb(18 169 200 / 0.16), transparent 44%),
    linear-gradient(165deg, rgb(251 254 255 / 0.98), rgb(233 244 252 / 0.95));
  overflow: hidden;
}
.framework-content:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #fff0, rgb(255 255 255 / 0.42), #fff0);
  transform: translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.framework-card .card-number {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: rgb(18 169 200 / 0.14);
  position: absolute;
  top: 6px;
  left: 26px;
}
.framework-head {
  padding: 26px 26px 8px;
  position: relative;
}
.framework-chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f5fb;
  color: #0b77ac;
  border: 1px solid #afd7ea;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.framework-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #0a1929;
  margin-bottom: 9px;
  position: relative;
  line-height: 1.55;
}
.framework-goal {
  color: #4a5a6e;
  margin-bottom: 12px;
  line-height: 2;
  font-size: 18px;
}
.dx-cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
  align-items: center;
}
.cycle-item {
  background: linear-gradient(140deg, #12a9c8, #0b77ac 60%, #034174);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgb(215 244 251 / 0.36);
}
.framework-details {
  padding: 4px 26px 24px;
}
.framework-details h4 {
  font-size: 1rem;
  color: #0b5f92;
  margin-bottom: 10px;
}
.framework-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.framework-list li {
  background: #f6fbff;
  border: 1px solid #d2e4f2;
  border-radius: 10px;
  padding: 9px 10px;
  color: #405f79;
  font-size: 0.89rem;
  line-height: 1.75;
}
.framework-result {
  margin-top: 0;
  background: linear-gradient(145deg, #e7f5fb, #f3fbff);
  /* border: 1px solid #a9d4e9; */
  border-radius: 15px;
  padding: 14px;
  color: #0b5f92;
  font-size: 1.1rem;
  line-height: 2;

}
.framework-card .framework-media,
.framework-card .framework-content {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.framework-card.active .framework-media,
.framework-card.active .framework-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.framework-card.active .framework-content{
  padding: 10px 50px;

}

.framework-card.active .framework-content:after {
  transform: translateX(120%);
}
.framework-card.active .framework-media img {
  transform: scale(1);
  filter: saturate(1.16) contrast(1.06);
}
.framework-card.active .framework-content {
  transition-delay: 0.12s;
}
@keyframes dxSwapInNext {
  from {
    opacity: 0;
    transform: translate3d(34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes dxSwapInPrev {
  from {
    opacity: 0;
    transform: translate3d(-34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.framework-carousel.is-swapping[data-dx-direction="next"]
  .framework-card.active
  .framework-media,
.framework-carousel.is-swapping[data-dx-direction="next"]
  .framework-card.active
  .framework-content {
  animation: dxSwapInNext 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.framework-carousel.is-swapping[data-dx-direction="prev"]
  .framework-card.active
  .framework-media,
.framework-carousel.is-swapping[data-dx-direction="prev"]
  .framework-card.active
  .framework-content {
  animation: dxSwapInPrev 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.framework-carousel.is-swapping .framework-card.active .framework-content {
  animation-delay: 0.08s;
}
@keyframes dxSlideGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(0);
  }
  50% {
    opacity: 0.62;
    transform: translateX(-18px);
  }
}
.framework-carousel::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -16%;
  width: 62%;
  height: 190%;
  background: linear-gradient(110deg, #fff0, rgb(18 169 200 / 0.15), #fff0);
  pointer-events: none;
  animation: dxSlideGlow 6.3s ease-in-out infinite;
  z-index: 1;
}
.framework-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgb(255 255 255 / 0.34);
  pointer-events: none;
  z-index: 2;
}
.flagship-service {
  background:
    radial-gradient(circle at 86% 8%, rgb(18 169 200 / 0.12), transparent 42%),
    radial-gradient(circle at 14% 88%, rgb(3 65 116 / 0.1), transparent 45%),
    linear-gradient(180deg, #f7fbff 0%, #e9f2fb 100%);
}
.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}
.main-service-panel {
  background:
    linear-gradient(
      120deg,
      rgb(3 24 48 / 0.93),
      rgb(5 52 92 / 0.9) 0%,
      rgb(10 88 136 / 0.82)
    ),
    url(/images/services/1.png) center center / cover no-repeat;
  color: #f2f8ff;
  border-radius: 32px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(106 201 222 / 0.38);
  box-shadow: 0 24px 44px rgb(4 34 58 / 0.34);
}
.main-service-panel:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  top: -100px;
  left: -90px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.5), transparent 68%);
  pointer-events: none;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #b6ecf6;
  background: rgb(18 169 200 / 0.16);
  border: 1px solid rgb(132 223 241 / 0.4);
}
.main-service-panel h3,
.service-title {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.45;
}
.service-title {
  color: #0a4f7e;
  background: linear-gradient(120deg, #12a9c8, #0b77ac 60%, #034174);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.main-service-panel p {
  color: #d8e8f8;
  margin-bottom: 14px;
  line-height: 1.95;
}
.flagship-panel-image {
  margin: 18px 0 20px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgb(132 223 241 / 0.42);
  box-shadow: 0 18px 32px rgb(1 18 32 / 0.34);
  position: relative;
}
.flagship-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(7 40 66 / 0.06), rgb(3 20 36 / 0.42));
  pointer-events: none;
}
.flagship-panel-image img {
  width: 100%;
  display: block;
  /* aspect-ratio: 16 / 9; */
  object-fit: cover;
  transition: transform 0.45s ease;
}
.main-service-panel:hover .flagship-panel-image img {
  /* transform: scale(1.05); */
}
.dx-equation {
  margin-top: 20px;
  background: linear-gradient(
    160deg,
    rgb(18 169 200 / 0.3),
    rgb(132 223 241 / 0.12)
  );
  border: 1px solid rgb(132 223 241 / 0.42);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
}
.dx-equation strong {
  font-size: 1.18rem;
  letter-spacing: 0.2px;
}
.phase-flow {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 24px 12px;
}
.phase-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgb(18 169 200 / 0.3) 0%,
    rgb(18 169 200 / 0.5) 50%,
    rgb(18 169 200 / 0.3) 100%
  );
  transform: translateY(-50%);
  z-index: 0;
}
.phase-chip {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 0;
  font-weight: 400;
  color: transparent;
  background: none;
  transition: none;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.phase-chip i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12a9c8, #0b77ac 60%, #034174);
  color: #fff;
  font-size: 1.3rem;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 3px rgb(18 169 200 / 0.3),
    0 12px 24px rgb(18 169 200 / 0.3);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    filter 0.35s ease;
  animation: phaseSlideIn 0.6s cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--phase-index, 0) * 0.08s);
  position: relative;
  font-style: normal;
}
.phase-chip::after {
  content: attr(data-label);
  position: absolute;
  top: 100%;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #d9f3fb;
  white-space: nowrap;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  animation: phaseLabelFadeIn 0.6s cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--phase-index, 0) * 0.08s + 0.15s);
  text-align: center;
  width: 100px;
  white-space: normal;
}
.phase-chip:hover i {
  transform: scale(1.18) translateY(-2px) translateZ(0);
  /* background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac); */
  /* box-shadow:
    0 0 0 4px rgb(18 169 200 / 0.6),
    0 0 28px rgb(18 169 200 / 0.7),
    0 20px 40px rgb(18 169 200 / 0.5); */
  /* filter: brightness(1.12); */
  /* animation: phaseHoverPulse 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); */
}
.phase-chip:nth-child(6) i {
  background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac);
  box-shadow:
    0 0 0 3px rgb(18 169 200 / 0.4),
    0 12px 24px rgb(18 169 200 / 0.4),
    inset 0 0 12px rgb(255 255 255 / 0.15);
  animation:
    phasePulse 2.4s ease-in-out infinite,
    phaseSlideIn 0.6s cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--phase-index, 0) * 0.08s);
  border: 3px solid #fff;
  position: relative;
  z-index: 3;
  will-change: transform, box-shadow, filter;
  transform: translateZ(0);
}
.phase-chip:nth-child(6) i::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(18 169 200 / 0.4), transparent 70%);
  animation: phaseRipple 2s ease-out infinite;
  z-index: 1;
}
.phase-chip:nth-child(6)::after {
  animation-name: phaseLabelFadeInLastChild;
  animation-delay: calc(var(--phase-index, 0) * 0.08s + 0.15s);
}
.phase-chip:nth-child(6)::after {
  position: absolute;
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 14px;
}
.phase-chip:nth-child(6):hover i {
  transform: scale(1.28) translateY(-2px) translateZ(0);
  box-shadow:
    0 0 0 5px rgb(18 169 200 / 0.7),
    0 0 32px rgb(18 169 200 / 0.7),
    0 22px 40px rgb(18 169 200 / 0.5),
    inset 0 0 16px rgb(255 255 255 / 0.2);
  filter: brightness(1.18);
  animation: phaseHoverPulse 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.phase-arrow {
  display: none;
}
@keyframes phaseSlideIn {
  from {
    opacity: 0;
    transform: scale(0.4) translateY(20px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
@keyframes phaseLabelFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes phaseLabelFadeInLastChild {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes phasePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgb(18 169 200 / 0.4),
      0 12px 24px rgb(18 169 200 / 0.4),
      inset 0 0 12px rgb(255 255 255 / 0.15);
  }
  50% {
    box-shadow:
      0 0 0 6px rgb(18 169 200 / 0.3),
      0 16px 32px rgb(18 169 200 / 0.45),
      inset 0 0 16px rgb(255 255 255 / 0.2);
  }
}
@keyframes phaseRipple {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
@keyframes phaseHoverPulse {
  0% {
    box-shadow:
      0 0 0 0px rgb(18 169 200 / 0.9),
      0 0 15px rgb(18 169 200 / 0.7);
  }
  50% {
    box-shadow:
      0 0 0 4px rgb(18 169 200 / 0.4),
      0 0 20px rgb(18 169 200 / 0.5);
  }
  100% {
    box-shadow:
      0 0 0 8px rgb(18 169 200 / 0),
      0 0 25px rgb(18 169 200 / 0);
  }
}
.service-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-request-btn {
  border: 1px solid rgb(132 223 241 / 0.48);
  background: linear-gradient(125deg, #1bc0dc, #1188c1 60%, #0b5f9a);
  color: #f5fcff;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow:
    0 12px 24px rgb(7 110 158 / 0.36),
    inset 0 0 0 1px rgb(255 255 255 / 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.service-request-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgb(7 110 158 / 0.42),
    inset 0 0 0 1px rgb(255 255 255 / 0.24);
  filter: brightness(1.03);
}
.service-request-btn:active {
  transform: translateY(0);
}
.service-details-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(125deg, #0d4f81, #0b5f9a 60%, #0a3f67);
}
.service-visuals {
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto;
}
.axis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.axis-card {
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.97),
    rgb(235 245 252 / 0.95)
  );
  border: 1.5px solid rgb(18 169 200 / 0.32);
  border-radius: 16px;
  padding: 22px 18px;
  min-height: 140px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.axis-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.axis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #12a9c8, #0b77ac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.axis-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -45px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(18 169 200 / 0.12), transparent 70%);
}
.axis-card:hover {
  transform: translateY(-12px);
  border-color: rgb(11 119 172 / 0.52);
  box-shadow: 0 18px 40px rgb(7 85 128 / 0.22);
}
.axis-card:hover::before {
  transform: scaleX(1);
}
.axis-card i {
  font-size: 2.4rem;
  color: #0d8fb6;
  margin-bottom: 12px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}
.axis-card:hover i {
  color: #12a9c8;
  transform: scale(1.2) rotate(8deg);
}
.axis-card h4 {
  color: #0a4570;
  font-size: 1.08rem;
  margin: 6px 0 10px;
  line-height: 1.5;
  font-weight: 600;
  transition: color 0.35s ease;
  position: relative;
  z-index: 2;
}
.axis-card:hover h4 {
  color: #0b77ac;
}
.axis-card p {
  color: #4a627a;
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.8;
  transition: color 0.35s ease;
  position: relative;
  z-index: 2;
}
.axis-result {
  margin-top: 14px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgb(11 119 172 / 0.26);
  background: linear-gradient(
    145deg,
    rgb(18 169 200 / 0.12),
    rgb(2 46 82 / 0.08)
  );
  padding: 10px;
  text-align: start;
}
.axis-result strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: #0b4a73;
  font-weight: 800;
}
.axis-result span {
  color: #2c4f6d;
  font-size: 0.84rem;
  line-height: 1.7;
}
.axis-details-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgb(11 119 172 / 0.4);
  background: rgb(255 255 255 / 0.76);
  color: #0b5f8a;
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.axis-card-link:hover .axis-details-link {
  transform: translateY(-1px);
  background: rgb(18 169 200 / 0.13);
  border-color: rgb(11 119 172 / 0.62);
  color: #084f76;
}
.axis-card:hover p {
  color: #274e6c;
}
.axis-card:hover p {
  color: #274e6c;
}
.axis-card:hover .axis-result {
  border-color: rgb(11 119 172 / 0.45);
  background: linear-gradient(
    145deg,
    rgb(18 169 200 / 0.18),
    rgb(2 46 82 / 0.14)
  );
}
.axis-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgb(18 169 200 / 0.14),
    transparent 38%,
    transparent 62%,
    rgb(3 65 116 / 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.axis-card:hover {
  transform: translateY(-9px) rotate(-0.6deg) scale(1.015);
  border-color: #6abbd7;
  box-shadow: 0 18px 32px rgb(6 56 92 / 0.22);
}
.axis-card:hover:after {
  opacity: 1;
}
.axis-card h4 {
  font-size: 1.03rem;
  margin-bottom: 6px;
  color: #0b3f66;
}
.axis-card p {
  font-size: 0.9rem;
  color: #4f6882;
  line-height: 1.7;
}
.service-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.flagship-service .service-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.industrial-block {
  margin-top: 26px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgb(106 187 215 / 0.38);
  background:
    radial-gradient(circle at 10% 8%, rgb(18 169 200 / 0.18), transparent 38%),
    radial-gradient(circle at 86% 88%, rgb(3 65 116 / 0.12), transparent 40%),
    linear-gradient(130deg, rgb(7 31 55 / 0.98), rgb(9 63 101 / 0.95));
  color: #e7f5ff;
  box-shadow: 0 20px 40px rgb(4 34 58 / 0.26);
}
.industrial-head h3 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #d4f1ff;
}
.industrial-content {
  display: grid;
  gap: 12px;
}
.industrial-content p {
  color: #d7e8f7;
  line-height: 1.95;
  margin: 0;
  font-size: 1rem;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgb(26 29 33 / 0.84);
  backdrop-filter: blur(7px);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.gallery-panel {
  width: min(100%, 1040px);
  background: linear-gradient(
    180deg,
    rgb(13 33 53 / 0.98),
    rgb(9 23 39 / 0.98)
  );
  border: 1px solid rgb(115 211 228 / 0.35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgb(0 0 0 / 0.5);
  transform: scale(0.97);
  transition: transform 0.25s ease;
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.gallery-lightbox.open .gallery-panel {
  transform: scale(1);
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid rgb(124 211 228 / 0.25);
  color: #d8eefc;
  z-index: 2;
}
.gallery-title {
  font-size: 1rem;
  font-weight: 700;
}
.gallery-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgb(125 214 228 / 0.5);
  background: rgb(11 37 59 / 0.82);
  color: #e9f8ff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
  inset-inline-start: 12px;
  z-index: 2205;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
}
.gallery-close:hover {
  background: rgb(0 163 184 / 0.35);
}
.gallery-nav {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgb(125 214 228 / 0.52);
  background: rgb(10 45 72 / 0.76);
  color: #d9f1ff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gallery-nav:hover {
  background: rgb(18 169 200 / 0.45);
  border-color: rgb(132 223 241 / 0.75);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.5);
}
.gallery-nav:active {
  transform: translateY(0);
}
.gallery-stage {
  align-items: center;
  gap: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
}
.gallery-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgb(130 220 233 / 0.22);
  background:
    radial-gradient(circle at 50% 18%, rgb(99 228 255 / 0.1), transparent 32%),
    linear-gradient(180deg, rgb(12 32 51 / 0.96), rgb(7 20 34 / 0.96));
  min-height: 300px;
  height: min(82vh, 760px);
  display: grid;
  place-items: center;
  padding: 18px;
}
.gallery-image-wrap img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}
.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e3edf7;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: -70px;
  left: -55px;
  background: radial-gradient(circle, rgb(0 163 184 / 0.2), transparent 70%);
}
.service-card:hover {
  box-shadow: var(--card-glow);
  border-color: #6bc9d8;
  transform: translateY(-8px) scale(1.01);
}
.service-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #0a1929, #1a3a4f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #00a3b8;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: #00a3b8;
  color: #fff;
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f2a40;
}
.service-card p {
  color: #5d7084;
  font-size: 0.95rem;
  line-height: 1.8;
}
.digital-platforms {
  --dxio-ink: #f3faff;
  --dxio-muted: #a8bfd5;
  --dxio-edge: rgba(132, 223, 241, 0.32);
  --dxio-glow: rgba(18, 169, 200, 0.3);
  position: relative;
  background:
    radial-gradient(circle at 88% 15%, rgb(18 169 200 / 0.24), transparent 34%),
    radial-gradient(circle at 18% 80%, rgb(3 65 116 / 0.3), transparent 46%),
    linear-gradient(130deg, #05253f 0%, #034174 42%, #06273f 100%);
  border-top: 1px solid rgb(132 223 241 / 0.24);
  border-bottom: 1px solid rgb(132 223 241 / 0.24);
  overflow: hidden;
  isolation: isolate;
}
.digital-platforms:before,
.digital-platforms:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.digital-platforms:before {
  inset: 0;
  background-image:
    linear-gradient(rgb(132 223 241 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(132 223 241 / 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 95%);
  opacity: 0.42;
}
.digital-platforms:after {
  width: 360px;
  height: 360px;
  top: -180px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(18 169 200 / 0.4), transparent 74%);
  filter: blur(6px);
  opacity: 0.8;
}
.digital-platforms .container {
  position: relative;
  z-index: 1;
}
.dxio-floating-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.dxio-float-item {
  position: absolute;
  width: min(24vw, 220px);
  height: auto;
  opacity: 0.16;
  filter: drop-shadow(0 18px 28px rgb(5 20 34 / 0.35));
  animation: dxioFloatWide 16s ease-in-out infinite;
}
.dxio-float-item.is-small {
  width: min(14vw, 130px);
  opacity: 0.22;
  animation-duration: 13s;
}
.dxio-float-item.i1 {
  top: 10%;
  left: -3%;
}
.dxio-float-item.i2 {
  top: 18%;
  right: 4%;
  animation-delay: 2.4s;
}
.dxio-float-item.i3 {
  top: 44%;
  left: 36%;
  animation-delay: 1.4s;
}
.dxio-float-item.i4 {
  bottom: 14%;
  right: -2%;
  animation-delay: 3.1s;
}
.dxio-float-item.i5 {
  bottom: 9%;
  left: 8%;
  animation-delay: 2s;
}
.dxio-float-item.i6 {
  top: 58%;
  right: 33%;
  animation-delay: 4s;
}
.digital-platforms .section-title {
  background: linear-gradient(120deg, #9de5f4, #4fc6df 50%, #12a9c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.digital-platforms .section-subtitle {
  color: #d1e2f3;
  max-width: 760px;
}
.dxio-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(130deg, rgb(6 49 84 / 0.94), rgb(4 31 56 / 0.92));
  border: 1px solid var(--dxio-edge);
  border-radius: 30px;
  padding: 24px;
  box-shadow:
    0 24px 50px rgb(4 17 30 / 0.45),
    inset 0 0 0 1px rgb(255 255 255 / 0.03);
  margin-bottom: 24px;
  overflow: hidden;
}
.dxio-overview:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  left: -120px;
  top: -90px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.36), transparent 70%);
  pointer-events: none;
}
.dxio-brand-chip {
  width: min(100%, 190px);
  min-height: 180px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgb(5 57 95 / 0.95), rgb(4 35 60 / 0.95));
  border: 1px solid rgb(132 223 241 / 0.42);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.07),
    0 18px 26px rgb(5 22 36 / 0.45);
  overflow: visible;
  position: relative;
  justify-self: center;
}
.dxio-brand-chip:before,
.dxio-brand-chip:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dxio-brand-chip:before {
  width: 150px;
  height: 150px;
  bottom: 10px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.3), transparent 72%);
  filter: blur(5px);
}
.dxio-brand-chip:after {
  inset: 18px;
  border: 1px solid rgb(132 223 241 / 0.22);
  opacity: 0.8;
}
.dxio-brand-chip img {
  width: min(100%, 138px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgb(18 169 200 / 0.32));
  animation: dxioBob 5.8s ease-in-out infinite;
}
.dxio-overview-copy {
  display: grid;
  gap: 10px;
}
.dxio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #c4eff8;
  background: rgb(18 169 200 / 0.16);
  border: 1px solid rgb(132 223 241 / 0.42);
  letter-spacing: 0.2px;
}
.dxio-overview h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--dxio-ink);
  line-height: 1.45;
}
.dxio-overview p {
  color: #cfe0f1;
  line-height: 1.9;
  font-size: 1rem;
  max-width: 840px;
}
.dxio-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
  perspective: 1300px;
}
.dxio-stage {
  position: relative;
  background: linear-gradient(150deg, rgb(5 44 75 / 0.96), rgb(4 30 52 / 0.96));
  border: 1px solid var(--dxio-edge);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 28px 52px rgb(5 16 27 / 0.5);
  overflow: hidden;
  transform-style: preserve-3d;
}
.dxio-stage:before,
.dxio-stage:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.dxio-stage:before {
  inset: 0;
  background: linear-gradient(
    120deg,
    rgb(18 169 200 / 0.14),
    transparent 30%,
    transparent 68%,
    rgb(18 169 200 / 0.14)
  );
  opacity: 0.55;
}
.dxio-stage:after {
  width: 200px;
  height: 200px;
  top: -90px;
  right: -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(18 169 200 / 0.45), transparent 70%);
  filter: blur(5px);
}
.dxio-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.dxio-stage-tag {
  color: #b9d9f3;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
}
.dxio-stage-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dxio-stat {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgb(132 223 241 / 0.12);
  border: 1px solid rgb(132 223 241 / 0.28);
  color: #d6f1fb;
  font-size: 0.78rem;
  font-weight: 700;
}
.dxio-preview {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgb(132 223 241 / 0.38);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.07),
    0 24px 36px rgb(4 14 24 / 0.52);
  transform-style: preserve-3d;
  transition: transform 0.22s ease;
  cursor: zoom-in;
}
.dxio-preview-image {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: contain;
  object-position: center;
  padding: 24px 20px 18px;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.dxio-preview:hover .dxio-preview-image {
  transform: scale(1.03);
}
.dxio-preview-caption {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: min(280px, calc(100% - 28px));
  border-radius: 18px;
  padding: 12px 14px;
  background: rgb(5 21 35 / 0.74);
  backdrop-filter: blur(14px);
  border: 1px solid rgb(132 223 241 / 0.26);
  box-shadow: 0 14px 24px rgb(2 10 17 / 0.34);
}
.dxio-preview-caption strong {
  display: block;
  color: #eaf8ff;
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.dxio-preview-caption span {
  display: block;
  color: #cadcef;
  font-size: 0.82rem;
  line-height: 1.6;
}
.dxio-preview-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.2px);
  animation: dxioOrb 7.2s ease-in-out infinite;
}
.dxio-preview-orb.a {
  width: 26px;
  height: 26px;
  background: radial-gradient(
    circle,
    rgb(18 169 200 / 0.82),
    rgb(18 169 200 / 0.12)
  );
  top: 62px;
  right: 18px;
}
.dxio-preview-orb.b {
  width: 16px;
  height: 16px;
  background: radial-gradient(
    circle,
    rgb(11 119 172 / 0.82),
    rgb(11 119 172 / 0.12)
  );
  top: 112px;
  left: 24px;
  animation-delay: 1.1s;
}
.dxio-preview-orb.c {
  width: 12px;
  height: 12px;
  background: radial-gradient(
    circle,
    rgb(132 223 241 / 0.85),
    rgb(132 223 241 / 0.08)
  );
  bottom: 86px;
  left: 18%;
  animation-delay: 2.1s;
}
.dxio-cards {
  display: grid;
  gap: 12px;
  align-content: start;
}
.dxio-app-card {
  position: relative;
  border: 1px solid rgb(132 223 241 / 0.26);
  background: linear-gradient(145deg, rgb(5 45 76 / 0.92), rgb(4 30 52 / 0.93));
  font-family: inherit;
  color: #d5e6f5;
  border-radius: 18px;
  padding: 14px 14px 14px 18px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.02);
  overflow: hidden;
}
.dxio-app-card:hover {
  transform: translateY(-3px);
  border-color: rgb(132 223 241 / 0.52);
  box-shadow:
    0 16px 28px rgb(3 13 22 / 0.4),
    0 0 22px rgb(18 169 200 / 0.2);
}
.dxio-app-card.active {
  border-color: rgb(132 223 241 / 0.78);
  background: linear-gradient(
    145deg,
    rgb(8 61 100 / 0.95),
    rgb(4 34 58 / 0.96)
  );
  box-shadow:
    0 18px 32px rgb(4 16 28 / 0.48),
    0 0 0 1px rgb(132 223 241 / 0.45),
    0 0 25px rgb(18 169 200 / 0.28);
}
.dxio-app-card:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -74px;
  left: -66px;
  background: radial-gradient(circle, rgb(132 223 241 / 0.24), transparent 70%);
  pointer-events: none;
}
.dxio-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.dxio-app-name {
  font-size: 1rem;
  font-weight: 800;
  color: #f0f8ff;
  line-height: 1.5;
}
.dxio-app-index {
  flex-shrink: 0;
  min-width: 42px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c3eff8;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(18 169 200 / 0.16);
}
.dxio-app-goal {
  font-size: 0.9rem;
  color: #c2d7ea;
  line-height: 1.75;
}
.dxio-mosaic {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.dxio-mosaic-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(132 223 241 / 0.28);
  min-height: 120px;
  max-height: 120px;
  box-shadow: 0 14px 24px rgb(3 12 20 / 0.35);
  transform-style: preserve-3d;
  cursor: zoom-in;
}
.dxio-mosaic-card:nth-child(1) {
  grid-column: span 2;
  min-height: 148px;
  max-height: 148px;
}
.dxio-mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.35s ease;
}
.dxio-mosaic-card:hover img {
  transform: scale(1.04);
}
.dxio-mosaic-card span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 9px;
  padding: 6px 8px;
  font-size: 0.77rem;
  font-weight: 700;
  color: #ecf9ff;
  background: linear-gradient(180deg, rgb(4 19 31 / 0.16), rgb(4 19 31 / 0.72));
  border: 1px solid rgb(132 223 241 / 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes dxioBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}
@keyframes dxioOrb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes dxioFloatWide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, -26px, 0) rotate(3deg) scale(1.04);
  }
}
.ipo-service {
  background:
    radial-gradient(circle at 88% 8%, rgb(18 169 200 / 0.12), transparent 42%),
    radial-gradient(circle at 12% 92%, rgb(3 65 116 / 0.1), transparent 45%),
    linear-gradient(180deg, #f5faff 0%, #eaf2fb 100%);
  border-top: 1px solid #d2e3f1;
}
.ipo-intro {
  background: linear-gradient(150deg, #07355f, #034174);
  color: #e8f2ff;
  border: 1px solid rgb(106 201 222 / 0.38);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 22px 52px rgb(4 33 63 / 0.34);
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}
.ipo-intro::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -150px;
  left: -110px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.24), transparent 70%);
  pointer-events: none;
}
.ipo-intro-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ipo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgb(18 169 200 / 0.16);
  border: 1px solid rgb(132 223 241 / 0.44);
  color: #b8eef7;
  letter-spacing: 0.3px;
}
.ipo-markets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ipo-market-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  background: rgb(255 255 255 / 0.09);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #c0d8f0;
}
.ipo-market-alt {
  background: rgb(18 169 200 / 0.18);
  border-color: rgb(132 223 241 / 0.42);
  color: #bfeffa;
}
.ipo-intro p {
  color: #cfe2f4;
  line-height: 2;
  font-size: 1.02rem;
}
.ipo-roadmap {
  margin-bottom: 42px;
}
.ipo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #bfdded;
  background: linear-gradient(155deg, #f8fcff 0%, #eef6fd 100%);
  box-shadow: 0 28px 56px rgb(7 44 78 / 0.16);
}
.ipo-roadmap-visual {
  margin: 0;
  position: relative;
  min-height: 100%;
  border-inline-end: 1px solid rgb(112 181 214 / 0.35);
  background:
    radial-gradient(circle at 18% 20%, rgb(18 169 200 / 0.18), transparent 46%),
    radial-gradient(circle at 80% 84%, rgb(6 86 144 / 0.2), transparent 50%),
    linear-gradient(145deg, #08243e, #0a3c63 56%, #055a8f);
}
.ipo-roadmap-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgb(124 235 255 / 0.14), transparent 52%);
}
.ipo-roadmap-visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.ipo-roadmap-panel {
  padding: 34px 30px;
}
.ipo-roadmap-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #0e4d77;
  margin-bottom: 22px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #e8f6fe, #dff1fb);
  border: 1px solid #acd5e9;
  border-radius: 999px;
}
.ipo-phases {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ipo-phase {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
}
.ipo-phase-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ipo-phase-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #18c0dc, #128bbf 58%, #0d547f);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgb(6 89 136 / 0.3);
  flex-shrink: 0;
}
.ipo-phase-connector {
  flex: 1;
  width: 3px;
  min-height: 18px;
  background: linear-gradient(
    to bottom,
    rgb(18 169 200 / 0.62),
    rgb(18 169 200 / 0.04)
  );
  margin-top: 8px;
  border-radius: 99px;
}
.ipo-phase:last-child .ipo-phase-connector {
  display: none;
}
.ipo-phase-card {
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(244 251 255 / 0.9));
  border: 1px solid #d6e8f4;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgb(9 34 60 / 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ipo-phase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgb(18 169 200 / 0.11), transparent 58%);
  pointer-events: none;
}
.ipo-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgb(8 30 55 / 0.14);
  border-color: #6ec5e0;
}
.ipo-phase-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #e6f5fc, #f6fbff);
  border: 1px solid #a6d4e8;
  color: #0a6f9f;
  font-size: 1rem;
  margin-bottom: 11px;
}
.ipo-phase-card h4 {
  color: #0b2f4e;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.ipo-phase-card p {
  color: #486783;
  font-size: 0.9rem;
  line-height: 1.82;
}
html[dir="rtl"] .ipo-roadmap-panel {
  order: 1;
}
html[dir="rtl"] .ipo-roadmap-visual {
  order: 2;
  border-inline-end: 0;
  border-inline-start: 1px solid rgb(112 181 214 / 0.35);
}
html[dir="rtl"] .ipo-phase {
  /* grid-template-columns: 1fr 48px; */
}
html[dir="rtl"] .ipo-phase-timeline {
  /* order: 2; */
}
html[dir="rtl"] .ipo-phase-card {
  /* order: 1; */
  text-align: right;
}
.ipo-outcomes {
  background: linear-gradient(150deg, #07355f, #034174);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgb(106 201 222 / 0.3);
  box-shadow: 0 24px 54px rgb(4 28 54 / 0.34);
}
.ipo-outcomes-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ipo-outcomes-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #b8eef7;
  white-space: nowrap;
}
.ipo-outcomes-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, rgb(132 223 241 / 0.45), transparent);
}
.ipo-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ipo-outcome-card {
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(132 223 241 / 0.24);
  border-radius: 18px;
  padding: 22px 18px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.ipo-outcome-card:hover {
  background: rgb(18 169 200 / 0.14);
  border-color: rgb(132 223 241 / 0.46);
  transform: translateY(-5px);
}
.ipo-outcome-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgb(18 169 200 / 0.2);
  border: 1px solid rgb(132 223 241 / 0.42);
  color: #b8eef7;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.ipo-outcome-card h4 {
  color: #dff4ff;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.ipo-outcome-card p {
  color: #b4d3e8;
  font-size: 0.87rem;
  line-height: 1.75;
}
.innovation-service {
  background:
    radial-gradient(circle at 84% 10%, rgb(18 169 200 / 0.1), transparent 40%),
    radial-gradient(circle at 18% 90%, rgb(3 65 116 / 0.09), transparent 43%),
    linear-gradient(180deg, #f5faff 0%, #e9f2fb 100%);
  border-top: 1px solid #d2e3f1;
  border-bottom: 1px solid #d2e3f1;
}
.innovation-hero {
  background: linear-gradient(150deg, #07355f, #034174);
  color: #e8f7ff;
  border: 1px solid rgb(106 201 222 / 0.36);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 24px 52px rgb(4 35 65 / 0.32);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.innovation-hero:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.28), transparent 72%);
  pointer-events: none;
}
.innovation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #c1eff8;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(18 169 200 / 0.16);
}
.innovation-hero h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #f0f9ff;
}
.innovation-hero p {
  color: #d2e6f6;
  line-height: 1.95;
  font-size: 1.02rem;
}
.innovation-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.innovation-kpi {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(132 223 241 / 0.36);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.innovation-kpi strong {
  display: block;
  color: #b8eef7;
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.innovation-kpi span {
  color: #d6e8f6;
  font-size: 0.88rem;
  line-height: 1.6;
}
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.innovation-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #bfd9ea;
  background: linear-gradient(155deg, #f8fcff 0%, #edf6fd 100%);
  box-shadow: 0 26px 56px rgb(7 44 78 / 0.14);
  margin-bottom: 20px;
}
.innovation-grid-visual {
  margin: 0;
  min-height: 100%;
  position: relative;
  border-inline-end: 1px solid rgb(112 181 214 / 0.32);
  background:
    radial-gradient(circle at 18% 18%, rgb(18 169 200 / 0.18), transparent 44%),
    radial-gradient(circle at 84% 78%, rgb(6 86 144 / 0.2), transparent 50%),
    linear-gradient(145deg, #08243e, #0a3c63 56%, #055a8f);
}
.innovation-grid-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgb(124 235 255 / 0.14), transparent 54%);
}
.innovation-grid-visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.innovation-grid-panel {
  padding: 30px;
}
html[dir="rtl"] .innovation-grid-panel {
  order: 1;
}
html[dir="rtl"] .innovation-grid-visual {
  order: 2;
  border-inline-end: 0;
  border-inline-start: 1px solid rgb(112 181 214 / 0.32);
}
.innovation-card {
  background: #fff;
  border: 1px solid #d8e6f2;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 24px rgb(11 44 69 / 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.innovation-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(18 169 200 / 0.1), transparent 55%);
  pointer-events: none;
}
.innovation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgb(11 44 69 / 0.14);
  border-color: #79c4dc;
}
.innovation-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e8f5fb, #f2fafe);
  border: 1px solid #b2d8ea;
  color: #0b77ac;
  font-size: 1.1rem;
}
.innovation-card h4 {
  color: #0b5f92;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.innovation-card p {
  color: #54708a;
  font-size: 0.92rem;
  line-height: 1.82;
}
.innovation-promise {
  background: linear-gradient(145deg, #ffffff, #f1f8fd);
  border: 1px solid #d0e2f1;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgb(11 44 69 / 0.07);
}
.innovation-promise h4 {
  color: #0b5f92;
  margin-bottom: 10px;
  font-size: 1.06rem;
}
.innovation-promise p {
  color: #57728b;
  line-height: 1.95;
  font-size: 0.94rem;
}
.siri-service {
  background:
    radial-gradient(circle at 82% 8%, rgb(18 169 200 / 0.11), transparent 42%),
    radial-gradient(circle at 16% 92%, rgb(3 65 116 / 0.09), transparent 45%),
    linear-gradient(180deg, #f4f9fd 0%, #e8f1fa 100%);
  border-top: 1px solid #d2e2f0;
  border-bottom: 1px solid #d2e2f0;
}
.siri-hero {
  background: linear-gradient(145deg, #07355f, #034174);
  border: 1px solid rgb(106 201 222 / 0.38);
  border-radius: 28px;
  padding: 30px;
  color: #e8f1ff;
  box-shadow: 0 22px 48px rgb(4 29 54 / 0.34);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.siri-hero:before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  left: -110px;
  top: -130px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.24), transparent 72%);
  pointer-events: none;
}
.siri-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #c1eff8;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: rgb(18 169 200 / 0.15);
}
.siri-hero h3 {
  color: #f6f9ff;
  margin-bottom: 10px;
  font-size: 1.72rem;
}
.siri-hero p {
  color: #d3e2f3;
  line-height: 1.95;
  font-size: 1rem;
}
.siri-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #bfd9ea;
  background: linear-gradient(155deg, #f8fcff 0%, #edf6fd 100%);
  box-shadow: 0 26px 56px rgb(7 44 78 / 0.14);
  margin-bottom: 20px;
}
.siri-grid-visual {
  margin: 0;
  min-height: 100%;
  position: relative;
  border-inline-end: 1px solid rgb(112 181 214 / 0.32);
  background:
    radial-gradient(circle at 18% 18%, rgb(18 169 200 / 0.18), transparent 44%),
    radial-gradient(circle at 84% 78%, rgb(6 86 144 / 0.2), transparent 50%),
    linear-gradient(145deg, #08243e, #0a3c63 56%, #055a8f);
}
.siri-grid-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgb(124 235 255 / 0.14), transparent 54%);
}
.siri-grid-visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.siri-grid-panel {
  padding: 30px;
}
html[dir="rtl"] .siri-grid-panel {
  order: 1;
}
html[dir="rtl"] .siri-grid-visual {
  order: 2;
  border-inline-end: 0;
  border-inline-start: 1px solid rgb(112 181 214 / 0.32);
}
.siri-model-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.siri-metric {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(132 223 241 / 0.34);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.siri-metric strong {
  display: block;
  color: #b8eef7;
  font-size: 1.4rem;
  margin-bottom: 4px;
  font-weight: 900;
}
.siri-metric span {
  color: #dae5f3;
  font-size: 0.88rem;
  line-height: 1.55;
}
.siri-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-bottom: 18px;
  align-items: stretch;
}
.siri-panel {
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 24px rgb(15 31 54 / 0.08);
}
.siri-panel h4 {
  color: #243b56;
  font-size: 1.06rem;
  margin-bottom: 12px;
}
.siri-points {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.siri-points li {
  background: linear-gradient(180deg, #f8fbff, #f2f7fe);
  border: 1px solid #e0e9f5;
  border-radius: 12px;
  padding: 10px 12px;
  color: #4f6781;
  font-size: 0.92rem;
  line-height: 1.8;
}
.siri-points li strong {
  color: #0b77ac;
  font-weight: 800;
}
.siri-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.siri-pillar {
  border-radius: 14px;
  border: 1px solid #c2ddec;
  background: linear-gradient(145deg, #edf7fd, #e4f1fa);
  padding: 14px 10px;
  text-align: center;
  color: #0b5f92;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
}
.siri-dimensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.siri-dimension-card {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid #dce6f2;
  border-radius: 16px;
  padding: 14px 12px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.siri-dimension-card:hover {
  transform: translateY(-5px);
  border-color: #78c5dd;
  box-shadow: 0 10px 22px rgb(19 38 63 / 0.12);
}
.ipo-service .section-title,
.innovation-service .section-title,
.siri-service .section-title {
  background: linear-gradient(120deg, #12a9c8, #0b77ac 60%, #034174);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.siri-dimension-card h5 {
  color: #2d4261;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.siri-dimension-card p {
  color: #58708a;
  font-size: 0.86rem;
  line-height: 1.7;
}
.partners {
  background:
    radial-gradient(circle at 82% 20%, rgb(0 163 184 / 0.12), transparent 38%),
    radial-gradient(circle at 15% 85%, rgb(10 25 41 / 0.1), transparent 42%),
    linear-gradient(180deg, #f6fbff 0%, #edf5fc 100%);
  border-top: 1px solid #d9e7f5;
  border-bottom: 1px solid #d9e7f5;
}
.partners-marquee {
  position: relative;
  overflow: hidden;
  direction: ltr;
  border-radius: 24px;
  border: 1px solid #d5e6f6;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.84),
    rgb(241 249 255 / 0.76)
  );
  box-shadow: 0 18px 38px rgb(7 36 65 / 0.09);
  padding: 18px 0;
}
.partners-marquee:before,
.partners-marquee:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8vw, 92px);
  z-index: 2;
  pointer-events: none;
}
.partners-marquee:before {
  right: 0;
  background: linear-gradient(270deg, #eff6fd, #fff0);
}
.partners-marquee:after {
  left: 0;
  background: linear-gradient(90deg, #eff6fd, #fff0);
}
.logo-cloud {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 6px 0;
  animation: partnersMarquee 44s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .logo-cloud {
  animation-play-state: paused;
}
.partner-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(220px, 24vw, 290px);
  margin-inline-end: 18px;
  border-radius: 20px;
  border: 1px solid #d7e6f4;
  background: linear-gradient(165deg, #ffffff, #f6fbff);
  padding: 16px 14px 14px;
  min-height: 216px;
  box-shadow: 0 14px 24px rgb(12 40 65 / 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.partner-card:before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -68px;
  left: -56px;
  background: radial-gradient(circle, rgb(0 163 184 / 0.2), transparent 68%);
  pointer-events: none;
}
.partner-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #82d0de;
  box-shadow: 0 22px 34px rgb(8 39 66 / 0.17);
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid #bdd9ef;
  background: linear-gradient(140deg, #0b789e, #0ea5b8);
  color: #fff;
  font-size: 0.79rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgb(11 121 158 / 0.25);
}
.partner-logo-wrap {
  height: 124px;
  border-radius: 14px;
  border: 1px solid #d9e8f5;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 12px;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 94px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-name {
  color: #0f2f4b;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 800;
  text-align: center;
  direction: rtl;
}
@keyframes partnersMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-cloud {
    animation: none;
  }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.team-member-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #d2e5f8;
  background:
    radial-gradient(circle at 86% 10%, rgb(0 173 212 / 0.2), transparent 42%),
    linear-gradient(165deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: 0 14px 28px rgb(9 37 66 / 0.1);
  padding: 16px;
  animation: teamCardFloat 8s ease-in-out infinite;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.team-member-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #fff0 28%,
    rgb(255 255 255 / 0.55) 50%,
    #fff0 74%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.team-member-card:nth-child(2) {
  animation-delay: 0.65s;
}
.team-member-card:nth-child(3) {
  animation-delay: 1.2s;
}
.team-member-card:nth-child(4) {
  animation-delay: 1.7s;
}
.team-member-card:hover {
  transform: translateY(-10px);
  border-color: #8accea;
  box-shadow: 0 24px 34px rgb(9 37 66 / 0.18);
}
.team-member-card:hover:before {
  transform: translateX(120%);
}
.team-member-index {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 0.8);
  background: linear-gradient(145deg, #0a83b0, #00a3b8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgb(5 102 146 / 0.34);
}
.team-photo-wrap {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cfe4f7;
  background: linear-gradient(180deg, #fafdff, #eef6ff);
  aspect-ratio: 3 / 3.7;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}
.team-member-card:hover .team-photo {
  transform: scale(1.07);
  filter: saturate(1.07) contrast(1.04);
}
.team-member-meta {
  padding: 14px 6px 6px;
  text-align: center;
}
.team-member-name {
  color: #0a3255;
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 800;
}
.team-member-role {
  margin: 0;
  color: #006f8f;
  font-size: 0.93rem;
  font-weight: 700;
}
@keyframes teamCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-member-card {
    animation: none;
  }
  .team-member-card:hover {
    transform: none;
  }
  .team-member-card:hover:before {
    transform: translateX(-120%);
  }
}
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 14%, rgb(18 169 200 / 0.28), transparent 36%),
    radial-gradient(circle at 10% 84%, rgb(3 65 116 / 0.42), transparent 42%),
    linear-gradient(145deg, #05233d 0%, #034174 52%, #06263f 100%);
  color: #e7f2fc;
  padding: 64px 0 26px;
}
.footer:before,
.footer:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.26;
}
.footer:before {
  top: -130px;
  left: -70px;
  background: radial-gradient(circle, rgb(18 169 200 / 0.75), transparent 68%);
  animation: footerFloat 11s ease-in-out infinite;
}
.footer:after {
  bottom: -150px;
  right: -90px;
  background: radial-gradient(circle, rgb(11 119 172 / 0.58), transparent 70%);
  animation: footerFloat 13s ease-in-out infinite reverse;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.footer-col {
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.05),
    rgb(255 255 255 / 0.015)
  );
  border: 1px solid rgb(132 223 241 / 0.24);
  border-radius: 20px;
  padding: 22px 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 14px 30px rgb(2 10 18 / 0.25);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.footer-col:hover {
  transform: translateY(-6px);
  border-color: rgb(132 223 241 / 0.5);
  box-shadow: 0 22px 34px rgb(2 10 18 / 0.35);
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 7px 16px rgb(0 0 0 / 0.35));
}
.footer-lead {
  line-height: 1.9;
  color: #d2e4f4;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #f3fbff;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e5f8ff;
  border: 1px solid rgb(132 223 241 / 0.42);
  background: linear-gradient(
    145deg,
    rgb(6 77 121 / 0.58),
    rgb(18 169 200 / 0.34)
  );
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.social-link:hover,
.social-link:focus {
  transform: translateY(-4px) scale(1.04);
  border-color: rgb(132 223 241 / 0.82);
  box-shadow: 0 14px 24px rgb(6 108 152 / 0.36);
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #d8e8f5;
  width: fit-content;
  position: relative;
  padding-bottom: 2px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-links a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #84dff1, #12a9c8);
  transition: width 0.3s ease;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  transform: translateX(-3px);
}
.footer-links a:hover:before,
.footer-links a:focus:before {
  width: 100%;
}
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-decoration: none;
  color: #d4e6f5;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-contact-item i {
  color: #84dff1;
  width: 16px;
  text-align: center;
}
.footer-contact-item:hover,
.footer-contact-item:focus {
  color: #fff;
  transform: translateX(-3px);
}
.footer-contact-item.location {
  cursor: default;
}
.office-locations {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(132 223 241 / 0.26);
  border-radius: 22px;
  margin-bottom: 28px;
  padding: 18px;
  background:
    linear-gradient(150deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.015)),
    radial-gradient(circle at 90% 10%, rgb(18 169 200 / 0.16), transparent 42%);
  box-shadow: inset 0 0 0 1px rgb(132 223 241 / 0.1);
}
.office-locations-head {
  margin-bottom: 14px;
}
.office-locations-head h4 {
  margin: 0 0 6px;
  font-size: 1.06rem;
  color: #eef9ff;
}
.office-locations-head p {
  margin: 0;
  color: #cbdded;
  font-size: 0.9rem;
}
.office-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.office-track-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgb(132 223 241 / 0.3);
  background: linear-gradient(
    140deg,
    rgb(5 56 89 / 0.56),
    rgb(6 80 118 / 0.34)
  );
}
.office-track {
  display: flex;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  direction: ltr;
}
.office-card {
  min-width: 100%;
  padding: 18px;
  direction: rtl;
  opacity: 0.6;
  transform: scale(0.99);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.office-card.active {
  opacity: 1;
  transform: scale(1);
}
.office-city {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d2f3fa;
  border: 1px solid rgb(132 223 241 / 0.4);
  background: rgb(18 169 200 / 0.24);
  margin-bottom: 10px;
}
.office-card h5 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #f5fcff;
}
.office-card p {
  margin: 0 0 14px;
  color: #d9e8f5;
  line-height: 1.85;
}
.office-map-link {
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgb(132 223 241 / 0.56);
  color: #e9faff;
  background: linear-gradient(
    145deg,
    rgb(11 119 172 / 0.74),
    rgb(18 169 200 / 0.56)
  );
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.office-map-link:hover,
.office-map-link:focus {
  transform: translateY(-2px);
  border-color: rgb(132 223 241 / 0.9);
  box-shadow: 0 10px 22px rgb(7 110 155 / 0.38);
}
.office-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgb(132 223 241 / 0.5);
  color: #ddf5ff;
  background: linear-gradient(
    145deg,
    rgb(6 78 121 / 0.72),
    rgb(4 55 88 / 0.62)
  );
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.office-nav:hover,
.office-nav:focus {
  transform: translateY(-2px);
  border-color: rgb(132 223 241 / 0.88);
  box-shadow: 0 8px 18px rgb(7 104 146 / 0.42);
}
.office-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.office-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgb(176 216 236 / 0.42);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}
.office-dot.active {
  width: 24px;
  background: linear-gradient(90deg, #84dff1, #12a9c8);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgb(132 198 226 / 0.3);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer-bottom p {
  margin: 0;
  color: #cbdded;
  font-size: 0.92rem;
}
.footer-top-link {
  text-decoration: none;
  color: #d9f3fb;
  font-size: 0.9rem;
  border: 1px solid rgb(132 223 241 / 0.46);
  background: rgb(6 72 112 / 0.62);
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.footer-top-link:hover,
.footer-top-link:focus {
  transform: translateY(-3px);
  border-color: rgb(132 223 241 / 0.82);
  box-shadow: 0 12px 24px rgb(7 104 146 / 0.34);
}
@keyframes footerFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.03);
  }
}
.story-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0d263e, #144b70);
  padding: 42px;
  border-radius: 34px;
  border: 1px solid rgb(129 224 239 / 0.33);
  box-shadow: 0 24px 48px rgb(6 30 50 / 0.24);
  color: #e9f5ff;
}
.story-panel:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, rgb(56 235 255 / 0.32), transparent 72%);
  pointer-events: none;
}
.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.story-main {
  display: grid;
  align-content: start;
  gap: 14px;
}
.story-visual {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgb(143 224 239 / 0.38);
  box-shadow: 0 18px 34px rgb(4 22 38 / 0.34);
  min-height: 100%;
}
.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.story-badge {
  display: none;
}
.story-headline {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.75;
  margin: 0;
  color: #f1f8ff;
}
.story-lead {
  font-size: 1.03rem;
  margin: 0;
  line-height: 1.95;
  color: #d4e6f5;
}
.story-pillars {
  list-style: disc;
  list-style-position: outside;
  margin: 20px 0 0;
  padding: 20px 42px 20px 20px;
  display: block;
  gap: 0;
  background: linear-gradient(
    135deg,
    rgb(0 163 184 / 0.18),
    rgb(10 25 41 / 0.12)
  );
  border: 1.5px solid rgb(0 163 184 / 0.45);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.story-pillars li {
  background: none;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  color: #e8f4fa;
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.story-pillars li:last-child {
  margin-bottom: 0;
}
.story-pillars li::marker {
  color: #00d4e8;
  font-size: 1.05rem;
}
.story-pillars strong {
  color: #7ff8ff;
  font-weight: 600;
}
.story-grid {
  display: grid;
  gap: 12px;
  align-content: start;
}
.story-card {
  background: linear-gradient(
    170deg,
    rgb(255 255 255 / 0.97),
    rgb(240 248 255 / 0.93)
  );
  border: 1.5px solid #b5d9e8;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgb(7 39 62 / 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.story-card:hover {
  transform: translateY(-5px);
  border-color: #83d0de;
  box-shadow: 0 16px 28px rgb(7 39 62 / 0.18);
}
.story-card h3 {
  color: #0e3a58;
  font-size: 1.02rem;
  margin-bottom: 6px;
  line-height: 1.55;
}
.story-card p {
  color: #4f6781;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}
.story-metrics {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.story-metric {
  background: linear-gradient(
    135deg,
    rgb(0 163 184 / 0.2),
    rgb(0 163 184 / 0.12)
  );
  border: 1.5px solid rgb(0 163 184 / 0.5);
  border-radius: 12px;
  padding: 14px 9px 10px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.story-metric i {
  font-size: 1.8rem;
  color: #00d4e8;
}
.story-metric strong {
  display: block;
  color: #7ff8ff;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-weight: 600;
}
.story-metric span {
  color: #d8ebf8;
  font-size: 0.81rem;
  line-height: 1.65;
}
.reveal {
  opacity: 0;
  transition:
    opacity var(--reveal-opacity-duration, 0.75s) ease,
    transform var(--reveal-transform-duration, 0.82s)
      cubic-bezier(0.2, 0.7, 0.1, 1),
    filter var(--reveal-filter-duration, 0.72s) ease;
  transition-delay: var(--stagger, 0ms);
  will-change: transform, opacity;
}
.reveal:not(.is-visible) {
  transform: translate3d(0, var(--reveal-distance-y, 30px), 0)
    scale(var(--reveal-scale-hidden, 0.985));
}
.reveal.reveal-right:not(.is-visible) {
  transform: translate3d(var(--reveal-distance-x, 36px), 0, 0)
    scale(var(--reveal-scale-hidden, 0.985));
}
.reveal.reveal-left:not(.is-visible) {
  transform: translate3d(calc(-1 * var(--reveal-distance-x, 36px)), 0, 0)
    scale(var(--reveal-scale-hidden, 0.985));
}
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}
@media (max-width: 992px) {
  html,
  body {
    overflow-x: clip;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  section > .container {
    padding-inline: 0;
  }
  .navbar {
    padding: 12px 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  section,
  .hero,
  .footer {
    width: 100%;
    max-width: 100%;
  }
  section {
    padding: 72px 0;
    width: 95%;
    max-width: 100%;
    margin: auto;
  }
  .navbar .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 8px;
  }
  .logo {
    grid-column: 1;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .lang-toggle {
    grid-column: 4;
    width: 98px;
    height: 44px;
    margin-inline-start: 0;
    border: 1px solid rgb(151 236 249 / 0.5);
    background:
      linear-gradient(145deg, rgb(255 255 255 / 0.2), rgb(255 255 255 / 0.06)),
      radial-gradient(
        circle at 88% 16%,
        rgb(157 239 255 / 0.3),
        transparent 42%
      );
    box-shadow:
      0 10px 24px rgb(3 14 24 / 0.32),
      inset 0 0 0 1px rgb(0 163 184 / 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1002;
  }
  .lang-toggle-option {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  .lang-toggle-thumb {
    top: 4px;
    right: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(125deg, #d7fbff, #73ddec 58%, #32b8cf);
    box-shadow:
      0 8px 16px rgb(33 174 201 / 0.36),
      inset 0 0 0 1px rgb(255 255 255 / 0.26);
  }
  html[dir="ltr"] .lang-toggle-thumb {
    right: auto;
    left: 4px;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(
      180deg,
      rgb(6 14 24 / 0.99),
      rgb(5 12 20 / 0.99)
    );
    border: 1px solid rgb(168 241 251 / 0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 34px rgb(4 11 18 / 0.32);
    padding: 8px 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    z-index: 1001;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
    max-width: none;
    overflow-x: visible;
  }
  .navbar.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    border-color: #fff0;
    font-size: 0.98rem;
  }
  .nav-links a:hover {
    background: rgb(0 163 184 / 0.12);
  }
  .nav-links a.active {
    color: #c9f8ff;
    border-color: rgb(157 239 255 / 0.34);
    background: rgb(0 163 184 / 0.2);
  }
  .hero .container {
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero {
    padding: 102px 0 70px;
    min-height: clamp(580px, 74vh, 760px);
  }
  body.nav-visible .hero {
    padding-top: 102px;
  }
  .section-title,
  .section-subtitle,
  .hero-content,
  .dx6-intro,
  .dxio-overview,
  .dxio-stage,
  .dxio-cards,
  .main-service-panel,
  .story-panel,
  .ipo-intro,
  .ipo-outcomes,
  .innovation-hero,
  .innovation-promise,
  .siri-hero,
  .siri-panel,
  .footer-content {
    margin-inline: 0;
    padding-inline: 16px;
  }
  .hero-content h1 {
    line-height: 1.28;
    font-size: clamp(2.1rem, 7vw, 3.1rem);
  }
  .hero-content p {
    max-width: 100%;
    font-size: 1.04rem;
    margin-bottom: 18px;
    line-height: 1.72;
  }
  .hero-content {
    padding: 20px 18px 18px;
    min-height: 340px;
    border-radius: 20px;
    border-color: rgb(155 236 250 / 0.3);
  }
  .hero-bg-slider:before {
    background-size: 32px 32px;
    opacity: 0.14;
  }
  .hero-slider-meta {
    max-width: 100%;
    gap: 10px;
  }
  .hero-eyebrow {
    font-size: 0.8rem;
    padding: 7px 12px;
    margin-bottom: 12px;
  }
  .hero-actions {
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 16px;
  }
  .phase-flow {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    position: static;
    padding: 18px 0;
    background: none;
  }
  .phase-flow::before {
    display: none;
  }
  .phase-chip {
    min-height: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(
      145deg,
      rgb(5 45 76 / 0.92),
      rgb(4 30 52 / 0.93)
    );
    border: 1px solid rgb(132 223 241 / 0.26);
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgb(3 13 22 / 0.3);
  }
  .phase-chip i {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    box-shadow:
      0 0 0 2px rgb(18 169 200 / 0.25),
      0 8px 16px rgb(18 169 200 / 0.25);
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #12a9c8, #0b77ac 60%, #034174);
    color: #fff;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    will-change: transform, box-shadow, filter;
    transform: translateZ(0);
  }
  .phase-chip::after {
    position: static;
    font-size: 0.8rem;
    top: auto;
    margin-top: 6px;
    margin-bottom: 0;
    white-space: normal;
    max-width: 100%;
    text-align: center;
    opacity: 1;
    transform: none;
    animation: none;
    letter-spacing: 0.5px;
  }
  .phase-chip:hover {
    border-color: rgb(132 223 241 / 0.52);
    box-shadow:
      0 12px 28px rgb(3 13 22 / 0.45),
      0 0 20px rgb(18 169 200 / 0.35);
    transform: translateY(-6px);
    background: linear-gradient(
      145deg,
      rgb(8 60 95 / 0.96),
      rgb(5 35 65 / 0.94)
    );
  }
  .phase-chip:hover i {
    transform: scale(1.18) translateY(-3px) translateZ(0);
    background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac);
    box-shadow:
      0 0 0 3px rgb(18 169 200 / 0.5),
      0 12px 24px rgb(18 169 200 / 0.45);
    filter: brightness(1.12);
    /* animation: phaseHoverPulse 0.52s cubic-bezier(0.34, 1.56, 0.64, 1); */
  }
  .phase-chip:nth-child(6) {
    border-color: rgb(132 223 241 / 0.45);
    background: linear-gradient(
      145deg,
      rgb(8 50 85 / 0.95),
      rgb(5 32 60 / 0.93)
    );
    box-shadow:
      0 8px 20px rgb(18 169 200 / 0.25),
      inset 0 0 12px rgb(18 169 200 / 0.1);
  }
  .phase-chip:nth-child(6) i {
    background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac);
    box-shadow:
      0 0 0 2px rgb(18 169 200 / 0.35),
      0 8px 16px rgb(18 169 200 / 0.35);
    position: relative;
    z-index: 3;
  }
  .phase-chip:nth-child(6):hover {
    border-color: rgb(132 223 241 / 0.65);
    box-shadow:
      0 14px 32px rgb(18 169 200 / 0.35),
      0 0 24px rgb(18 169 200 / 0.4),
      inset 0 0 16px rgb(18 169 200 / 0.15);
    transform: translateY(-8px);
    background: linear-gradient(
      145deg,
      rgb(12 70 110 / 0.98),
      rgb(8 40 75 / 0.96)
    );
  }
  .phase-chip:nth-child(6):hover i {
    transform: scale(1.28) translateY(1px);
    background: linear-gradient(135deg, #2dd4ff, #1bc0dc 50%, #12a9c8);
    box-shadow:
      0 0 0 3px rgb(18 169 200 / 0.8),
      0 12px 28px rgb(18 169 200 / 0.6),
      inset 0 0 16px rgb(255 255 255 / 0.15);
    filter: brightness(1.18);
    animation: phaseHoverPulse 0.6s ease-out;
  }
  .phase-chip:nth-child(6)::after {
    position: static;
  }
  .phase-arrow {
    display: none;
  }
  .hero-bg-slide {
    background-position: 56% center;
  }
  .hero-quick-cards {
    padding-bottom: 0;
  }
  .hero-stat-card {
    padding: 12px;
  }
  .hero-scene {
    min-height: 420px;
  }
  .hero-glass-panel {
    min-height: 340px;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
  }
  .chip-a,
  .chip-b {
    position: static;
    width: fit-content;
    margin-inline: auto;
  }
  .hero-floating-chip {
    animation-duration: 6.4s;
  }
  .hero-orb-a {
    top: 2%;
  }
  .hero-orb-b {
    bottom: 4%;
    left: 2%;
  }
  .dx6-utility-bar {
    top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .dx6-actions {
    justify-content: stretch;
    flex-wrap: nowrap;
  }
  .dx6-action-btn {
    flex: 1 1 0%;
    min-height: 42px;
    justify-content: center;
  }
  .dx6-intro {
    padding: 20px 16px;
  }
  .framework-carousel {
    border-radius: 20px;
  }
  .framework-card-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .framework-media {
    min-height: clamp(170px, 46vw, 230px);
  }
  .framework-media-full {
    min-height: clamp(180px, 52vw, 260px);
  }
  .framework-content {
    min-height: auto;
  }
  .framework-content .dx-cycle {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }
  .framework-content .cycle-item {
    width: 100%;
    min-height: 34px;
    padding: 6px 6px;
    border-radius: 10px;
    font-size: 0.72rem;
    line-height: 1.28;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
  .framework-content .phase-arrow {
    display: none;
  }
  .framework-head {
    padding: 20px 16px 8px;
  }
  .framework-details {
    padding: 4px 16px 16px;
  }
  .framework-card .card-number {
    left: 16px;
  }
  .dx6-mini-nav a[data-dx-index="0"] {
    display: none;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .dxio-overview {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    margin: 10px;
  }
  .dxio-brand-chip {
    margin-inline: auto;
  }
  .dxio-layout {
    grid-template-columns: 1fr;
  }
  .dxio-stage {
    padding: 16px;
  }
  .dxio-float-item {
    width: min(28vw, 180px);
    opacity: 0.14;
  }
  .dxio-stage-header {
    flex-wrap: wrap;
  }
  .dxio-stage-stats {
    justify-content: flex-start;
  }
  .dxio-preview-image {
    height: clamp(240px, 62vw, 390px);
  }
  .dxio-preview-caption {
    left: 14px;
  }
  .dxio-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dxio-mosaic-card:nth-child(1) {
    grid-column: span 2;
  }
  .main-service-panel {
    padding: 26px 20px;
  }
  .flagship-panel-image {
    border-radius: 16px;
    margin: 16px 0 18px;
  }
  .axis-grid {
    grid-template-columns: 1fr;
  }
  .axis-result {
    text-align: start;
  }
  .industrial-block {
    margin-top: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }
  .industrial-head h3 {
    font-size: 1.3rem;
  }
  .industrial-content p {
    font-size: 0.95rem;
    line-height: 1.85;
  }
  .service-media-grid {
    grid-template-columns: 1fr;
  }
  .service-cta {
    justify-content: center;
  }
  .service-request-btn {
    width: 100%;
    justify-content: center;
  }
  .logo img {
    height: 42px;
  }
  .section-title {
    display: block;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 34px;
  }
  .story-panel {
    padding: 28px 20px;
    border-radius: 28px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .story-visual {
    min-height: 320px;
  }
  .story-visual img {
    min-height: 320px;
    max-height: 400px;
  }
  .story-headline {
    font-size: 1.35rem;
  }
  .story-lead {
    font-size: 1.02rem;
    margin-bottom: 22px;
  }
  .story-metrics {
    grid-template-columns: 1fr;
  }
  .story-grid {
    gap: 14px;
  }
  .story-card {
    min-width: 100%;
    padding: 22px 18px;
  }
  .story-card h3 {
    font-size: 1.04rem;
  }
  .partners-marquee {
    border-radius: 20px;
    padding: 14px 0;
  }
  .logo-cloud {
    padding: 6px 0;
    animation-duration: 38s;
  }
  .partner-card {
    flex-basis: clamp(210px, 62vw, 260px);
    margin-inline-end: 12px;
    min-height: 190px;
    padding: 12px;
  }
  .partner-logo-wrap {
    height: 98px;
    margin-bottom: 10px;
  }
  .partner-logo-wrap img {
    max-height: 72px;
  }
  .partner-name {
    font-size: 0.86rem;
  }
  .gallery-lightbox {
    padding: 14px;
  }
  .gallery-stage {
    grid-template-columns: 42px 1fr 42px;
    gap: 7px;
    padding: 10px;
  }
  .gallery-image-wrap {
    min-height: 250px;
    height: min(56vh, 430px);
  }
  .gallery-close {
    top: max(10px, env(safe-area-inset-top));
    inset-inline-start: 10px;
    justify-content: flex-end;
    padding: 14px 14px 0;
  }
  .ipo-outcomes-header {
    flex-direction: column;
  }
  .innovation-kpis {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .innovation-kpi {
    text-align: start;
    padding: 12px;
  }
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .innovation-card {
    padding: 16px;
    border-radius: 18px;
  }
  .siri-model-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .siri-metric {
    text-align: start;
    padding: 12px;
  }
  .siri-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .siri-panel {
    padding: 16px;
    border-radius: 18px;
  }
  .ipo-intro,
  .ipo-outcomes {
    padding: 22px 18px;
  }
  .ipo-split {
    grid-template-columns: 1fr;
  }
  .ipo-roadmap-visual {
    min-height: 300px;
    border-inline-end: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.35);
  }
  .ipo-roadmap-visual img {
    min-height: 300px;
    max-height: 420px;
  }
  .ipo-roadmap-panel {
    padding: 20px 16px;
  }
  html[dir="rtl"] .ipo-roadmap-visual {
    border-inline-start: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.35);
  }
  .innovation-split {
    grid-template-columns: 1fr;
  }
  .innovation-grid-visual {
    min-height: 300px;
    border-inline-end: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.32);
  }
  .innovation-grid-visual img {
    min-height: 300px;
    max-height: 420px;
  }
  .innovation-grid-panel {
    padding: 20px 16px;
  }
  html[dir="rtl"] .innovation-grid-visual {
    border-inline-start: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.32);
  }
  .siri-split {
    grid-template-columns: 1fr;
  }
  .siri-grid-visual {
    min-height: 300px;
    border-inline-end: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.32);
  }
  .siri-grid-visual img {
    min-height: 300px;
    max-height: 420px;
  }
  .siri-grid-panel {
    padding: 20px 16px;
  }
  html[dir="rtl"] .siri-grid-visual {
    border-inline-start: 0;
    border-bottom: 1px solid rgb(112 181 214 / 0.32);
  }
  .ipo-phase {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  html[dir="rtl"] .ipo-phase {
    /* grid-template-columns: 1fr 44px; */

  }
  .siri-hero {
    border-radius: 18px;
    border: 1px solid rgb(130 220 233 / 0.22);
    background:
      radial-gradient(
        circle at 50% 18%,
        rgb(99 228 255 / 0.1),
        transparent 32%
      ),
      linear-gradient(180deg, rgb(12 32 51 / 0.96), rgb(7 20 34 / 0.96));
    min-height: 300px;
  }
  .siri-pillars,
  .siri-dimensions {
    padding: 18px;
    grid-template-columns: 1fr;
    max-width: 100%;
    max-height: 74vh;
  }
  .team-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer {
    padding: 44px 0 24px;
  }
  .office-locations {
    padding: 14px;
    border-radius: 18px;
  }
  .office-carousel {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .office-nav {
    display: none;
  }
  .office-card {
    padding: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .framework-content:after,
  .framework-carousel::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
@media (max-width: 520px) {
  .navbar .container {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
  }
  .logo {
    min-width: 0;
    overflow: hidden;
  }
  .logo span {
    font-size: 1.45rem;
  }
  .lang-toggle {
    width: 88px;
    height: 40px;
  }
  .lang-toggle-option {
    font-size: 0.72rem;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
  .container {
    max-width: 100%;
    padding: 0;
  }
  section {
    padding: 60px 0;
  }
  section > .container {
    padding-inline: 0;
  }
  .section-title,
  .section-subtitle,
  .hero-content,
  .dx6-intro,
  .dxio-overview,
  .dxio-stage,
  .dxio-cards,
  .main-service-panel,
  .story-panel,
  .ipo-intro,
  .ipo-outcomes,
  .innovation-hero,
  .innovation-promise,
  .siri-hero,
  .siri-panel,
  .footer-content {
    margin-inline: 0;
  }
  .section-title,
  .section-subtitle,
  .hero-content,
  .dx6-intro,
  .dxio-overview,
  .dxio-stage,
  .dxio-cards,
  .main-service-panel,
  .story-panel,
  .ipo-intro,
  .ipo-outcomes,
  .innovation-hero,
  .innovation-promise,
  .siri-hero,
  .siri-panel,
  .footer-content {
    padding-inline: 14px;
  }
  .hero {
    padding: 96px 0 60px;
    min-height: clamp(540px, 68vh, 720px);
  }
  body.nav-visible .hero {
    padding-top: 96px;
  }
  .hero-content h1 {
    font-size: clamp(1.95rem, 10vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-trust {
    gap: 8px;
  }
  .footer-col {
    padding: 18px 14px;
  }
  .office-locations {
    padding: 12px;
    margin-bottom: 22px;
  }
  .office-card h5 {
    font-size: 1.02rem;
  }
  .office-card p {
    font-size: 0.88rem;
  }
  .footer-social {
    gap: 8px;
  }
  .social-link {
    width: 38px;
    height: 38px;
  }
  .footer-bottom {
    align-items: stretch;
  }
  .footer-top-link {
    width: fit-content;
  }
  .hero-content p {
    margin-bottom: 16px;
    font-size: 0.96rem;
    line-height: 1.75;
  }
  .hero-content {
    border-radius: 18px;
    padding: 16px 14px 14px;
    min-height: 320px;
    box-shadow: 0 14px 24px rgb(1 10 20 / 0.3);
  }
  .hero-slide-title {
    min-height: 2.4em;
  }
  .hero-slide-subtitle {
    min-height: 4em;
  }
  .hero-bg-slide {
    background-position: 52% center;
  }
  .hero-slider-dots {
    justify-content: center;
  }
  .hero-slider-dot {
    width: 11px;
    height: 11px;
  }
  .hero-slider-dot.is-active {
    width: 28px;
  }
  .trust-chip,
  .cycle-item {
    width: 100%;
    text-align: center;
  }
  .hero-scene {
    min-height: 390px;
  }
  .story-visual img {
    min-height: 260px;
    max-height: 320px;
    object-position: center top;
  }
  .hero-glass-panel {
    border-radius: 22px;
  }
  .hero-panel-content {
    padding: 16px;
  }
  .hero-floating-chip {
    width: 100%;
    text-align: center;
  }
  .hero-data-stream {
    gap: 8px;
  }
  .phase-flow,
  .dx-cycle {
    gap: 8px;
  }
  .phase-flow {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    margin-top: 12px;
    position: relative;
    padding: 16px 0;
    background: none;
    align-items: stretch;
  }
  .phase-flow::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgb(18 169 200 / 0.4) 0%,
      rgb(18 169 200 / 0.2) 100%
    );
    z-index: 0;
  }
  .phase-chip {
    min-height: auto;
    padding: 12px 12px 12px 76px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: linear-gradient(
      145deg,
      rgb(5 40 70 / 0.88),
      rgb(4 25 48 / 0.9)
    );
    border: 1px solid rgb(132 223 241 / 0.24);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 6px 12px rgb(3 10 18 / 0.25);
    position: relative;
    margin-left: 0;
  }
  .phase-chip i {
    position: absolute;
    left: -26px;
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow:
      0 0 0 2px rgb(18 169 200 / 0.3),
      0 6px 12px rgb(18 169 200 / 0.2);
    margin: 0;
    transition:
      transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.32s ease,
      filter 0.32s ease;
    border-radius: 50%;
    background: linear-gradient(135deg, #12a9c8, #0b77ac 60%, #034174);
    color: #fff;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    will-change: transform, box-shadow, filter;
    transform: translateZ(0);
  }
  .phase-chip::after {
    position: relative;
    font-size: 0.8rem;
    top: auto;
    margin-top: 0;
    margin-bottom: 0;
    white-space: normal;
    max-width: 100%;
    text-align: left;
    opacity: 1;
    transform: none;
    animation: none;
    letter-spacing: 0.2px;
    color: #d9f3fb;
    font-weight: 700;
  }
  .phase-chip:hover {
    border-color: rgb(132 223 241 / 0.48);
    box-shadow:
      0 10px 22px rgb(3 10 18 / 0.4),
      0 0 16px rgb(18 169 200 / 0.3);
    background: linear-gradient(
      145deg,
      rgb(8 56 90 / 0.96),
      rgb(5 35 62 / 0.96)
    );
    transform: translateX(8px);
  }
  .phase-chip:hover i {
    transform: scale(1.22) translateY(-2px) translateZ(0);
    background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac);
    box-shadow:
      0 0 0 3px rgb(18 169 200 / 0.5),
      0 10px 18px rgb(18 169 200 / 0.4);
    filter: brightness(1.16);
    animation: phaseHoverPulse 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .phase-chip:nth-child(6) {
    border-color: rgb(132 223 241 / 0.35);
    background: linear-gradient(
      145deg,
      rgb(8 48 80 / 0.92),
      rgb(5 30 55 / 0.91)
    );
    box-shadow:
      0 6px 14px rgb(18 169 200 / 0.2),
      inset 0 0 8px rgb(18 169 200 / 0.08);
  }
  .phase-chip:nth-child(6) i {
    background: linear-gradient(135deg, #1bc0dc, #12a9c8 60%, #0b77ac);
    box-shadow:
      0 0 0 2px rgb(18 169 200 / 0.4),
      0 6px 12px rgb(18 169 200 / 0.3);
  }
  .phase-chip:nth-child(6):hover {
    border-color: rgb(132 223 241 / 0.58);
    box-shadow:
      0 12px 24px rgb(18 169 200 / 0.35),
      0 0 20px rgb(18 169 200 / 0.3),
      inset 0 0 12px rgb(18 169 200 / 0.12);
    transform: translateX(12px);
    background: linear-gradient(
      145deg,
      rgb(10 65 105 / 0.98),
      rgb(7 38 68 / 0.96)
    );
  }
  .phase-chip:nth-child(6):hover i {
    transform: scale(1.22);
    box-shadow:
      0 0 0 3px rgb(18 169 200 / 0.6),
      0 12px 22px rgb(18 169 200 / 0.45),
      inset 0 0 10px rgb(255 255 255 / 0.1);
  }
  .phase-arrow {
    display: none;
  }
  .dx6-utility-bar {
    .framework-content .dx-cycle {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 5px;
    }
    .framework-content .cycle-item {
      min-height: 32px;
      padding: 5px 6px;
      font-size: 0.7rem;
    }
    position: static;
  }
  .dxio-mosaic,
  .ipo-outcomes-grid {
    grid-template-columns: 1fr;
  }
  .dxio-mosaic-card:nth-child(1) {
    grid-column: span 1;
  }
  .gallery-panel {
    border-radius: 18px;
  }
  .gallery-image-wrap {
    min-height: 220px;
    height: min(52vh, 340px);
  }
  .dxio-float-item {
    width: min(36vw, 142px);
    opacity: 0.12;
  }
  .story-panel {
    padding: 24px 16px;
  }
  .story-badge {
    font-size: 0.78rem;
  }
  .story-headline {
    font-size: 1.18rem;
    line-height: 1.7;
  }
  .partner-card {
    flex-basis: min(84vw, 240px);
    min-height: 172px;
  }
  .innovation-kpis {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .innovation-kpi {
    border-radius: 12px;
    padding: 10px;
  }
  .innovation-kpi strong {
    font-size: 1rem;
  }
  .innovation-kpi span {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .innovation-card {
    padding: 14px;
    border-radius: 16px;
  }
  .innovation-card h4 {
    font-size: 0.96rem;
  }
  .innovation-card p {
    font-size: 0.84rem;
    line-height: 1.7;
  }
  .siri-model-grid {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .siri-metric {
    border-radius: 12px;
    padding: 10px;
  }
  .siri-metric strong {
    font-size: 1.16rem;
  }
  .siri-metric span {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .siri-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .siri-panel {
    padding: 14px;
    border-radius: 16px;
  }
  .team-member-card {
    padding: 14px;
    border-radius: 20px;
    animation-duration: 7s;
  }
  .team-photo-wrap {
    aspect-ratio: 3 / 3.35;
  }
  .team-member-name {
    font-size: 0.95rem;
  }
  .team-member-role {
    font-size: 0.86rem;
  }
}
