:root {
  --bg: #070c13;
  --bg-soft: #0b121b;
  --surface: #101822;
  --surface-2: #15212d;
  --surface-3: #1a2835;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef5f7;
  --muted: #99a8b1;
  --muted-2: #667781;
  --teal: #2bafaa;
  --teal-bright: #45e2d6;
  --teal-deep: #15736f;
  --danger: #ff735c;
  --max: 1180px;
  --radius: 8px;
  --radius-sm: 6px;
  --font-main: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
li,
a,
small,
strong {
  overflow-wrap: break-word;
}

.hero-copy,
.section-heading,
.content-block,
.contact-copy,
.footer-brand-panel,
.footer-nav-panel,
.footer-contact-panel,
.service-card,
.page-card,
.platform-badge {
  min-width: 0;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--teal);
  color: #041311;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 18px rgba(69, 226, 214, 0.7);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: rgba(7, 12, 19, 0.54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--border);
  background: rgba(7, 12, 19, 0.9);
}

.nav-shell {
  width: min(100%, var(--max));
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav-item {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
}

.nav-links > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  transition: color 180ms ease;
}

.nav-links > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal-bright);
  transition: transform 220ms var(--ease);
}

.nav-links > a:hover,
.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: var(--text);
}

.nav-links > a:hover::after,
.nav-link:hover::after,
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  transform: scaleX(1);
}

.language-switch {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  min-width: 78px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-toggle:hover,
.language-switch.is-open .language-toggle {
  border-color: rgba(69, 226, 214, 0.36);
  background: rgba(69, 226, 214, 0.1);
  color: var(--teal-bright);
}

.language-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.language-switch.is-open .language-toggle svg,
.mobile-language-switch.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 184px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(9, 15, 23, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu a,
.language-menu > span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.language-menu a:hover,
.language-menu .is-active {
  color: var(--teal-bright);
  background: rgba(69, 226, 214, 0.1);
}

.language-menu > span[aria-disabled="true"] {
  opacity: 0.56;
  cursor: not-allowed;
}

.language-menu small {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-flag {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1;
}

.mega-menu {
  position: absolute;
  top: 76px;
  left: 50%;
  width: min(880px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 0.88fr 1.35fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 226, 214, 0.14), transparent 34%),
    rgba(9, 15, 23, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
}

.mega-industries {
  width: min(700px, calc(100vw - 48px));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-intro {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.mega-intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.mega-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-list-compact {
  align-content: start;
}

.mega-link {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.mega-link:hover,
.mega-link:focus-visible {
  border-color: rgba(69, 226, 214, 0.3);
  background: rgba(69, 226, 214, 0.08);
  transform: translateY(-2px);
}

.mega-link span {
  color: #e8f3f5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.mega-link small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 10px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 220ms ease;
}

.nav-toggle:hover,
.nav-toggle.is-active {
  border-color: rgba(69, 226, 214, 0.38);
  color: var(--teal-bright);
  box-shadow: 0 16px 42px -26px rgba(69, 226, 214, 0.75);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 79;
  height: calc(100dvh - 76px);
  padding: 16px max(18px, calc((100vw - var(--max)) / 2 + 24px)) 24px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 18% 0%, rgba(69, 226, 214, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(7, 12, 19, 0.98) 0%, rgba(9, 15, 23, 0.99) 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  animation: mobileMenuIn 220ms var(--ease) both;
}

.mobile-menu > a,
.mobile-group {
  margin-top: 8px;
}

.mobile-menu > a,
.mobile-group summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.mobile-menu > a:hover,
.mobile-group summary:hover {
  border-color: rgba(69, 226, 214, 0.34);
  background: rgba(69, 226, 214, 0.08);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--text);
}

.mobile-group {
  border-bottom: 0;
}

.mobile-group summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary::after {
  content: "+";
  color: var(--teal-bright);
  font-weight: 800;
}

.mobile-group[open] summary::after {
  content: "-";
}

.mobile-group a {
  min-height: 44px;
  margin: 6px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mobile-group a:hover {
  border-color: rgba(69, 226, 214, 0.26);
  background: rgba(69, 226, 214, 0.06);
  color: var(--text);
}

.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  border-bottom: 0;
}

.mobile-language-switch {
  position: relative;
  padding: 14px 0;
  border-bottom: 0;
}

.mobile-language-switch .language-toggle {
  width: 100%;
  min-height: 50px;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.mobile-language-switch .language-toggle > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mobile-language-switch .language-menu {
  position: static;
  display: none;
  min-width: 0;
  margin-top: 8px;
  border-radius: var(--radius);
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mobile-language-switch.is-open .language-menu {
  display: grid;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 220ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: #041311;
  box-shadow: 0 0 0 rgba(43, 175, 170, 0);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px -18px rgba(69, 226, 214, 0.92);
}

.btn-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(69, 226, 214, 0.55);
  color: var(--teal-bright);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 104px;
  perspective: 1200px;
}

.hero-canvas,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 42%, rgba(69, 226, 214, 0.22), transparent 32%),
    radial-gradient(circle at 88% 70%, rgba(43, 175, 170, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(7, 12, 19, 0.98) 0%, rgba(7, 12, 19, 0.84) 43%, rgba(7, 12, 19, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 12, 19, 0.25), var(--bg) 97%);
}

.hero-orbit {
  position: absolute;
  top: 52%;
  right: max(8px, calc((100vw - var(--max)) / 2 - 42px));
  z-index: 1;
  width: min(45vw, 610px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotateX(58deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  pointer-events: none;
  opacity: 0.92;
}

.orbit-aura,
.orbit-scan,
.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  transform-style: preserve-3d;
}

.orbit-aura {
  inset: 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 226, 214, 0.18), transparent 38%),
    conic-gradient(from 90deg, transparent, rgba(69, 226, 214, 0.18), transparent 38%, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(1px);
  opacity: 0.92;
  animation: orbitAura 7s ease-in-out infinite;
}

.orbit-scan {
  inset: 15%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(69, 226, 214, 0.22), transparent 82% 100%);
  mask-image: radial-gradient(circle, transparent 45%, #000 46%, #000 50%, transparent 52%);
  animation: orbitScan 5.4s linear infinite;
}

.orbit-ring {
  inset: 7%;
  border: 1px solid rgba(69, 226, 214, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(69, 226, 214, 0.08), 0 0 44px rgba(43, 175, 170, 0.08);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 24px rgba(69, 226, 214, 0.95);
}

.orbit-ring::before {
  top: 15%;
  left: 18%;
}

.orbit-ring::after {
  right: 9%;
  bottom: 24%;
}

.orbit-ring-one {
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-two {
  inset: 20%;
  transform: rotateZ(54deg) translateZ(34px);
  opacity: 0.72;
  animation: orbitSpinReverse 13s linear infinite;
}

.orbit-core {
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(16, 24, 34, 0.76)),
    rgba(16, 24, 34, 0.8);
  box-shadow: 0 28px 70px -30px rgba(69, 226, 214, 0.8);
  transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(66px);
  animation: coreFloat 4.8s ease-in-out infinite;
}

.orbit-core img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(69, 226, 214, 0.56));
}

.orbit-core small {
  position: absolute;
  bottom: 18px;
  color: rgba(238, 245, 247, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.orbit-node {
  min-width: 86px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(16, 24, 34, 0.82);
  color: #d8fbf8;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 18px 48px -28px rgba(69, 226, 214, 0.85);
  transform: rotateX(-58deg) rotateZ(16deg) translateZ(92px);
  animation: nodeFloat 5.4s ease-in-out infinite;
}

.orbit-node-one {
  top: 12%;
  right: 18%;
}

.orbit-node-two {
  left: 8%;
  bottom: 28%;
  animation-delay: -1.8s;
}

.orbit-node-three {
  right: 4%;
  bottom: 10%;
  animation-delay: -3.2s;
}

.orbit-node-four {
  left: 20%;
  top: 10%;
  animation-delay: -4.1s;
}

.orbit-node-five {
  left: 48%;
  bottom: 2%;
  animation-delay: -2.5s;
}

@keyframes orbitAura {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.97) rotateZ(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.04) rotateZ(16deg);
  }
}

@keyframes orbitScan {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotateZ(-306deg) translateZ(34px);
  }
}

@keyframes coreFloat {
  0%, 100% {
    transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(66px) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(-58deg) rotateZ(16deg) translateZ(86px) translateY(-10px);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: rotateX(-58deg) rotateZ(16deg) translateZ(92px) translateY(0);
  }

  50% {
    transform: rotateX(-58deg) rotateZ(16deg) translateZ(112px) translateY(-9px);
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-bright);
  box-shadow: 0 0 18px rgba(69, 226, 214, 0.9);
}

.hero-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 6.1vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-title .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.95em) rotate(2deg);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

.hero-title .hero-word.is-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #c4d0d6;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.12), transparent 34%),
    rgba(16, 24, 34, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px -48px rgba(0, 0, 0, 0.9);
}

.hero-dashboard {
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(22, 32, 44, 0.92), rgba(9, 15, 23, 0.94));
  box-shadow:
    0 50px 100px -48px rgba(0, 0, 0, 0.96),
    0 0 0 1px rgba(69, 226, 214, 0.06);
  transform: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  animation: dashboardPanelIn 720ms var(--ease) both;
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 10%, rgba(69, 226, 214, 0.22), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(43, 175, 170, 0.16), transparent 34%);
  opacity: 0.8;
  filter: blur(18px);
}

.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 4px 13px;
}

