﻿: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: #35f2ff;
  --hero-neon-soft: #9df8ff;
  --hero-violet: #58a6ff;
  --hero-deep: #050c19;
  --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%,
      rgba(0, 163, 184, 0.09),
      transparent 40%
    ),
    radial-gradient(circle at 20% 75%, rgba(10, 25, 41, 0.08), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.side-logo-rails {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}
.side-logo-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(84px, 11vw, 152px);
}
.side-logo-rail-left {
  left: 0;
}
.side-logo-rail-right {
  right: 0;
}
.side-logo-rail:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 163, 184, 0.06),
    rgba(5, 28, 47, 0.02)
  );
  opacity: 0.65;
}
.side-logo-node {
  position: absolute;
  width: clamp(140px, 11.4vw, 108px);
  animation: sideLogoFloat var(--float-duration, 12.8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
  opacity: var(--opacity, 0.68);
  filter: drop-shadow(0 10px 20px rgba(6, 26, 45, 0.26));
}
.side-logo-node img {
  width: 100%;
  display: block;
  animation: sideLogoTwist var(--twist-duration, 18s) ease-in-out infinite;
  transform-origin: center;
  mix-blend-mode: screen;
}
.side-logo-node.left-1 {
  top: 7%;
  left: 2%;
  --delay: -0.4s;
  --float-duration: 12s;
  --float-x: 10px;
  --lift: 28px;
}
.side-logo-node.left-2 {
  top: 24%;
  left: 34%;
  --delay: -3.1s;
  --float-duration: 14.8s;
  --opacity: 0.52;
  --float-x: -8px;
  --lift: 34px;
}
.side-logo-node.left-3 {
  top: 52%;
  left: 12%;
  --delay: -5.4s;
  --float-duration: 11.6s;
  --float-x: 13px;
  --lift: 30px;
}
.side-logo-node.left-4 {
  top: 79%;
  left: 40%;
  --delay: -1.6s;
  --float-duration: 13.2s;
  --opacity: 0.45;
  --float-x: -11px;
  --lift: 26px;
}
.side-logo-node.right-1 {
  top: 13%;
  right: 5%;
  --delay: -1.2s;
  --float-duration: 13.4s;
  --float-x: -10px;
  --lift: 31px;
}
.side-logo-node.right-2 {
  top: 37%;
  right: 30%;
  --delay: -4.6s;
  --float-duration: 15.1s;
  --opacity: 0.5;
  --float-x: 9px;
  --lift: 36px;
}
.side-logo-node.right-3 {
  top: 63%;
  right: 8%;
  --delay: -2.5s;
  --float-duration: 12.4s;
  --float-x: -12px;
  --lift: 29px;
}
.side-logo-node.right-4 {
  top: 84%;
  right: 34%;
  --delay: -6.1s;
  --float-duration: 14s;
  --opacity: 0.46;
  --float-x: 7px;
  --lift: 25px;
}

@keyframes sideLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    transform: translate3d(var(--float-x, 0px), calc(-1 * var(--lift, 30px)), 0)
      scale(1.06);
  }
}

@keyframes sideLogoTwist {
  0%,
  100% {
    transform: rotate(-6deg);
    filter: saturate(0.95) brightness(0.96);
  }
  50% {
    transform: rotate(7deg);
    filter: saturate(1.18) brightness(1.08);
  }
}

@media (max-width: 1200px) {
  .side-logo-node {
    width: clamp(50px, 6.8vw, 86px);
    opacity: 0.4;
  }
}

@media (max-width: 980px) {
  .side-logo-rails {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-logo-node,
  .side-logo-node img {
    animation: none;
  }
}

.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 rgba(0, 163, 184, 0.6);
  transition: width 0.15s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #e0e7ff;
}
::-webkit-scrollbar-thumb {
  background: #0a1929;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00a3b8;
}