.dashboard-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-search {
  min-width: 0;
  min-height: 34px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 11px;
  background: rgba(0, 0, 0, 0.3);
  color: #d9f7f5;
  font-size: 12px;
  font-weight: 750;
}

.dashboard-search svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--muted);
}

.dashboard-search svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.dashboard-search span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dashboard-search i {
  width: 2px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--teal-bright);
  animation: dashboardBlink 1s steps(1) infinite;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 12px;
}

.dashboard-card,
.dashboard-metrics > div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.dashboard-card {
  padding: 13px;
}

.dashboard-card-head {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-card-head strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-bright);
  font-size: 10px;
}

.dashboard-card-head strong i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: dashboardBlink 1.4s infinite;
}

.dashboard-serp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-row {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 420ms var(--ease), border-color 420ms ease, transform 420ms var(--ease);
}

.dashboard-row.is-target {
  border-color: rgba(69, 226, 214, 0.42);
  background: rgba(43, 175, 170, 0.1);
  transform: translateX(3px);
}

.dashboard-rank {
  min-width: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.dashboard-row.is-target .dashboard-rank {
  color: var(--teal-bright);
}

.dashboard-lines {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 5px;
}

.dashboard-lines i {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.dashboard-lines i:last-child {
  width: 56%;
}

.dashboard-row.is-target .dashboard-lines i {
  background: rgba(69, 226, 214, 0.42);
}

.dashboard-tag {
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 2px 6px;
  background: rgba(43, 175, 170, 0.14);
  color: var(--teal-bright);
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.dashboard-traffic {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.dashboard-traffic span {
  color: var(--text);
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}

.dashboard-traffic strong {
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 850;
}

.dashboard-chart {
  width: 100%;
  height: 90px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.dashboard-metrics > div {
  padding: 11px 12px;
}

.dashboard-counter {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.dashboard-metrics small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-metrics em {
  display: block;
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-metrics em i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  animation: dashboardTrack 3.2s var(--ease) infinite;
}

.dashboard-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(69, 226, 214, 0.34);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: rgba(9, 15, 23, 0.91);
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.88);
  animation: dashboardDrift 6.8s ease-in-out infinite;
}

.dashboard-chip-one {
  top: -16px;
  left: 26px;
}

.dashboard-chip-two {
  top: 33%;
  right: -28px;
  animation-delay: -1.2s;
}

.dashboard-chip-three {
  bottom: 34%;
  left: -30px;
  animation-delay: -2.1s;
}

.dashboard-chip-four {
  right: 42px;
  bottom: -16px;
  animation-delay: -3.2s;
}

@keyframes dashboardPanelIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes dashboardBlink {
  50% {
    opacity: 0;
  }
}

@keyframes dashboardTrack {
  0% {
    width: 0;
  }

  55%, 100% {
    width: var(--w);
  }
}

@keyframes dashboardDrift {
  0%, 100% {
    transform: translateZ(60px) translateY(0);
  }

  50% {
    transform: translateZ(60px) translateY(-10px);
  }
}

.panel-topline,
.signal-card,
.signal-grid > div,
.channel-stack span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-topline strong {
  color: var(--teal-bright);
}

.signal-card {
  margin-top: 12px;
  padding: 18px;
}

.signal-card span,
.signal-grid p {
  color: var(--muted);
  font-size: 13px;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  letter-spacing: 0;
}

.signal-card.is-active {
  position: relative;
  overflow: hidden;
}

.signal-card.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(69, 226, 214, 0.2), transparent);
  animation: scan 3.8s linear infinite;
}

@keyframes scan {
  to {
    transform: translateX(120%);
  }
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.signal-grid > div {
  padding: 16px;
}

.signal-grid span,
.signal-grid em {
  color: var(--teal-bright);
  font-size: 34px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
}

.signal-grid p {
  margin: 4px 0 0;
}

.channel-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.channel-stack span {
  padding: 8px 10px;
  color: #c8d6db;
  font-size: 12px;
}

.scroll-cue {
  display: none;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal-bright);
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  45% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  padding: 0 0 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 12, 19, 0) 0%, var(--bg-soft) 64%);
}

.trust-strip::before {
  display: none;
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 58px -44px rgba(0, 0, 0, 0.9);
}

.trust-item {
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(69, 226, 214, 0.05), transparent 42%),
    rgba(8, 16, 25, 0.88);
}

.trust-item strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.trust-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-section {
  overflow: hidden;
  margin-top: 0;
  padding-top: 54px;
  background:
    radial-gradient(circle at 18% 34%, rgba(69, 226, 214, 0.08), transparent 28%),
    radial-gradient(circle at 82% 56%, rgba(43, 175, 170, 0.08), transparent 34%),
    linear-gradient(180deg, var(--bg-soft) 0%, #081019 100%);
}

.platform-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.platform-stage {
  position: relative;
  width: min(100%, 980px);
  min-height: 540px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 54%),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.platform-stage::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 226, 214, 0.18), transparent 22%),
    radial-gradient(circle, rgba(69, 226, 214, 0.07), transparent 54%);
  filter: blur(2px);
  animation: platformPulse 5.2s ease-in-out infinite;
}

.platform-orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(69, 226, 214, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
}

.platform-orbit-line-one {
  width: 72%;
  height: 56%;
  animation: platformRing 18s linear infinite;
}

.platform-orbit-line-two {
  width: 54%;
  height: 38%;
  border-color: rgba(255, 255, 255, 0.1);
  animation: platformRing 24s linear infinite reverse;
}

.platform-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(7, 12, 19, 0.9)),
    var(--surface);
  box-shadow: 0 28px 70px -34px rgba(69, 226, 214, 0.9);
  transform: translate(-50%, -50%);
  animation: platformCoreFloat 4.8s ease-in-out infinite;
}

.platform-core img {
  width: 58px;
  height: 58px;
}

.platform-core span {
  margin-top: -16px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 850;
}

.platform-logo-cloud {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.platform-badge {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: var(--w, 148px);
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 248, 0.94));
  color: #081019;
  box-shadow: 0 30px 78px -48px rgba(0, 0, 0, 0.92);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
  animation: platformFloat 6.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.platform-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(69, 226, 214, 0.08), transparent 52%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.platform-badge:hover {
  border-color: rgba(69, 226, 214, 0.46);
  box-shadow: 0 32px 86px -36px rgba(69, 226, 214, 0.62);
  transform: translate(-50%, -50%) translateY(-8px) scale(1.04);
}

.platform-badge:hover::before {
  opacity: 1;
}

.platform-logo-frame {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 42px;
  display: grid;
  place-items: center;
}

.platform-badge.is-icon .platform-logo-frame {
  width: 58px;
  height: 58px;
}

.platform-badge.is-wide {
  width: 168px;
}

.platform-badge.is-dark {
  background:
    linear-gradient(180deg, rgba(16, 23, 35, 0.98), rgba(8, 14, 22, 0.96));
  color: var(--text);
}

.platform-logo-frame img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.platform-badge.is-icon .platform-logo-frame img {
  width: 58px;
  height: 58px;
}

.platform-name {
  position: relative;
  z-index: 1;
  color: #536069;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.platform-badge.is-dark .platform-name {
  color: rgba(238, 247, 250, 0.72);
}

@keyframes platformRing {
  to {
    transform: translate(-50%, -50%) rotate(352deg);
  }
}

@keyframes platformPulse {
  0%, 100% {
    opacity: 0.64;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes platformCoreFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes platformFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

.references-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(69, 226, 214, 0.1), transparent 30%),
    linear-gradient(180deg, #081019 0%, var(--bg) 100%);
}

.references-heading {
  max-width: 740px;
}

.reference-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.reference-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 20px;
  will-change: transform;
  animation: referenceScroll 76s linear infinite;
}

.reference-marquee:hover .reference-track {
  animation-play-state: paused;
}

.reference-logo {
  width: 196px;
  height: 108px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px -30px rgba(5, 10, 15, 0.76);
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.reference-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 226, 214, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 42px -34px rgba(69, 226, 214, 0.72);
}

.reference-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(5, 10, 15, 0.12));
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.reference-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.reference-stat strong {
  display: block;
  color: var(--teal-bright);
  font-size: 30px;
  line-height: 1;
}

.reference-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes referenceScroll {
  to {
    transform: translateX(-50%);
  }
}

.certificate-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 44%),
    var(--bg);
}

.certificate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
}

.certificate-copy {
  margin-bottom: 0;
}

.certificate-stage {
  position: relative;
  min-height: 520px;
  perspective: 1400px;
}

.certificate-stage::before {
  content: "";
  position: absolute;
  inset: 60px 10% 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 226, 214, 0.18), transparent 62%);
  filter: blur(12px);
  animation: certificateGlow 5.8s ease-in-out infinite;
}

.cert-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px 10px 54px 10px;
  padding: 30px;
  box-shadow: 0 34px 90px -48px rgba(0, 0, 0, 0.9);
  transform-style: preserve-3d;
  animation: certificateFloat 6.4s ease-in-out infinite;
}

.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.24) 46%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: certificateShine 5.6s ease-in-out infinite;
  pointer-events: none;
}

.cert-card-blue {
  z-index: 2;
  background: linear-gradient(155deg, #2e81ff, #1465ec);
  color: white;
  transform: translate(-96%, -48%) rotateY(18deg) rotateZ(-2deg);
  animation-delay: -1.3s;
}

.cert-card-white {
  z-index: 4;
  width: 340px;
  min-height: 430px;
  border-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: #f7f8fb;
  color: #10131a;
  transform: translate(-50%, -52%) translateZ(58px);
  box-shadow: 0 46px 110px -52px rgba(69, 226, 214, 0.72);
  animation-delay: -0.2s;
}

.cert-card-purple {
  z-index: 1;
  background: linear-gradient(155deg, #4330a8, #30228d);
  color: white;
  transform: translate(-2%, -48%) rotateY(-18deg) rotateZ(2deg);
  animation-delay: -2.6s;
}

.cert-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 8px solid currentColor;
  border-radius: 50%;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.cert-label {
  margin: 34px 0 0;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.cert-card h3 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.cert-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.2);
}

.cert-strip span {
  font-size: 13px;
  font-weight: 750;
}

.cert-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.cert-strip strong::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41f298;
  box-shadow: 0 0 14px rgba(65, 242, 152, 0.9);
}

.cert-name {
  margin: 72px 0 0;
  font-size: 31px;
  line-height: 0.98;
}

.cert-card-white .cert-label {
  margin-top: 0;
  color: #69727c;
}

.cert-card-white h3 {
  max-width: 250px;
  font-size: 42px;
}

.cert-card-white p:not(.cert-label) {
  max-width: 235px;
  margin: 168px 0 0;
  color: #5d6874;
  font-size: 13px;
  line-height: 1.45;
}

.cert-y {
  position: absolute;
  right: 42px;
  top: 132px;
  color: #f11818;
  font-size: 156px;
  font-weight: 400;
  line-height: 1;
}

.cert-foot {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #11151d;
  font-size: 18px;
  font-weight: 800;
}

@keyframes certificateFloat {
  0%, 100% {
    margin-top: 0;
  }

  50% {
    margin-top: -18px;
  }
}

@keyframes certificateShine {
  0%, 46% {
    transform: translateX(-120%);
  }

  68%, 100% {
    transform: translateX(120%);
  }
}

@keyframes certificateGlow {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.section {
  padding: 110px 0;
  position: relative;
}

.inner-page {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 78% 16%, rgba(69, 226, 214, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    var(--bg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  max-width: 860px;
}

.page-hero h1 {
  margin: 18px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero p.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: #bdd0d5;
  font-size: 19px;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--muted-2);
}

.breadcrumb a {
  color: #d8e6e9;
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--teal-bright);
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.1), transparent 38%),
    var(--surface);
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 226, 214, 0.34);
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 42%),
    var(--surface-2);
}

.page-card h2,
.page-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.page-card span {
  margin-top: 24px;
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 850;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.content-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.content-panel h2,
.content-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
}

.content-panel p {
  margin: 0;
  color: var(--muted);
}

.content-panel p + p {
  margin-top: 14px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #cbd7dc;
  background: rgba(255, 255, 255, 0.035);
}

.detail-sections {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(69, 226, 214, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #081019 100%);
}

.strategy-lab {
  display: grid;
  gap: 42px;
}

.strategy-lab-top {
  max-width: 840px;
}

.strategy-lab-top h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.strategy-lab-top > p:not(.section-kicker) {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.strategy-lab-body {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.strategy-visual,
.strategy-insight {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(16, 24, 34, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.strategy-visual {
  position: sticky;
  top: 104px;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(rgba(69, 226, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(69, 226, 214, 0.08), transparent 44%),
    rgba(11, 18, 27, 0.88);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.strategy-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(69, 226, 214, 0.08) 50%, transparent 60% 100%);
  transform: translateX(-115%);
  animation: strategySweep 7.5s var(--ease) infinite;
  pointer-events: none;
}

.strategy-screen-bar {
  position: relative;
  z-index: 2;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(3, 8, 14, 0.42);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.strategy-screen-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.strategy-screen-bar strong {
  min-width: 0;
  margin-left: auto;
  overflow: hidden;
  color: #cfe5e8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strategy-core-card {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 3;
  width: 168px;
  min-height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.18), rgba(255, 255, 255, 0.025)),
    rgba(7, 12, 19, 0.9);
  box-shadow: 0 32px 72px -42px rgba(69, 226, 214, 0.86);
  transform: translate(-50%, -50%);
  animation: strategyCore 5.6s ease-in-out infinite;
}

.strategy-core-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.32);
  border-radius: 12px;
  color: var(--teal-bright);
  background: rgba(69, 226, 214, 0.08);
  font-size: 18px;
  font-weight: 900;
}

.strategy-core-card strong,
.strategy-core-card small {
  display: block;
  text-align: center;
}

.strategy-core-card strong {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.strategy-core-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.strategy-flow-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(69, 226, 214, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.strategy-flow-line-one {
  left: 15%;
  right: 15%;
  top: 34%;
  height: 118px;
  transform: skewY(-7deg);
}

.strategy-flow-line-two {
  left: 22%;
  right: 22%;
  top: 48%;
  height: 136px;
  border-color: rgba(255, 255, 255, 0.1);
  transform: skewY(8deg);
}

.strategy-node-grid {
  position: absolute;
  inset: 86px 24px 138px;
  z-index: 4;
  pointer-events: none;
}

.strategy-node {
  position: absolute;
  min-width: 118px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(69, 226, 214, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(7, 12, 19, 0.86);
  color: #dff8f6;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 18px 42px -28px rgba(69, 226, 214, 0.86);
  animation: strategyNode 5.8s ease-in-out infinite;
}

.strategy-node strong {
  color: var(--teal-bright);
  font-size: 10px;
}

.strategy-node-1 {
  left: 4%;
  top: 10%;
}

.strategy-node-2 {
  right: 2%;
  top: 26%;
  animation-delay: -1.4s;
}

.strategy-node-3 {
  left: 8%;
  bottom: 10%;
  animation-delay: -2.6s;
}

.strategy-node-4 {
  right: 7%;
  bottom: 2%;
  animation-delay: -3.8s;
}

.strategy-readout {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strategy-readout span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(3, 8, 14, 0.48);
}

.strategy-readout strong,
.strategy-readout small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strategy-readout strong {
  color: var(--teal-bright);
  font-size: 11px;
  text-transform: uppercase;
}

.strategy-readout small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.strategy-insights {
  display: grid;
  gap: 12px;
}

.strategy-insight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.strategy-insight::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-bright), rgba(69, 226, 214, 0));
  opacity: 0.68;
}

.strategy-insight:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 226, 214, 0.32);
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(16, 24, 34, 0.84);
}