/* Reusable Classes */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 92px 0;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0a1929;
  margin-bottom: 20px;
  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: white;
  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 rgba(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%,
    rgba(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: transparent;
  color: #00a3b8;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 163, 184, 0.4);
}

/* Header / Navbar */
.navbar {
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(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: rgba(9, 20, 32, 0.9);
  box-shadow: 0 10px 28px rgba(6, 14, 23, 0.35);
}
.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: white;
}
.logo span {
  color: white;
}
.logo .point {
  color: #00A3B8;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  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 transparent;
  padding: 8px 12px;
}
.nav-links a:hover {
  color: #9defff;
  border-color: rgba(157, 239, 255, 0.24);
  background: rgba(0, 163, 184, 0.14);
}
.nav-links a.active {
  color: #081a2a;
  border-color: rgba(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 rgba(168, 241, 251, 0.28);
  background: rgba(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: rgba(0, 163, 184, 0.2);
  border-color: rgba(168, 241, 251, 0.48);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    120deg,
    rgba(2, 10, 22, 0.8),
    rgba(6, 25, 44, 0.74) 24%,
    rgba(10, 42, 66, 0.32)
  );
  color: white;
  margin-top: var(--navbar-offset);
  padding: 10px 0 102px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(103, 231, 245, 0.25);
  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,
    rgba(128, 238, 255, 0.12),
    transparent 34%,
    transparent 65%,
    rgba(98, 195, 255, 0.18)
  );
  mix-blend-mode: screen;
  animation: heroAuraSweep 15s ease-in-out infinite;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  filter: saturate(1.06) contrast(1.03);
  animation:
    heroSlideSwap 15s linear infinite,
    heroSlidePulse 15s ease-in-out infinite;
  animation-delay: var(--hero-slide-delay, 0s);
  will-change: opacity, transform, filter;
}
.hero-bg-slide.s1 {
  --hero-slide-delay: 0s;
  background-image: url("/images/background/herosectionbackground.jpeg");
}
.hero-bg-slide.s2 {
  --hero-slide-delay: 3s;
  background-image: url("/images/background/hero-3.jpg");
}
.hero-bg-slide.s3 {
  --hero-slide-delay: 6s;
  background-image: url("/images/background/herosectionbackground_.jpg");
}
.hero-bg-slide.s4 {
  --hero-slide-delay: 9s;
  background-image: url("/images/background/digitaltransformation.webp");
}
.hero-bg-slide.s5 {
  --hero-slide-delay: 12s;
  background-image: url("/images/background/hero-3.jpg");
}
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%,
      rgba(53, 242, 255, 0.24),
      transparent 36%
    ),
    radial-gradient(
      circle at 18% 84%,
      rgba(88, 166, 255, 0.2),
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 235, 255, 0.18),
      transparent 38%
    );
}
.hero:after {
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(4, 15, 29, 0.86), transparent);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  transform-style: preserve-3d;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 20px;
  color: #ccf7ff;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(157, 248, 255, 0.45);
  background: rgba(10, 30, 56, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(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 rgba(0, 0, 0, 0.4);
}
.hero-content h1 .highlight {
  color: var(--hero-neon);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(53, 242, 255, 0.45);
}
.hero-content h1 .highlight:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -7px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(
    to left,
    rgba(53, 242, 255, 0.95),
    transparent 82%
  );
}
.hero-content p {
  font-size: 1.12rem;
  color: #dceefe;
  margin-bottom: 24px;
  max-width: 90%;
  line-height: 1.85;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.26);
}
.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 rgba(0, 163, 184, 0.38);
}
.btn-outline {
  border: 1px solid rgba(157, 248, 255, 0.42);
  background: rgba(8, 30, 52, 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: rgba(8, 56, 78, 0.72);
}
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-chip {
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgba(163, 236, 247, 0.32);
  background: rgba(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 rgba(128, 221, 242, 0.34);
  border-radius: 12px;
  padding: 10px;
  background: rgba(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,
    rgba(53, 242, 255, 0.52),
    rgba(53, 242, 255, 0)
  );
  animation: floatOrbit 8s ease-in-out infinite;
}
.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -2%;
  background: radial-gradient(
    circle,
    rgba(88, 166, 255, 0.4),
    rgba(88, 166, 255, 0)
  );
  animation: floatOrbit 10s ease-in-out infinite 0.7s;
}
.hero-orb-c {
  width: 100px;
  height: 100px;
  top: 42%;
  left: 18%;
  background: radial-gradient(
    circle,
    rgba(157, 248, 255, 0.42),
    rgba(157, 248, 255, 0)
  );
  animation: floatOrbit 7s ease-in-out infinite 1.2s;
}
.hero-glass-panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(127, 225, 246, 0.42);
  background: linear-gradient(
    150deg,
    rgba(6, 25, 43, 0.78),
    rgba(10, 39, 62, 0.7)
  );
  box-shadow: 0 24px 44px rgba(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,
      rgba(53, 242, 255, 0.18),
      transparent 35%,
      transparent 65%,
      rgba(88, 166, 255, 0.2)
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(157, 248, 255, 0.22),
      transparent 40%
    );
  pointer-events: none;
}
.hero-glass-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 235, 250, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 235, 250, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(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 rgba(157, 248, 255, 0.48);
  background: rgba(6, 31, 54, 0.64);
  color: #dff8ff;
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-panel-score {
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(53, 242, 255, 0.14);
  border: 1px solid rgba(53, 242, 255, 0.4);
  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 rgba(157, 248, 255, 0.46);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(157, 248, 255, 0.36),
    rgba(12, 43, 72, 0.85)
  );
  display: grid;
  place-items: center;
  position: relative;
  box-shadow:
    0 0 24px rgba(53, 242, 255, 0.34),
    inset 0 0 22px rgba(53, 242, 255, 0.18);
  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 rgba(157, 248, 255, 0.52);
}
.core-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(157, 248, 255, 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 rgba(157, 248, 255, 0.7);
}
.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: rgba(6, 24, 43, 0.7);
  border: 1px solid rgba(112, 218, 240, 0.28);
  position: relative;
}
.data-line span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(
    90deg,
    rgba(53, 242, 255, 0.2),
    rgba(53, 242, 255, 0.88),
    rgba(157, 248, 255, 0.65)
  );
  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 rgba(142, 234, 248, 0.42);
  background: rgba(7, 31, 53, 0.72);
  color: #dcf7ff;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(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 rgba(139, 230, 246, 0.35);
  background: linear-gradient(
    160deg,
    rgba(8, 32, 54, 0.8),
    rgba(6, 22, 39, 0.74)
  );
  color: #e7f8ff;
  border-radius: 14px;
  padding: 14px 15px;
  box-shadow: 0 12px 28px rgba(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: rgba(157, 248, 255, 0.66);
  box-shadow: 0 18px 30px rgba(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%);
  }
}