.strategy-insight-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.3);
  border-radius: 50%;
  color: var(--teal-bright);
  background: rgba(69, 226, 214, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.strategy-insight-kicker {
  margin: 0 0 8px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.strategy-insight h3 {
  margin: 0;
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
}

.strategy-insight p:not(.strategy-insight-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.66;
}

@keyframes strategySweep {
  0%, 35% {
    transform: translateX(-115%);
  }

  75%, 100% {
    transform: translateX(115%);
  }
}

@keyframes strategyCore {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

@keyframes strategyNode {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.detail-narrative-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: start;
}

.detail-narrative-copy {
  position: sticky;
  top: 116px;
  min-width: 0;
}

.detail-narrative-copy h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.detail-narrative-copy > p:not(.section-kicker) {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.detail-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.detail-signal-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(69, 226, 214, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.032);
  color: #d7e6e9;
  font-size: 12px;
  font-weight: 800;
}

.detail-signal-list strong {
  color: var(--teal-bright);
  font-size: 11px;
}

.detail-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 32px;
}

.detail-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(69, 226, 214, 0), rgba(69, 226, 214, 0.56), rgba(69, 226, 214, 0));
}

.detail-timeline::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 18px;
  width: 9px;
  height: 74px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, var(--teal-bright), transparent);
  filter: blur(0.4px);
  animation: narrativeScan 6s ease-in-out infinite;
}

.narrative-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.018)),
    rgba(16, 24, 34, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 58px -48px rgba(0, 0, 0, 0.88);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.narrative-card::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 31px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--teal-bright);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 8px rgba(69, 226, 214, 0.08), 0 0 24px rgba(69, 226, 214, 0.7);
}

.narrative-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 0 42%, rgba(69, 226, 214, 0.08) 50%, transparent 58% 100%);
  transition: transform 780ms var(--ease);
  pointer-events: none;
}

.narrative-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 226, 214, 0.32);
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(16, 24, 34, 0.86);
}

.narrative-card:hover::after {
  transform: translateX(120%);
}

.narrative-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.narrative-index,
.narrative-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.narrative-index {
  min-width: 42px;
  border: 1px solid rgba(69, 226, 214, 0.28);
  background: rgba(69, 226, 214, 0.08);
  color: var(--teal-bright);
}

.narrative-kicker {
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.032);
  text-transform: uppercase;
}

.narrative-card h3 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.narrative-text {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.narrative-text p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
}

@keyframes narrativeScan {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }

  12%, 82% {
    opacity: 0.9;
  }

  50% {
    transform: translateY(260px);
  }
}

.detail-feature-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.detail-platform-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(69, 226, 214, 0.1), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(43, 175, 170, 0.08), transparent 34%),
    var(--bg);
}

.detail-card-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.075), transparent 44%),
    rgba(255, 255, 255, 0.032);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.detail-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 226, 214, 0.34);
  background:
    linear-gradient(160deg, rgba(69, 226, 214, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.044);
}

.detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 999px;
  color: var(--teal-bright);
  background: rgba(69, 226, 214, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.detail-card h3,
.faq-item h3 {
  margin: 26px 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-item h3 {
  margin-top: 0;
}

.detail-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.detail-why-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 42%),
    var(--bg);
}

.detail-faq-section {
  background:
    radial-gradient(circle at 78% 0%, rgba(69, 226, 214, 0.1), transparent 32%),
    var(--bg-soft);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 40%),
    var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.content-block h2,
.contact-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:last-child,
.content-block p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.1), transparent 36%),
    var(--surface);
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(69, 226, 214, 0.18), transparent 28%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-bright), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 226, 214, 0.38);
  background:
    linear-gradient(145deg, rgba(43, 175, 170, 0.16), transparent 40%),
    var(--surface-2);
  box-shadow: 0 34px 70px -48px rgba(69, 226, 214, 0.72);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-index {
  position: relative;
  z-index: 2;
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.2), rgba(16, 24, 34, 0.76)),
    var(--surface-2);
  box-shadow: 0 22px 46px -26px rgba(69, 226, 214, 0.8);
  transform: rotateX(12deg) rotateY(-16deg) translateZ(0);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 12px;
  background: rgba(69, 226, 214, 0.08);
  transform: translateZ(-12px);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal-bright);
  filter: drop-shadow(0 0 12px rgba(69, 226, 214, 0.45));
}

.service-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  border-color: rgba(69, 226, 214, 0.52);
  box-shadow: 0 28px 58px -28px rgba(69, 226, 214, 0.95);
  transform: rotateX(0deg) rotateY(0deg) translateY(-4px) scale(1.04);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 42px 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 28px 80px -54px rgba(0, 0, 0, 0.95);
}

.market-intelligence-frame {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 38px;
  background:
    radial-gradient(circle at 28% 18%, rgba(69, 226, 214, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(21, 33, 45, 0.9), rgba(7, 12, 19, 0.96));
}

.market-intelligence-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(69, 226, 214, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.market-panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(7, 12, 19, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 38px 90px -58px rgba(0, 0, 0, 0.95);
}

.market-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.market-panel-top strong {
  color: var(--teal-bright);
}

.market-chart {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  display: block;
  overflow: visible;
}

.market-grid-lines path {
  fill: none;
  stroke: rgba(69, 226, 214, 0.13);
  stroke-width: 1;
}

.market-area {
  fill: url(#marketAreaGradient);
  opacity: 0;
  animation: marketAreaIn 1.2s var(--ease) 260ms forwards;
}

.market-line,
.market-line-shadow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-line-shadow {
  stroke: rgba(69, 226, 214, 0.18);
  stroke-width: 20;
  filter: blur(10px);
}

.market-line {
  stroke: url(#marketLineGradient);
  stroke-width: 8;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  filter: drop-shadow(0 0 16px rgba(69, 226, 214, 0.42));
  animation: marketLineDraw 2.2s var(--ease) 160ms forwards, marketLinePulse 3.8s ease-in-out 2.3s infinite;
}

.market-nodes circle {
  fill: var(--teal-bright);
  stroke: rgba(7, 12, 19, 0.94);
  stroke-width: 5;
  filter: drop-shadow(0 0 14px rgba(69, 226, 214, 0.85));
  transform-origin: center;
  opacity: 0;
  animation: marketNodeIn 520ms var(--ease) forwards, marketNodePulse 2.4s ease-in-out 1.8s infinite;
}

.market-nodes circle:nth-child(1) {
  animation-delay: 420ms, 1.8s;
}

.market-nodes circle:nth-child(2) {
  animation-delay: 780ms, 2s;
}

.market-nodes circle:nth-child(3) {
  animation-delay: 1140ms, 2.2s;
}

.market-nodes circle:nth-child(4) {
  animation-delay: 1500ms, 2.4s;
}

.market-scan {
  fill: none;
  stroke: rgba(69, 226, 214, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 14 18;
  transform-origin: 338px 204px;
  animation: marketScanRotate 12s linear infinite;
}

.market-tags {
  position: absolute;
  inset: 64px 18px auto;
  pointer-events: none;
}

.market-tags span {
  position: absolute;
  border: 1px solid rgba(69, 226, 214, 0.3);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(7, 12, 19, 0.72);
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 12px 28px -20px rgba(69, 226, 214, 0.9);
  animation: marketTagFloat 5.8s ease-in-out infinite;
}

.market-tags span:nth-child(1) {
  left: 7%;
  top: 18px;
}

.market-tags span:nth-child(2) {
  right: 8%;
  top: 82px;
  animation-delay: -1.5s;
}

.market-tags span:nth-child(3) {
  left: 11%;
  top: 234px;
  animation-delay: -2.8s;
}

.market-tags span:nth-child(4) {
  right: 16%;
  top: 260px;
  animation-delay: -4.1s;
}

.market-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.market-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.035);
}

.market-metrics strong,
.market-metrics small {
  display: block;
}

.market-metrics strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.market-metrics small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

@keyframes marketLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes marketLinePulse {
  0%, 100% {
    stroke-width: 8;
  }

  50% {
    stroke-width: 9.5;
  }
}

@keyframes marketAreaIn {
  to {
    opacity: 1;
  }
}

@keyframes marketNodeIn {
  from {
    opacity: 0;
    scale: 0.35;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes marketNodePulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

@keyframes marketScanRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marketTagFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

.media-frame > img,
.industry-board img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.growth-system-frame {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(69, 226, 214, 0.16), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(43, 175, 170, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(16, 24, 34, 0.96), rgba(7, 12, 19, 0.98));
}

.growth-system-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 226, 214, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 48%, transparent 76%);
  pointer-events: none;
}

.growth-system {
  position: relative;
  width: min(100%, 560px);
  min-height: 360px;
}

.growth-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(69, 226, 214, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: growthOrbit 18s linear infinite;
}

.growth-orbit-one {
  width: 310px;
  height: 310px;
}

.growth-orbit-two {
  width: 430px;
  height: 230px;
  border-color: rgba(69, 226, 214, 0.12);
  animation-duration: 24s;
  animation-direction: reverse;
}

.growth-core {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 3;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(69, 226, 214, 0.34);
  border-radius: 50%;
  color: var(--text);
  background:
    radial-gradient(circle, rgba(69, 226, 214, 0.2), transparent 66%),
    rgba(7, 12, 19, 0.86);
  box-shadow:
    0 0 0 12px rgba(69, 226, 214, 0.035),
    0 24px 60px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  animation: growthPulse 4.8s ease-in-out infinite;
}

.growth-core img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.growth-core span {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.growth-core small {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-node,
.growth-system-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 20, 30, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.growth-node {
  min-width: 146px;
  padding: 13px 15px;
  animation: growthFloat 6s ease-in-out infinite;
}

.growth-node span,
.growth-system-card span {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.growth-node small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.growth-node::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 226, 214, 0.46));
}

.growth-node-strategy {
  left: 4%;
  top: 26%;
}

.growth-node-strategy::before {
  right: -74px;
}

.growth-node-local {
  right: 0;
  top: 28%;
  animation-delay: -1.3s;
}

.growth-node-local::before {
  left: -74px;
  transform: rotate(180deg);
}

.growth-node-performance {
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  animation-delay: -2.2s;
}

.growth-node-performance::before {
  left: 50%;
  top: -34px;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(69, 226, 214, 0.46));
}

.growth-signal {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 22px rgba(69, 226, 214, 0.7);
  animation: growthSignal 7s linear infinite;
}

.growth-signal-one {
  left: 19%;
  top: 30%;
}

.growth-signal-two {
  right: 18%;
  bottom: 27%;
  animation-delay: -3.2s;
}

.growth-system-card {
  min-width: 122px;
  padding: 13px 14px;
}

.growth-system-card span {
  color: var(--muted);
  font-size: 11px;
}

.growth-system-card strong {
  display: block;
  margin-top: 2px;
  color: var(--teal-bright);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.growth-system-card-left {
  left: 0;
  bottom: 18%;
}

.growth-system-card-right {
  right: 2%;
  bottom: 16%;
}

.growth-stack {
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(76%, 390px);
  display: grid;
  gap: 10px;
  transform: translateX(-50%);
}

.growth-stack span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 226, 214, 0.12), rgba(69, 226, 214, 0.68), rgba(69, 226, 214, 0.12));
  animation: growthScan 3.8s ease-in-out infinite;
}

.growth-stack span:nth-child(2) {
  width: 76%;
  animation-delay: -1.1s;
}

.growth-stack span:nth-child(3) {
  width: 58%;
  animation-delay: -2.1s;
}

@keyframes growthOrbit {
  to {
    rotate: 360deg;
  }
}

@keyframes growthPulse {
  0%, 100% {
    box-shadow:
      0 0 0 12px rgba(69, 226, 214, 0.035),
      0 24px 60px rgba(0, 0, 0, 0.34);
  }

  50% {
    box-shadow:
      0 0 0 20px rgba(69, 226, 214, 0.055),
      0 30px 70px rgba(0, 0, 0, 0.42);
  }
}

@keyframes growthFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes growthSignal {
  0%, 100% {
    opacity: 0.42;
    scale: 0.86;
  }

  50% {
    opacity: 1;
    scale: 1.12;
  }
}

@keyframes growthScan {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.72);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.market-map-frame {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 24% 22%, rgba(69, 226, 214, 0.17), transparent 36%),
    radial-gradient(circle at 72% 74%, rgba(43, 175, 170, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(16, 24, 34, 0.96), rgba(7, 12, 19, 0.98));
}

.market-map-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 226, 214, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 52% 48%, #000 0 56%, transparent 82%);
  pointer-events: none;
}

.market-map {
  position: relative;
  width: 100%;
  min-height: 422px;
}