/* Animated background shapes */
.shape {
  position: absolute;
  background: rgba(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: rgba(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 Framework Section - The Core */
.dx6-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  border-top: 1px solid #e2ecf7;
}
.dx6-intro {
  background: linear-gradient(150deg, #0f2c44, #12415f);
  color: #e7f4ff;
  border: 1px solid rgba(127, 216, 231, 0.35);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 42px rgba(8, 31, 50, 0.25);
  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, rgba(2, 190, 214, 0.35), 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: #a8f1fb;
  border: 1px solid rgba(168, 241, 251, 0.45);
  background: rgba(168, 241, 251, 0.12);
}
.dx6-intro p {
  color: #c5ddf0;
  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 #d7e8f6;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}
.dx6-mini-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.dx6-mini-nav a {
  text-decoration: none;
  color: #1d4f71;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #cae2f1;
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
  transition: all 0.2s ease;
}
.dx6-mini-nav a:hover,
.dx6-mini-nav a:focus {
  border-color: #8acedd;
  color: #0b6f84;
  background: #ffffff;
}
.dx6-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.dx6-action-btn {
  border: 1px solid #cae2f1;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  color: #194a6b;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 7px 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dx6-action-btn:hover {
  border-color: #89cfde;
  color: #0a6f84;
  background: #ffffff;
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.framework-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-radius: 22px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border: 1px solid #dbe7f3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(7, 39, 62, 0.08);
  padding: 0;
}
.framework-card:hover {
  transform: translateY(-6px);
  border-color: #7acbda;
  box-shadow: 0 18px 30px rgba(7, 44, 72, 0.16);
}
.framework-card.active {
  border-color: #64c8d8;
  box-shadow: 0 20px 34px rgba(7, 44, 72, 0.18);
}
.framework-card .card-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(0, 163, 184, 0.16);
  position: absolute;
  top: 12px;
  left: 14px;
}
.framework-head {
  padding: 22px 20px 14px;
  position: relative;
}
.framework-chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9f8fb;
  color: #08798c;
  border: 1px solid #b9e9f0;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.framework-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a1929;
  margin-bottom: 9px;
  position: relative;
  line-height: 1.55;
}
.framework-goal {
  color: #4a5a6e;
  margin-bottom: 12px;
  line-height: 1.8;
}
.dx-cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
  align-items: center;
}
.cycle-item {
  background: #00a3b8;
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}
.framework-toggle {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  border: 1px solid #cde2f1;
  background: linear-gradient(180deg, #f8fcff, #eef7ff);
  border-radius: 12px;
  color: #174869;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.framework-toggle:hover {
  border-color: #87cddd;
  background: #ffffff;
}
.framework-toggle i {
  transition: transform 0.25s ease;
}
.framework-card.active .framework-toggle i {
  transform: rotate(180deg);
}
.framework-details {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.45s ease;
}
.framework-card.active .framework-details {
  max-height: 860px;
  padding-bottom: 20px;
}
.framework-details h4 {
  font-size: 0.94rem;
  color: #114c6f;
  margin-bottom: 8px;
}
.framework-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.framework-list li {
  background: #f7fbff;
  border: 1px solid #dceaf6;
  border-radius: 10px;
  padding: 9px 10px;
  color: #49637b;
  font-size: 0.89rem;
  line-height: 1.75;
}
.framework-result {
  margin-top: 10px;
  background: linear-gradient(145deg, #e7f8fb, #f2fcff);
  border: 1px solid #bde6ee;
  border-radius: 11px;
  padding: 10px;
  color: #1d5a78;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Services Section */
.flagship-service {
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fe 100%);
}
.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}
.main-service-panel {
  background:
    linear-gradient(
      120deg,
      rgba(2, 10, 22, 0.92),
      rgba(6, 25, 44, 0.88) 30%,
      rgba(10, 42, 66, 0.8)
    ),
    url("/images/background/digitaltransformation.webp") top center / cover
      no-repeat;
  color: #f2f8ff;
  border-radius: 32px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(89, 196, 216, 0.3);
  box-shadow: 0 24px 44px rgba(7, 27, 42, 0.28);
}
.main-service-panel:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  top: -100px;
  left: -90px;
  background: radial-gradient(circle, rgba(0, 163, 184, 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: #8ceaf6;
  background: rgba(140, 234, 246, 0.13);
  border: 1px solid rgba(140, 234, 246, 0.35);
}
.main-service-panel h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.45;
}
.main-service-panel p {
  color: #d0e2f3;
  margin-bottom: 14px;
  line-height: 1.95;
}
.dx-equation {
  margin-top: 20px;
  background: linear-gradient(
    160deg,
    rgba(0, 163, 184, 0.26),
    rgba(38, 215, 236, 0.12)
  );
  border: 1px solid rgba(141, 237, 248, 0.38);
  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;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.phase-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d8f8fc;
  border: 1px solid rgba(144, 238, 249, 0.38);
  background: rgba(5, 140, 159, 0.24);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.phase-chip:hover {
  transform: translateY(-3px);
  background: rgba(2, 189, 214, 0.34);
}
.phase-arrow {
  color: rgba(178, 238, 248, 0.9);
  font-weight: 700;
}

.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(180deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid #d8e7f6;
  border-radius: 20px;
  padding: 15px 14px;
  min-height: 110px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.axis-card:before {
  content: "";
  position: absolute;
  inset: auto -40px -45px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 184, 0.17), transparent 70%);
}
.axis-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 163, 184, 0.12),
    transparent 38%,
    transparent 62%,
    rgba(10, 25, 41, 0.08)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.axis-card:hover {
  transform: translateY(-9px) rotate(-0.6deg) scale(1.015);
  border-color: #7bcddb;
  box-shadow: 0 18px 32px rgba(6, 43, 73, 0.18);
}
.axis-card:hover:after {
  opacity: 1;
}
.axis-card h4 {
  font-size: 1.03rem;
  margin-bottom: 6px;
  color: #0f2f4d;
}
.axis-card p {
  font-size: 0.9rem;
  color: #58708a;
  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;
}
.flagship-service .service-media-grid .media-card {
  min-height: 210px;
  background: linear-gradient(180deg, #f8fcff, #eaf4ff);
  border-color: #c7ddf0;
  box-shadow: 0 14px 28px rgba(8, 44, 73, 0.14);
}
.flagship-service .service-media-grid .media-card:nth-child(1) {
  grid-column: span 1;
  min-height: 210px;
}
.flagship-service .service-media-grid .media-card img {
  object-fit: contain;
  background: #f4f8fc;
  padding: 10px;
}
.flagship-service .service-media-grid .media-card:before {
  content: "\f201";
  opacity: 0.85;
  transform: translateY(0);
}
.flagship-service .service-media-grid .media-card:hover img {
  transform: none;
}
.flagship-service .service-media-grid .media-card:after {
  font-size: 0.81rem;
  padding: 9px 10px;
}
.media-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 160px;
  border: 1px solid #d5e6f5;
  box-shadow: 0 10px 24px rgba(8, 44, 73, 0.12);
  background: #d9e9f8;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  isolation: isolate;
}
.media-card:nth-child(1) {
  grid-column: span 2;
  min-height: 215px;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.media-card:before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(9, 28, 47, 0.65);
  color: #e8fbff;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
}
.media-card:after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #eaf7ff;
  background: linear-gradient(0deg, rgba(8, 25, 44, 0.85), rgba(8, 25, 44, 0));
}
.media-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 30px rgba(9, 33, 54, 0.2);
  border-color: #79cddc;
}
.media-card:hover img {
  transform: scale(1.08);
}
.media-card:hover:before {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(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,
    rgba(13, 33, 53, 0.98),
    rgba(9, 23, 39, 0.98)
  );
  border: 1px solid rgba(115, 211, 228, 0.35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(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 rgba(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 rgba(125, 214, 228, 0.5);
  background: rgba(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 rgba(0, 0, 0, 0.35);
}
.gallery-close:hover {
  background: rgba(0, 163, 184, 0.35);
}
.gallery-stage {
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.gallery-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(130, 220, 233, 0.22);
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(99, 228, 255, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(12, 32, 51, 0.96), rgba(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 rgba(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, rgba(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: white;
  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 Experience */
.digital-platforms {
  --dxio-ink: #f4fbff;
  --dxio-muted: #9db0c4;
  --dxio-edge: rgba(145, 238, 255, 0.3);
  --dxio-glow: rgba(73, 230, 255, 0.28);
  position: relative;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(77, 236, 255, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 80%,
      rgba(47, 132, 224, 0.25),
      transparent 46%
    ),
    linear-gradient(130deg, #071424 0%, #0c2237 40%, #0a1626 100%);
  border-top: 1px solid rgba(162, 236, 255, 0.2);
  border-bottom: 1px solid rgba(162, 236, 255, 0.2);
  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(rgba(164, 238, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 238, 255, 0.06) 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,
    rgba(77, 236, 255, 0.38),
    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 rgba(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 {
  color: var(--dxio-ink);
}
.digital-platforms .section-subtitle {
  color: #c6d4e5;
  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,
    rgba(13, 41, 62, 0.94),
    rgba(10, 25, 43, 0.9)
  );
  border: 1px solid var(--dxio-edge);
  border-radius: 30px;
  padding: 24px;
  box-shadow:
    0 24px 50px rgba(4, 17, 30, 0.45),
    inset 0 0 0 1px rgba(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,
    rgba(64, 226, 245, 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,
    rgba(14, 54, 82, 0.95),
    rgba(8, 30, 47, 0.95)
  );
  border: 1px solid rgba(143, 232, 250, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 18px 26px rgba(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,
    rgba(84, 233, 255, 0.24),
    transparent 72%
  );
  filter: blur(5px);
}
.dxio-brand-chip:after {
  inset: 18px;
  border: 1px solid rgba(160, 243, 255, 0.16);
  opacity: 0.8;
}
.dxio-brand-chip img {
  width: min(100%, 138px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(73, 219, 240, 0.28));
  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: #aff7ff;
  background: rgba(107, 236, 255, 0.15);
  border: 1px solid rgba(153, 240, 255, 0.4);
  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: #b8cbde;
  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,
    rgba(11, 35, 55, 0.96),
    rgba(7, 22, 38, 0.96)
  );
  border: 1px solid var(--dxio-edge);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 28px 52px rgba(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,
    rgba(85, 217, 236, 0.12),
    transparent 30%,
    transparent 68%,
    rgba(85, 217, 236, 0.12)
  );
  opacity: 0.55;
}
.dxio-stage:after {
  width: 200px;
  height: 200px;
  top: -90px;
  right: -45px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(92, 213, 255, 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: #9ad0f4;
  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: rgba(162, 236, 255, 0.12);
  border: 1px solid rgba(162, 236, 255, 0.26);
  color: #cbf4ff;
  font-size: 0.78rem;
  font-weight: 700;
}
.dxio-preview {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(166, 239, 255, 0.38);
  background: linear-gradient(
    160deg,
    rgba(17, 47, 71, 0.94),
    rgba(10, 31, 49, 0.92)
  );
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 24px 36px rgba(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;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(126, 233, 255, 0.12),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(223, 245, 255, 0.96),
      rgba(204, 232, 246, 0.92)
    );
  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: rgba(5, 21, 35, 0.74);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(167, 239, 255, 0.22);
  box-shadow: 0 14px 24px rgba(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: #bfd5e9;
  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,
    rgba(91, 233, 255, 0.8),
    rgba(91, 233, 255, 0.1)
  );
  top: 62px;
  right: 18px;
}
.dxio-preview-orb.b {
  width: 16px;
  height: 16px;
  background: radial-gradient(
    circle,
    rgba(126, 169, 255, 0.8),
    rgba(126, 169, 255, 0.1)
  );
  top: 112px;
  left: 24px;
  animation-delay: 1.1s;
}
.dxio-preview-orb.c {
  width: 12px;
  height: 12px;
  background: radial-gradient(
    circle,
    rgba(121, 248, 255, 0.85),
    rgba(121, 248, 255, 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 rgba(163, 238, 255, 0.24);
  background: linear-gradient(
    145deg,
    rgba(12, 38, 60, 0.92),
    rgba(8, 24, 40, 0.93)
  );
  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 rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.dxio-app-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 241, 255, 0.48);
  box-shadow:
    0 16px 28px rgba(3, 13, 22, 0.4),
    0 0 22px rgba(88, 230, 255, 0.16);
}
.dxio-app-card.active {
  border-color: rgba(141, 239, 255, 0.75);
  background: linear-gradient(
    145deg,
    rgba(18, 58, 87, 0.95),
    rgba(10, 29, 47, 0.96)
  );
  box-shadow:
    0 18px 32px rgba(4, 16, 28, 0.48),
    0 0 0 1px rgba(156, 242, 255, 0.45),
    0 0 25px rgba(87, 226, 255, 0.26);
}
.dxio-app-card:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -74px;
  left: -66px;
  background: radial-gradient(
    circle,
    rgba(111, 236, 255, 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: #a9eaff;
  border: 1px solid rgba(158, 239, 255, 0.42);
  background: rgba(137, 238, 255, 0.12);
}
.dxio-app-goal {
  font-size: 0.9rem;
  color: #afc7db;
  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 rgba(156, 242, 255, 0.24);
  min-height: 120px;
  max-height: 120px;
  box-shadow: 0 14px 24px rgba(3, 12, 20, 0.35);
  transform-style: preserve-3d;
  background: linear-gradient(
    180deg,
    rgba(226, 246, 255, 0.98),
    rgba(205, 231, 245, 0.94)
  );
  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,
    rgba(4, 19, 31, 0.16),
    rgba(4, 19, 31, 0.72)
  );
  border: 1px solid rgba(183, 245, 255, 0.18);
  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 Readiness Service */
.ipo-service {
  background: linear-gradient(180deg, #f4f8fc 0%, #eaf2fb 100%);
  border-top: 1px solid #d7e5f3;
}
.ipo-intro {
  background: linear-gradient(150deg, #0e2a43, #134566);
  color: #e8f2ff;
  border: 1px solid rgba(124, 222, 236, 0.35);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 22px 52px rgba(5, 18, 38, 0.32);
  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, rgba(0, 163, 184, 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: rgba(158, 236, 247, 0.14);
  border: 1px solid rgba(158, 236, 247, 0.45);
  color: #9eecf7;
  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: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #c0d8f0;
}
.ipo-market-alt {
  background: rgba(158, 236, 247, 0.14);
  border-color: rgba(158, 236, 247, 0.4);
  color: #9feffa;
}
.ipo-intro p {
  color: #bad0e8;
  line-height: 2;
  font-size: 1.02rem;
}
/* IPO Roadmap Timeline */
.ipo-roadmap {
  margin-bottom: 42px;
}
.ipo-roadmap-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f3f5f;
  margin-bottom: 28px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #eef8ff, #e2f3ff);
  border: 1px solid #bfe3f4;
  border-radius: 12px;
}
.ipo-phases {
  display: flex;
  flex-direction: column;
}
.ipo-phase {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
}
.ipo-phase-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ipo-phase-num {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00a3b8, #35c9d9);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 163, 184, 0.36);
  flex-shrink: 0;
}
.ipo-phase-connector {
  flex: 1;
  width: 2px;
  min-height: 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 163, 184, 0.52),
    rgba(0, 163, 184, 0.05)
  );
  margin-top: 6px;
}
.ipo-phase:last-child .ipo-phase-connector {
  display: none;
}
.ipo-phase-card {
  background: #ffffff;
  border: 1px solid #e4edf6;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(8, 30, 55, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
}
.ipo-phase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 163, 184, 0.06), transparent 60%);
  pointer-events: none;
}
.ipo-phase-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 12px 28px rgba(8, 30, 55, 0.12);
  border-color: #8acedd;
}
.ipo-phase-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #e9f8fb, #f2fcff);
  border: 1px solid #b9e9f0;
  color: #0b7b8e;
  font-size: 1rem;
  margin-bottom: 10px;
}
.ipo-phase-card h4 {
  color: #0c2440;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.ipo-phase-card p {
  color: #4f6880;
  font-size: 0.93rem;
  line-height: 1.88;
}
/* IPO Outcome Benefits */
.ipo-outcomes {
  background: linear-gradient(150deg, #0e2b43, #124566);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(124, 222, 236, 0.28);
  box-shadow: 0 24px 54px rgba(5, 16, 32, 0.32);
}
.ipo-outcomes-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ipo-outcomes-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #9eecf7;
  white-space: nowrap;
}
.ipo-outcomes-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, rgba(124, 222, 236, 0.45), transparent);
}
.ipo-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ipo-outcome-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(124, 222, 236, 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: rgba(0, 163, 184, 0.14);
  border-color: rgba(124, 222, 236, 0.46);
  transform: translateY(-5px);
}
.ipo-outcome-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 163, 184, 0.2);
  border: 1px solid rgba(124, 222, 236, 0.42);
  color: #9eecf7;
  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;
}

/* Institutional Innovation - Fourth Service */
.innovation-service {
  background: linear-gradient(180deg, #f5faff 0%, #eaf3fd 100%);
  border-top: 1px solid #d8e7f5;
  border-bottom: 1px solid #d8e7f5;
}
.innovation-hero {
  background: linear-gradient(150deg, #0f2e48, #144b70);
  color: #e8f7ff;
  border: 1px solid rgba(124, 222, 236, 0.34);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 24px 52px rgba(8, 35, 58, 0.28);
  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, rgba(0, 163, 184, 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: #a8f1fb;
  border: 1px solid rgba(168, 241, 251, 0.42);
  background: rgba(168, 241, 251, 0.12);
}
.innovation-hero h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #f0f9ff;
}
.innovation-hero p {
  color: #c4def1;
  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: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(143, 227, 239, 0.36);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.innovation-kpi strong {
  display: block;
  color: #9eecf7;
  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(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.innovation-card {
  background: #ffffff;
  border: 1px solid #d8e6f2;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(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, rgba(0, 163, 184, 0.08), transparent 55%);
  pointer-events: none;
}
.innovation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(11, 44, 69, 0.14);
  border-color: #8acedd;
}
.innovation-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e9f8fb, #f3fcff);
  border: 1px solid #bfe6ef;
  color: #0c7890;
  font-size: 1.1rem;
}
.innovation-card h4 {
  color: #0f3f5f;
  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, #f5faff);
  border: 1px solid #dce8f3;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(11, 44, 69, 0.07);
}
.innovation-promise h4 {
  color: #0f3f5f;
  margin-bottom: 10px;
  font-size: 1.06rem;
}
.innovation-promise p {
  color: #57728b;
  line-height: 1.95;
  font-size: 0.94rem;
}

/* SIRI Advisory - Fifth Service */
.siri-service {
  background: linear-gradient(180deg, #f4f8fc 0%, #e8f1fa 100%);
  border-top: 1px solid #d6e4f2;
  border-bottom: 1px solid #d6e4f2;
}
.siri-hero {
  background: linear-gradient(145deg, #0e2942, #143f63);
  border: 1px solid rgba(124, 222, 236, 0.35);
  border-radius: 28px;
  padding: 30px;
  color: #e8f1ff;
  box-shadow: 0 22px 48px rgba(11, 22, 38, 0.3);
  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, rgba(0, 163, 184, 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: #a8f1fb;
  border: 1px solid rgba(168, 241, 251, 0.42);
  background: rgba(168, 241, 251, 0.12);
}
.siri-hero h3 {
  color: #f6f9ff;
  margin-bottom: 10px;
  font-size: 1.72rem;
}
.siri-hero p {
  color: #c9d7ea;
  line-height: 1.95;
  font-size: 1rem;
}
.siri-model-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.siri-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(124, 222, 236, 0.34);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.siri-metric strong {
  display: block;
  color: #9eecf7;
  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: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(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: #0a7d95;
  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 #cce4f2;
  background: linear-gradient(145deg, #eff8ff, #e6f3ff);
  padding: 14px 10px;
  text-align: center;
  color: #1c4e6e;
  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: #8acedd;
  box-shadow: 0 10px 22px rgba(19, 38, 63, 0.12);
}
.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 */
.partners {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 163, 184, 0.1), transparent 38%),
    radial-gradient(circle at 15% 85%, rgba(10, 25, 41, 0.08), transparent 42%),
    linear-gradient(180deg, #f5f9fe 0%, #ecf4fc 100%);
  border-top: 1px solid #d9e7f5;
  border-bottom: 1px solid #d9e7f5;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d7e6f4;
  background: linear-gradient(165deg, #ffffff, #f4f9ff);
  padding: 16px;
  min-height: 206px;
  box-shadow: 0 12px 28px rgba(12, 40, 65, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: partnerFloat 7s ease-in-out infinite;
}
.partner-card:before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -68px;
  left: -56px;
  background: radial-gradient(circle, rgba(0, 163, 184, 0.2), transparent 68%);
  pointer-events: none;
}
.partner-card:nth-child(2) {
  animation-delay: 0.7s;
}
.partner-card:nth-child(3) {
  animation-delay: 1.2s;
}
.partner-card:nth-child(4) {
  animation-delay: 1.7s;
}
.partner-card:hover {
  transform: translateY(-8px);
  border-color: #82d0de;
  box-shadow: 0 20px 34px rgba(8, 39, 66, 0.16);
}
.partner-logo-wrap {
  height: 116px;
  border-radius: 14px;
  border: 1px solid #d9e8f5;
  background: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 12px;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 86px;
  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;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}
.team-category {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 30px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #e9f0f8;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.team-category:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 28px rgba(11, 38, 68, 0.12);
}
.team-category i {
  font-size: 2.8rem;
  color: #00a3b8;
  margin-bottom: 15px;
}
.team-category h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #0a1929;
  color: white;
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.35));
}

.story-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0d263e, #144b70);
  background:
    linear-gradient(
      120deg,
      rgba(2, 10, 22, 0.92),
      rgba(6, 25, 44, 0.88) 22%,
      rgba(10, 42, 66, 0.2)
    ),
    url("/images/background/herosectionbackground_.jpg") top center / cover
      no-repeat;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid rgba(129, 224, 239, 0.33);
  box-shadow: 0 24px 48px rgba(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,
    rgba(56, 235, 255, 0.32),
    transparent 72%
  );
  pointer-events: none;
}
.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.story-main {
  display: grid;
  align-content: start;
  gap: 14px;
}
.story-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(156, 236, 247, 0.13);
  border: 1px solid rgba(156, 236, 247, 0.43);
  color: #aef0fa;
  font-size: 0.84rem;
  font-weight: 700;
}
.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: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.story-pillars li {
  background: rgba(7, 34, 55, 0.55);
  border: 1px solid rgba(127, 219, 235, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  color: #d8ebf8;
  line-height: 1.8;
  font-size: 0.92rem;
}
.story-pillars strong {
  color: #9cecf7;
}
.story-grid {
  display: grid;
  gap: 12px;
  align-content: start;
}
.story-card {
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.97),
    rgba(240, 248, 255, 0.93)
  );
  border: 1px solid #cae3f2;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgba(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 rgba(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: rgba(156, 236, 247, 0.12);
  border: 1px solid rgba(156, 236, 247, 0.36);
  border-radius: 12px;
  padding: 10px 9px;
  text-align: center;
}
.story-metric strong {
  display: block;
  color: #aef0fa;
  font-size: 1.08rem;
  margin-bottom: 3px;
}
.story-metric span {
  color: #d7eaf7;
  font-size: 0.8rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  /* filter: blur(6px); */
  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);
}

/* Responsive */
@media (max-width: 992px) {
  html,
  body {
    overflow-x: clip;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  section > .container {
    padding-inline: 0;
  }
  section {
    padding: 72px 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%;
  }
  .navbar .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 20, 32, 0.98);
    border: 1px solid rgba(168, 241, 251, 0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 34px rgba(4, 11, 18, 0.32);
    padding: 8px 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    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: transparent;
    font-size: 0.98rem;
  }
  .nav-links a:hover {
    background: rgba(0, 163, 184, 0.12);
  }
  .nav-links a.active {
    color: #c9f8ff;
    border-color: rgba(157, 239, 255, 0.34);
    background: rgba(0, 163, 184, 0.2);
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero {
    padding: 102px 0 70px;
  }
  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;
  }
  .hero-content p {
    max-width: 100%;
    font-size: 1.04rem;
    margin-bottom: 18px;
  }
  .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;
  }
  .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: wrap;
  }
  .dx6-action-btn {
    flex: 1 1 140px;
    min-height: 42px;
  }
  .dx6-intro {
    padding: 20px 16px;
  }
  .framework-grid {
    grid-template-columns: 1fr;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .dxio-overview {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
  .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;
  }
  .axis-grid {
    grid-template-columns: 1fr;
  }
  .service-media-grid {
    grid-template-columns: 1fr;
  }
  .media-card:nth-child(1) {
    grid-column: span 1;
    min-height: 170px;
  }
  .flagship-service .service-media-grid .media-card,
  .flagship-service .service-media-grid .media-card:nth-child(1) {
    min-height: 180px;
  }
  .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-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;
  }
  .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .partner-card {
    min-height: 178px;
    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;
  }
  .ipo-intro,
  .ipo-outcomes {
    padding: 22px 18px;
  }
  .ipo-phase {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }
  .siri-hero {
    border-radius: 18px;
    border: 1px solid rgba(130, 220, 233, 0.22);
    background:
      radial-gradient(
        circle at 50% 18%,
        rgba(99, 228, 255, 0.1),
        transparent 32%
      ),
      linear-gradient(180deg, rgba(12, 32, 51, 0.96), rgba(7, 20, 34, 0.96));
    min-height: 300px;
    height: min(82vh, 760px);
  }
  .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;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .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;
  }
  body.nav-visible .hero {
    padding-top: 96px;
  }
  .hero-content h1 {
    font-size: clamp(1.95rem, 10vw, 2.4rem);
  }
  .hero-trust {
    gap: 8px;
  }
  .hero-content p {
    margin-bottom: 16px;
  }
  .trust-chip,
  .cycle-item,
  .phase-chip {
    width: 100%;
    text-align: center;
  }
  .hero-scene {
    min-height: 390px;
  }
  .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-arrow {
    display: none;
  }
  .dx6-utility-bar {
    position: static;
  }
  .dxio-mosaic,
  .ipo-outcomes-grid,
  .logo-cloud {
    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 {
    min-height: 166px;
  }
  .team-category {
    padding: 24px 18px;
  }
}