.map-panel-head {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: inline-grid;
  gap: 2px;
  border: 1px solid rgba(69, 226, 214, 0.22);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: rgba(7, 12, 19, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.map-panel-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.map-panel-head small {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdt-map {
  position: absolute;
  inset: 28px 0 0;
  width: 100%;
  height: calc(100% - 26px);
  overflow: visible;
}

.market-map-img {
  position: absolute;
  inset: 58px 0 50px;
  z-index: 2;
  width: 100%;
  height: calc(100% - 108px);
  object-fit: contain;
  object-position: 50% 50%;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.market-ops-frame {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 14%, rgba(69, 226, 214, 0.18), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(43, 175, 170, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(16, 24, 34, 0.96), rgba(7, 12, 19, 0.98));
}

.market-ops-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 226, 214, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, transparent 84%);
  pointer-events: none;
}

.market-ops {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 410px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
}

.ops-topbar {
  display: inline-grid;
  justify-self: start;
  gap: 2px;
  border: 1px solid rgba(69, 226, 214, 0.22);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: rgba(7, 12, 19, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.ops-topbar span,
.ops-market-card strong,
.ops-step strong {
  color: var(--text);
  font-weight: 850;
  letter-spacing: 0;
}

.ops-topbar span {
  font-size: 13px;
}

.ops-topbar small {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-command {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 158px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ops-market-card,
.ops-step {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 22, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.ops-market-card {
  position: relative;
  z-index: 2;
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
}

.ops-market-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 226, 214, 0.18), rgba(69, 226, 214, 0.9));
}

.ops-market-card span,
.ops-step span,
.ops-channel-rail span,
.ops-hub small {
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-market-card strong {
  font-size: 24px;
  line-height: 1;
}

.ops-market-card small,
.ops-step small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.ops-hub {
  position: relative;
  z-index: 4;
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(69, 226, 214, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 226, 214, 0.2), transparent 66%),
    rgba(7, 12, 19, 0.88);
  box-shadow:
    0 0 0 12px rgba(69, 226, 214, 0.035),
    0 24px 60px rgba(0, 0, 0, 0.34);
  animation: opsPulse 4.8s ease-in-out infinite;
}

.ops-hub::before,
.ops-hub::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(69, 226, 214, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.ops-hub::before {
  inset: -30px;
}

.ops-hub::after {
  inset: -58px;
  opacity: 0.52;
}

.ops-hub img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ops-hub span {
  margin-top: 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.ops-hub small {
  margin-top: 2px;
  font-size: 9px;
}

.ops-flow {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(69, 226, 214, 0.74), transparent);
  overflow: hidden;
}

.ops-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  animation: opsScan 2.8s linear infinite;
}

.ops-flow-left {
  left: 23%;
  right: 51%;
}

.ops-flow-right {
  left: 51%;
  right: 23%;
}

.ops-flow-right::after {
  animation-delay: -1.3s;
}

.ops-pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ops-step {
  min-height: 112px;
  padding: 15px;
}

.ops-step span {
  display: inline-flex;
  margin-bottom: 16px;
}

.ops-step strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.ops-channel-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ops-channel-rail span {
  border: 1px solid rgba(69, 226, 214, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(69, 226, 214, 0.07);
  color: #bfecea;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes opsPulse {
  0%, 100% {
    box-shadow:
      0 0 0 12px rgba(69, 226, 214, 0.035),
      0 24px 60px rgba(0, 0, 0, 0.34);
  }

  50% {
    box-shadow:
      0 0 0 20px rgba(69, 226, 214, 0.06),
      0 30px 70px rgba(0, 0, 0, 0.42);
  }
}

@keyframes opsScan {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

.map-region {
  fill: url("#mapRegionGradient");
  stroke: rgba(69, 226, 214, 0.62);
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
}

.map-region-russia {
  fill-opacity: 1;
}

.map-region-kazakhstan,
.map-region-uzbekistan,
.map-region-azerbaijan,
.map-region-turkiye {
  fill: rgba(69, 226, 214, 0.12);
  stroke: rgba(69, 226, 214, 0.5);
}

.map-region-turkiye {
  fill: rgba(69, 226, 214, 0.1);
}

.map-boundary {
  fill: none;
  stroke: rgba(211, 249, 247, 0.16);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 3 8;
  vector-effect: non-scaling-stroke;
}

.map-route {
  fill: none;
  stroke: rgba(69, 226, 214, 0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  vector-effect: non-scaling-stroke;
  animation: mapRoute 12s linear infinite;
}

.route-secondary {
  opacity: 0.54;
  animation-duration: 16s;
}

.route-tertiary {
  opacity: 0.7;
  animation-duration: 10s;
}

.map-point circle:first-child {
  fill: var(--teal-bright);
}

.map-point circle:last-child {
  fill: rgba(69, 226, 214, 0.12);
  stroke: rgba(69, 226, 214, 0.64);
  stroke-width: 1;
  animation: mapPulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.map-point-moscow circle:last-child {
  animation-delay: -0.4s;
}

.map-point-kazakhstan circle:last-child {
  animation-delay: -0.9s;
}

.map-point-uzbekistan circle:last-child {
  animation-delay: -1.3s;
}

.map-point-azerbaijan circle:last-child {
  animation-delay: -1.7s;
}

.map-point-siberia circle:last-child {
  animation-delay: -2.1s;
}

.map-country-title {
  fill: rgba(238, 245, 247, 0.78);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.map-country-title-small {
  fill: rgba(238, 245, 247, 0.64);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.map-callout {
  animation: mapLabelFloat 5.8s ease-in-out infinite;
  pointer-events: none;
}

.map-callout:nth-of-type(2n) {
  animation-delay: -1.7s;
}

.map-callout rect {
  fill: rgba(8, 14, 22, 0.88);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.map-callout text {
  fill: #d7f7f5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.map-label,
.map-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 22, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.map-label {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #d7f7f5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  animation: mapLabelFloat 5.8s ease-in-out infinite;
}

.map-label-turkiye {
  left: 10%;
  bottom: 5%;
}

.map-label-moscow {
  left: 29%;
  top: 28%;
  animation-delay: -1s;
}

.map-label-kazakhstan {
  left: 48%;
  top: 57%;
  animation-delay: -1.8s;
}

.map-label-uzbekistan {
  left: 38%;
  bottom: 10%;
  animation-delay: -2.4s;
}

.map-label-azerbaijan {
  left: 19%;
  bottom: 16%;
  animation-delay: -3s;
}

.map-card {
  min-width: 136px;
  padding: 13px 14px;
}

.map-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.map-card strong {
  display: block;
  margin-top: 4px;
  color: var(--teal-bright);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.map-card-left {
  right: 1%;
  top: 5%;
}

.map-card-right {
  right: 3%;
  bottom: 6%;
}

@keyframes mapRoute {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes mapPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes mapLabelFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

.content-block {
  max-width: 570px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #c6d3d8;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(69, 226, 214, 0.14);
  border: 1px solid rgba(69, 226, 214, 0.45);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--teal-bright);
  border-bottom: 2px solid var(--teal-bright);
  transform: rotate(42deg);
}

.industry-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.sector-matrix {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(69, 226, 214, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(21, 33, 45, 0.76), rgba(7, 12, 19, 0.95));
}

.sector-matrix::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69, 226, 214, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 226, 214, 0.075) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.sector-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(69, 226, 214, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sectorOrbit 18s linear infinite;
}

.sector-orbit::before,
.sector-orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(69, 226, 214, 0.12);
  border-radius: inherit;
}

.sector-orbit::after {
  inset: 31%;
}

.sector-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 226, 214, 0.3);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.16), rgba(7, 12, 19, 0.78)),
    rgba(16, 24, 34, 0.82);
  box-shadow: 0 28px 62px -32px rgba(69, 226, 214, 0.78);
  transform: translate(-50%, -50%);
  animation: sectorCorePulse 4.2s ease-in-out infinite;
}

.sector-core img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.sector-core span {
  margin-top: -18px;
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-node {
  position: absolute;
  z-index: 3;
  width: 154px;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(69, 226, 214, 0.26);
  border-radius: var(--radius);
  padding: 13px 15px;
  background: rgba(7, 12, 19, 0.76);
  box-shadow: 0 20px 46px -34px rgba(69, 226, 214, 0.78);
  animation: sectorNodeFloat 5.6s ease-in-out infinite;
}

.sector-node span,
.sector-node small {
  display: block;
}

.sector-node span {
  color: #e9f6f7;
  font-size: 14px;
  font-weight: 850;
}

.sector-node small {
  color: var(--muted);
  font-size: 11px;
}

.sector-node-tourism {
  left: 10%;
  top: 18%;
}

.sector-node-health {
  right: 10%;
  top: 18%;
  animation-delay: -1.2s;
}

.sector-node-realestate {
  left: 7%;
  top: 46%;
  animation-delay: -2.1s;
}

.sector-node-commerce {
  right: 7%;
  top: 46%;
  animation-delay: -3s;
}

.sector-node-export {
  left: 17%;
  bottom: 13%;
  animation-delay: -3.8s;
}

.sector-node-logistics {
  right: 17%;
  bottom: 13%;
  animation-delay: -4.5s;
}

.sector-signal {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 22px rgba(69, 226, 214, 0.95);
  offset-path: path("M96 120 C190 48 330 54 430 120 C538 194 526 382 394 438 C264 496 112 428 86 292 C74 230 54 166 96 120");
  animation: sectorSignal 9s linear infinite;
}

.sector-signal-two {
  animation-delay: -3s;
}

.sector-signal-three {
  animation-delay: -6s;
}

@keyframes sectorOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes sectorCorePulse {
  0%, 100% {
    scale: 1;
  }

  50% {
    scale: 1.05;
  }
}

@keyframes sectorNodeFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes sectorSignal {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

.industry-list {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.industry-list article {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: #cbd7dc;
  background: rgba(255, 255, 255, 0.035);
}

.industry-list article h3 {
  margin: 0 0 7px;
  font-size: 16px;
  letter-spacing: 0;
}

.industry-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 226, 214, 0.52), transparent);
  opacity: 0.68;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(17, 25, 35, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 54px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(69, 226, 214, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(69, 226, 214, 0.26), transparent 42%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(69, 226, 214, 0.72);
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 0 0 7px rgba(69, 226, 214, 0.08);
  transform: translateX(-50%);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 226, 214, 0.42);
  background:
    linear-gradient(180deg, rgba(69, 226, 214, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(17, 25, 35, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 34px 70px rgba(0, 0, 0, 0.26);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border: 1px solid rgba(69, 226, 214, 0.32);
  border-radius: 999px;
  background: rgba(69, 226, 214, 0.08);
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(69, 226, 214, 0.22);
  border-radius: 16px;
  color: var(--teal-bright);
  background:
    linear-gradient(145deg, rgba(69, 226, 214, 0.14), rgba(69, 226, 214, 0.03)),
    rgba(4, 12, 20, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  position: relative;
  z-index: 1;
  margin: 54px 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.process-step p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal-bright);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 36px;
  height: 1px;
  align-self: center;
  margin-left: 12px;
  background: currentColor;
  transition: width 200ms var(--ease);
}

.text-link:hover::after {
  width: 56px;
}

.contact-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(69, 226, 214, 0.14), transparent 32%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points {
  margin-top: 24px;
}

.contact-cards a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #d4e0e4;
  background: rgba(255, 255, 255, 0.035);
}

.lead-form {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(43, 175, 170, 0.12), transparent 42%),
    var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  margin-bottom: 14px;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: #c9d6da;
  font-size: 13px;
  font-weight: 750;
}

.form-row label span {
  color: var(--teal-bright);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43, 175, 170, 0.14);
  background: rgba(0, 0, 0, 0.3);
}

.form-row small {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: 12px;
}

.form-row.is-error input,
.form-row.is-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 115, 92, 0.12);
}

.form-row.is-error small {
  display: block;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--teal-bright);
  font-size: 13px;
}

.form-status.is-error {
  color: var(--danger);
}

.final-cta {
  padding-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 58px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(69, 226, 214, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(43, 175, 170, 0.18), rgba(255, 255, 255, 0.035) 46%, rgba(11, 16, 25, 0.92));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 226, 214, 0.12);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cta-band p {
  position: relative;
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
}

.cta-band .btn {
  position: relative;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 78px 0 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 226, 214, 0.14), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(43, 175, 170, 0.1), transparent 32%),
    #060a10;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 68%);
  pointer-events: none;
}

.footer-shell,
.footer-bottom,
.footer-credit {
  position: relative;
}

.footer-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 14, 22, 0.76);
  box-shadow: 0 28px 90px -56px rgba(0, 0, 0, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 2fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-panel p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-tags a,
.footer-tags span {
  border: 1px solid rgba(69, 226, 214, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(69, 226, 214, 0.07);
  color: #bfecea;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.footer-tags a:hover,
.footer-tags a:focus-visible {
  border-color: rgba(69, 226, 214, 0.38);
  background: rgba(69, 226, 214, 0.13);
  color: var(--teal-bright);
  transform: translateY(-1px);
}

.footer-nav-panel {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1.2fr;
  gap: 28px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column > a {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--teal-bright);
}

.footer-contact-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-contact-link {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-contact-link + .footer-contact-link {
  margin-top: 10px;
}

.footer-contact-link:hover {
  border-color: rgba(69, 226, 214, 0.34);
  background: rgba(69, 226, 214, 0.08);
  color: var(--text);
}

.footer-contact-icon,
.social-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(69, 226, 214, 0.1);
  color: var(--teal-bright);
}

.footer-contact-icon svg,
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-icon-fill svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-whatsapp-link .footer-contact-icon {
  background: rgba(37, 211, 102, 0.13);
  color: #48e084;
}

.footer-contact-link strong,
.footer-contact-link small {
  display: block;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-contact-link strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.footer-contact-link small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
}

.footer-social-title {
  margin-top: 18px;
}

.site-footer .footer-social {
  display: flex;
  gap: 8px;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.site-footer .footer-social a:hover {
  border-color: rgba(69, 226, 214, 0.35);
  background: rgba(69, 226, 214, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-social a:first-child .social-icon svg,
.footer-social a:last-child .social-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.018);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-bottom-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-bottom-links a:hover {
  color: var(--teal-bright);
}

.footer-credit {
  margin-top: 14px;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-credit a {
  display: inline-block;
  margin-top: 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.whatsapp-float {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 98;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
  transform: translateZ(0);
  transition: opacity 220ms ease, transform 220ms var(--ease), filter 220ms ease;
  isolation: isolate;
}

.whatsapp-float-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 13px 8px 11px;
  background:
    linear-gradient(135deg, rgba(14, 24, 32, 0.94), rgba(8, 14, 22, 0.86)),
    rgba(8, 14, 22, 0.84);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 220ms var(--ease), border-color 220ms ease, color 220ms ease;
}

.whatsapp-float-label::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13), 0 0 16px rgba(37, 211, 102, 0.7);
  animation: whatsapp-dot 1.9s ease-in-out infinite;
}

.whatsapp-float-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(9, 17, 25, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(135deg, #39df78, #1fb65c 52%, #128c7e);
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.28),
    inset 0 -8px 18px rgba(0, 0, 0, 0.18);
  color: #fff;
  animation: whatsapp-breathe 3.4s var(--ease) infinite;
  will-change: transform;
}

.whatsapp-float-icon::before,
.whatsapp-float-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.42);
  opacity: 0;
  animation: whatsapp-pulse 2.8s ease-out infinite;
}

.whatsapp-float-icon::after {
  animation-delay: 1.4s;
}

.whatsapp-float-icon svg {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  fill: currentColor;
  transform: translate(0.2px, 0.2px);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.46));
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  border-color: rgba(69, 226, 214, 0.34);
  color: var(--teal-bright);
  transform: translateX(-2px);
}

.whatsapp-float:hover .whatsapp-float-icon svg,
.whatsapp-float:focus-visible .whatsapp-float-icon svg {
  transform: translate(0.2px, 0.2px) rotate(-5deg) scale(1.04);
}

body.menu-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.035);
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.82);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes whatsapp-dot {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-action {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 1040px) {
  .hero-title {
    font-size: 58px;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 42px;
  }

  .hero-layout,
  .split-layout,
  .split-layout.reverse,
  .contact-grid,
  .content-grid,
  .strategy-lab-body,
  .detail-narrative-grid,
  .certificate-layout {
    grid-template-columns: 1fr;
  }

  .strategy-visual {
    position: relative;
    top: auto;
  }

  .detail-narrative-copy {
    position: relative;
    top: auto;
  }

  .detail-narrative-copy h2,
  .detail-narrative-copy > p:not(.section-kicker) {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-dashboard {
    transform: none;
    animation: none;
  }

  .growth-system-frame {
    max-width: 760px;
  }

  .market-map-frame {
    max-width: 760px;
  }

  .dashboard-chip {
    transform: none;
    animation: none;
  }

  .hero-orbit {
    right: -170px;
    width: 560px;
    opacity: 0.32;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .page-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-stage {
    min-height: 560px;
  }

  .certificate-copy {
    max-width: 760px;
  }

  .certificate-stage {
    min-height: 470px;
  }

  .cert-card {
    width: 280px;
  }

  .cert-card-white {
    width: 320px;
  }

  .industry-board {
    grid-template-columns: 1fr;
  }

  .sector-matrix {
    min-height: 520px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line::before,
  .process-step::after {
    display: none;
  }

  .process-step {
    min-height: 260px;
  }

  .process-step h3 {
    margin-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-action,
  .language-switch {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .mobile-menu.is-open {
    display: block;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    height: 68px;
    padding: 0 16px;
  }

  .mobile-menu.is-open {
    top: 68px;
    height: calc(100dvh - 68px);
    max-height: calc(100vh - 68px);
    padding: 12px 16px 22px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .hero-layout {
    gap: 30px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 14px;
    width: 100%;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-chip {
    position: static;
    display: inline-flex;
    margin: 12px 8px 0 0;
  }

  .hero-orbit {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
    padding: 32px 0 30px;
    background:
      radial-gradient(circle at 20% 0%, rgba(69, 226, 214, 0.12), transparent 42%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  }

  .trust-grid {
    border-radius: var(--radius);
  }

  .trust-item {
    padding: 20px;
  }

  .platform-section {
    padding-top: 44px;
  }

  .reference-marquee {
    -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .reference-track {
    gap: 10px;
    padding: 14px;
    animation-duration: 56s;
  }

  .reference-logo {
    width: 148px;
    height: 88px;
    padding: 14px;
  }

  .reference-logo img {
    max-height: 54px;
  }

  .reference-grid {
    grid-template-columns: 1fr;
  }

  .strategy-lab {
    gap: 28px;
  }

  .strategy-lab-top h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .strategy-visual {
    min-height: 420px;
  }

  .strategy-readout {
    grid-template-columns: 1fr;
  }

  .strategy-insight {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .strategy-insight-index {
    width: 38px;
    height: 38px;
  }

  .market-intelligence-frame {
    min-height: auto;
    padding: 18px;
  }

  .market-panel {
    padding: 14px;
  }

  .market-panel-top {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .market-tags {
    display: none;
  }

  .market-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-metrics span {
    padding: 11px 12px;
  }

  .market-metrics strong {
    font-size: 18px;
  }

  .growth-system-frame {
    min-height: 430px;
    padding: 18px;
  }

  .growth-system-frame::before {
    inset: 12px;
    background-size: 42px 42px;
  }

  .growth-system {
    min-height: 390px;
  }

  .growth-orbit-one {
    width: 220px;
    height: 220px;
  }

  .growth-orbit-two {
    width: 300px;
    height: 180px;
  }

  .growth-core {
    width: 124px;
    height: 124px;
  }

  .growth-core img {
    width: 34px;
    height: 34px;
  }

  .growth-core span {
    font-size: 13px;
  }

  .growth-node {
    min-width: 128px;
    padding: 11px 12px;
  }

  .growth-node::before {
    display: none;
  }

  .growth-node-strategy {
    left: 0;
    top: 18%;
  }

  .growth-node-local {
    right: 0;
    top: 18%;
  }

  .growth-node-performance {
    bottom: 1%;
  }

  .growth-system-card-left {
    left: 0;
    bottom: 22%;
  }

  .growth-system-card-right {
    right: 0;
    bottom: 22%;
  }

  .growth-stack {
    width: 70%;
  }

  .market-map-frame {
    min-height: 460px;
    padding: 16px;
  }

  .market-ops-frame {
    min-height: auto;
    padding: 16px;
  }

  .market-ops-frame.reveal {
    opacity: 1;
    transform: none;
  }

  .market-ops {
    min-height: auto;
    gap: 12px;
  }

  .ops-command {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    gap: 10px;
  }

  .ops-hub {
    grid-column: 1 / -1;
    justify-self: center;
    order: -1;
    width: 112px;
    height: 112px;
  }

  .ops-hub::before {
    inset: -14px;
  }

  .ops-hub::after {
    display: none;
  }

  .ops-flow {
    display: none;
  }

  .ops-topbar {
    width: 100%;
    padding: 9px 10px;
  }

  .ops-topbar span {
    font-size: 12px;
  }

  .ops-topbar small {
    font-size: 9px;
  }

  .ops-market-card {
    min-height: 82px;
    padding: 12px;
  }

  .ops-market-card strong {
    font-size: 18px;
  }

  .ops-market-card small {
    display: none;
  }

  .ops-pipeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .ops-step {
    min-height: 82px;
    padding: 11px 8px;
  }

  .ops-step span {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .ops-step strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .ops-step small {
    display: none;
  }

  .ops-channel-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ops-channel-rail span {
    padding: 7px 6px;
    text-align: center;
  }

  .market-map-frame::before {
    inset: 12px;
    background-size: 42px 42px;
  }

  .market-map {
    min-height: 428px;
  }

  .bdt-map {
    inset: 62px 0 34px;
    height: calc(100% - 96px);
  }

  .market-map-img {
    inset: 76px 0 60px;
    width: 100%;
    height: calc(100% - 136px);
    object-fit: contain;
  }

  .map-panel-head {
    left: 0;
    top: 0;
  }

  .map-card {
    min-width: 116px;
    padding: 11px 12px;
  }

  .map-card strong {
    font-size: 16px;
  }

  .map-card-left {
    right: 0;
    top: 0;
  }

  .map-card-right {
    right: 0;
    bottom: 0;
  }

  .map-label {
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
  }

  .map-country-title {
    font-size: 18px;
  }

  .map-country-title-small,
  .map-callout text {
    font-size: 10px;
  }

  .certificate-layout {
    gap: 36px;
  }

  .certificate-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    perspective: none;
  }

  .certificate-stage::before {
    display: none;
  }

  .cert-card,
  .cert-card-blue,
  .cert-card-white,
  .cert-card-purple {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 300px;
    transform: none;
    animation: none;
  }

  .cert-card::after {
    display: none;
  }

  .cert-card-white p:not(.cert-label) {
    margin-top: 96px;
  }

  .cert-y {
    right: 26px;
    top: 98px;
    font-size: 118px;
  }

  .cert-name {
    margin-top: 48px;
  }

  .platform-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .platform-stage {
    min-height: auto;
    overflow: hidden;
    padding: 14px;
  }

  .platform-stage::before,
  .platform-orbit-line,
  .platform-core {
    display: none;
  }

  .platform-logo-cloud {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .platform-badge {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 104px;
    gap: 8px;
    padding: 12px 10px;
    border-radius: var(--radius);
    transform: none;
    animation: none;
  }

  .platform-badge:hover {
    transform: translateY(-4px);
  }

  .platform-badge.is-wide {
    width: auto;
  }

  .platform-logo-frame {
    width: min(100%, 104px);
    height: 40px;
  }

  .platform-badge.is-icon .platform-logo-frame {
    width: 54px;
    height: 54px;
  }

  .platform-badge.is-icon .platform-logo-frame img {
    width: 54px;
    height: 54px;
  }

  .platform-name {
    font-size: 10px;
  }

  .trust-grid,
  .service-grid,
  .page-card-grid,
  .detail-card-grid,
  .faq-grid,
  .feature-list,
  .process-line,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    gap: 12px;
  }

  .process-step {
    min-height: auto;
    padding: 22px;
  }

  .process-step h3 {
    margin: 28px 0 10px;
    font-size: 19px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .footer-shell {
    padding: 22px;
  }

  .footer-nav-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section {
    padding: 70px 0;
  }

  .inner-page {
    padding-top: 68px;
  }

  .page-hero {
    padding: 52px 0 62px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .page-hero p.lead {
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    top: 20px;
    right: 20px;
  }

  .service-icon svg {
    width: 25px;
    height: 25px;
  }

  .industry-list {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .sector-matrix {
    min-height: 420px;
  }

  .sector-core {
    width: 92px;
    height: 92px;
  }

  .sector-core img {
    width: 38px;
    height: 38px;
  }

  .sector-node {
    width: 132px;
    min-height: 62px;
    padding: 11px 12px;
  }

  .sector-node span {
    font-size: 12px;
  }

  .sector-node small {
    font-size: 10px;
  }

  .sector-node-tourism,
  .sector-node-realestate {
    left: 5%;
  }

  .sector-node-health,
  .sector-node-commerce {
    right: 5%;
  }

  .sector-node-export {
    left: 10%;
  }

  .sector-node-logistics {
    right: 10%;
  }

  .lead-form {
    padding: 20px;
  }

  .cta-band {
    padding: 42px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    gap: 10px;
  }

  .detail-signal-list {
    grid-template-columns: 1fr;
  }

  .strategy-visual {
    min-height: 370px;
    padding: 16px;
  }

  .strategy-core-card {
    width: 138px;
    min-height: 118px;
    padding: 14px;
  }

  .strategy-core-card span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .strategy-node-grid {
    inset: 72px 14px 126px;
  }

  .strategy-node {
    min-width: 100px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .strategy-node-1,
  .strategy-node-3 {
    left: 0;
  }

  .strategy-node-2,
  .strategy-node-4 {
    right: 0;
  }

  .strategy-readout {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding: 0 16px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-bar {
    align-items: flex-start;
  }

  .dashboard-search {
    margin-left: 4px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .sector-matrix {
    min-height: 360px;
  }

  .sector-orbit {
    width: 76%;
  }

  .sector-core {
    width: 78px;
    height: 78px;
  }

  .sector-core img {
    width: 32px;
    height: 32px;
  }

  .sector-node {
    width: 112px;
    min-height: 56px;
    padding: 9px 10px;
  }

  .sector-node span {
    font-size: 11px;
  }

  .sector-node small {
    display: none;
  }

  .platform-logo-cloud {
    grid-template-columns: 1fr;
  }

  .platform-badge {
    min-height: 92px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 14px;
  }

  .platform-logo-frame,
  .platform-badge.is-icon .platform-logo-frame {
    flex: 0 0 72px;
    width: 72px;
    height: 44px;
  }

  .platform-badge.is-icon .platform-logo-frame img {
    width: 44px;
    height: 44px;
  }

  .platform-name {
    font-size: 12px;
    text-align: left;
    min-width: 0;
  }

  .growth-system-frame {
    min-height: 500px;
  }

  .growth-system {
    min-height: 450px;
  }

  .growth-stack {
    top: 5%;
    width: 82%;
  }

  .growth-node {
    min-width: 132px;
  }

  .growth-node-strategy {
    top: 17%;
  }

  .growth-node-local {
    top: 17%;
  }

  .growth-core {
    top: 48%;
  }

  .growth-system-card {
    min-width: 112px;
    padding: 11px 12px;
  }

  .growth-system-card strong {
    font-size: 22px;
  }

  .growth-system-card-left {
    left: 4%;
    bottom: 22%;
  }

  .growth-system-card-right {
    right: 4%;
    bottom: 22%;
  }

  .growth-node-performance {
    bottom: 0;
  }

  .market-map-frame {
    min-height: 520px;
  }

  .market-ops-frame {
    padding: 14px;
  }

  .ops-hub {
    width: 96px;
    height: 96px;
  }

  .ops-hub img {
    width: 30px;
    height: 30px;
  }

  .ops-hub span {
    font-size: 11px;
  }

  .ops-hub small {
    display: none;
  }

  .ops-market-card {
    min-height: 74px;
    padding: 10px;
  }

  .ops-market-card span {
    font-size: 9px;
  }

  .ops-market-card strong {
    font-size: 16px;
  }

  .ops-step {
    min-height: 72px;
    padding: 10px 6px;
  }

  .ops-step strong {
    font-size: 10px;
  }

  .ops-channel-rail span {
    font-size: 9px;
  }

  .market-map {
    min-height: 488px;
  }

  .bdt-map {
    inset: 76px 0 56px;
    height: calc(100% - 132px);
  }

  .market-map-img {
    inset: 104px 0 82px;
    width: 100%;
    height: calc(100% - 186px);
    object-fit: contain;
  }

  .map-panel-head {
    max-width: 148px;
  }

  .map-card-left {
    top: 0;
  }

  .map-card-right {
    right: auto;
    left: 0;
    bottom: 0;
  }

  .map-card {
    min-width: 112px;
  }

  .map-country-title {
    font-size: 16px;
  }

  .map-country-title-small,
  .map-callout text {
    font-size: 9px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .section-heading h2,
  .content-block h2,
  .contact-copy h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .hero-text {
    font-size: 15.5px;
  }

  .footer-shell,
  .lead-form,
  .content-panel,
  .narrative-card {
    padding: 18px;
  }

  .detail-timeline {
    padding-left: 24px;
  }

  .narrative-card::before {
    left: -29px;
  }

  .whatsapp-float {
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .whatsapp-float-label {
    padding: 7px 10px;
    font-size: 11px;
  }

  .whatsapp-float-icon {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-icon svg {
    width: 31px;
    height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
