:root {
  --navy-950: #04111c;
  --navy-900: #071827;
  --navy-850: #0a2134;
  --navy-800: #0d2940;
  --blue-600: #2d91c4;
  --blue-500: #55a6ce;
  --blue-400: #75b8da;
  --cyan-300: #9edcf2;
  --ink: #0d2031;
  --muted: #607184;
  --line: #dce6ed;
  --surface: #f5f8fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(5, 24, 39, 0.08);
  --shadow-lg: 0 28px 80px rgba(5, 24, 39, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-600);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, height 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(13, 41, 64, 0.08);
  box-shadow: 0 8px 30px rgba(5, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 54px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 700;
  color: #21394b;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--blue-600);
  transition: transform 0.25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 21px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(7, 24, 39, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 158px 0 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(82, 168, 211, 0.13), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(35, 106, 143, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 106, 143, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  right: -260px;
  top: 90px;
  background: rgba(85, 166, 206, 0.12);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  left: -120px;
  bottom: 70px;
  background: rgba(85, 166, 206, 0.1);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: 70px;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 13px;
  border: 1px solid rgba(45, 145, 196, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1d6e97;
  background: rgba(85, 166, 206, 0.08);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-600);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(45, 145, 196, 0.4);
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.65); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue-600);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--navy-900);
}

.hero h1 span {
  color: var(--blue-600);
}

.hero-description {
  max-width: 620px;
  margin: 27px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 30px rgba(7, 24, 39, 0.18);
}

.button-primary:hover {
  background: var(--blue-600);
  box-shadow: 0 18px 36px rgba(45, 145, 196, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.button-secondary:hover {
  border-color: rgba(45, 145, 196, 0.44);
  color: var(--blue-600);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  gap: 0;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding-right: 18px;
}

.hero-proof div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--navy-900);
}

.hero-proof span {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  padding: 48px 26px 42px;
}

.visual-shell {
  position: relative;
  min-height: 536px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 48, 70, 0.96), rgba(4, 17, 28, 0.98)),
    var(--navy-900);
  box-shadow: 0 40px 90px rgba(5, 24, 39, 0.26);
}

.visual-shell::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -110px;
  border-radius: 50%;
  background: rgba(85, 166, 206, 0.14);
  filter: blur(4px);
}

.visual-topbar {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-brand,
.online-badge {
  display: flex;
  align-items: center;
}

.topbar-brand {
  gap: 10px;
  font-size: 12px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  font-size: 10px;
  background: var(--blue-600);
}

.online-badge {
  gap: 7px;
  font-size: 9px;
  color: #9bc3d6;
}

.online-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ce2a4;
  box-shadow: 0 0 0 4px rgba(92, 226, 164, 0.1);
}

.visual-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.network-score {
  display: flex;
  align-items: center;
  gap: 20px;
}

.score-ring {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue-500) 0 99.9%, rgba(255, 255, 255, 0.08) 99.9% 100%);
}

.score-ring::before {
  content: "";
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #0d293f;
}

.score-ring span {
  position: absolute;
  font-size: 21px;
  font-weight: 800;
}

.score-ring small {
  font-size: 10px;
  color: #9bc3d6;
}

.network-score > div:last-child {
  display: flex;
  flex-direction: column;
}

.network-score small {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #7ca3b8;
}

.network-score strong {
  margin-top: 3px;
  font-size: 21px;
}

.network-score div:last-child span {
  font-size: 10px;
  color: #9bc3d6;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.visual-metrics > div {
  min-height: 95px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

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

.visual-metrics span {
  font-size: 9px;
  color: #86a8ba;
}

.visual-metrics strong {
  margin: 3px 0 2px;
  font-size: 23px;
}

.visual-metrics small {
  font-size: 8px;
  color: #6e91a5;
}

.network-flow {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  padding: 15px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #a5c0ce;
}

.flow-node svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(117, 184, 218, 0.24);
}

.flow-line i {
  position: absolute;
  top: -1px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan-300);
  box-shadow: 0 0 8px rgba(158, 220, 242, 0.9);
  animation: dataFlow 2s linear infinite;
}

@keyframes dataFlow {
  from { transform: translateX(-18px); }
  to { transform: translateX(52px); }
}

.activity-card {
  margin-top: 17px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.activity-head {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.activity-head small {
  color: #7397ab;
}

.chart-bars {
  height: 54px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 10px;
}

.chart-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(45, 145, 196, 0.25), var(--blue-500));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-one {
  top: 5px;
  right: -17px;
}

.floating-card-two {
  left: -18px;
  bottom: 2px;
  animation-delay: -2.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue-600);
  background: rgba(85, 166, 206, 0.1);
}

.floating-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 10px;
  color: var(--navy-900);
}

.floating-card span {
  font-size: 8px;
  color: var(--muted);
}

.industry-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7b8a97;
}

.industry-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-400);
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-heading h2,
.partner-copy h2,
.process-copy h2,
.about-copy h2,
.cta-layout h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 430px;
  padding: 31px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
  min-height: 390px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 145, 196, 0.34);
  box-shadow: var(--shadow-sm);
}

.service-featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 166, 206, 0.24), transparent 40%),
    var(--navy-900);
  box-shadow: 0 24px 54px rgba(7, 24, 39, 0.18);
}

.service-number {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #9aaaae;
}

.service-featured .service-number {
  color: rgba(255, 255, 255, 0.38);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-600);
  background: rgba(85, 166, 206, 0.1);
}

.service-featured .service-icon {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 25px 0 12px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-card > p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.service-featured > p {
  color: #afc0cb;
}

.service-card ul {
  margin: 23px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-featured ul {
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 17px;
  font-size: 11px;
  color: #526779;
}

.service-featured li {
  color: #b8c7d0;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
}

.partner-section {
  overflow: hidden;
  background: var(--surface);
}

.partner-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  min-height: 480px;
  padding: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(85, 166, 206, 0.2), transparent 36%),
    linear-gradient(140deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-lg);
}

.partner-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 55%);
}

.partner-copy,
.partner-product-card {
  position: relative;
  z-index: 1;
}

.partner-copy h2 {
  max-width: 620px;
}

.partner-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: #afc2cf;
}

.partner-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.partner-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #d7e7ef;
}

.partner-benefits svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-product-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.huawei-wordmark {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.huawei-wordmark span {
  margin-left: 3px;
  color: var(--blue-400);
}

.product-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.product-stack > div {
  padding: 15px 16px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.product-stack b,
.product-stack span {
  display: block;
}

.product-stack b {
  font-size: 11px;
}

.product-stack span {
  margin-top: 2px;
  font-size: 9px;
  color: #8faabb;
}

.technology-heading {
  margin: 85px 0 32px;
  text-align: center;
}

.technology-heading h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.025em;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #e2eaef;
  border-radius: 16px;
  text-align: center;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 145, 196, 0.34);
  box-shadow: var(--shadow-sm);
}

.brand-card strong {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #24394a;
}

.brand-card span {
  margin-top: -3px;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-600);
}

.brand-card small {
  margin-top: 7px;
  font-size: 8px;
  color: #7b8c9a;
}

.brand-card.primary {
  color: var(--white);
  border-color: transparent;
  background: var(--navy-900);
}

.brand-card.primary strong {
  color: var(--white);
}

.brand-card.primary small {
  color: #91aab9;
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.process-note {
  display: flex;
  gap: 15px;
  margin-top: 33px;
  padding: 20px;
  border: 1px solid rgba(45, 145, 196, 0.18);
  border-radius: 16px;
  background: rgba(85, 166, 206, 0.06);
}

.process-note svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-note strong,
.process-note span {
  display: block;
}

.process-note strong {
  font-size: 12px;
}

.process-note span {
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li:first-child {
  padding-top: 0;
}

.process-steps > li > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-600);
  background: rgba(85, 166, 206, 0.09);
}

.process-steps b {
  display: block;
  margin-top: 2px;
  font-size: 19px;
}

.process-steps p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.about-section {
  background: var(--surface);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 520px;
  padding: 54px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(85, 166, 206, 0.28), transparent 35%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.about-panel::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,0.025), 0 0 0 90px rgba(255,255,255,0.018);
}

.about-panel > img {
  position: relative;
  z-index: 1;
  width: 275px;
  max-width: 80%;
  filter: brightness(0) invert(1);
}

.about-panel > p {
  position: relative;
  z-index: 1;
  margin: 21px 0 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #a6bcc8;
}

.about-stat-grid {
  position: absolute;
  z-index: 1;
  left: 54px;
  right: 54px;
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.about-stat-grid > div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.about-stat-grid strong,
.about-stat-grid span {
  display: block;
}

.about-stat-grid strong {
  font-size: 16px;
}

.about-stat-grid span {
  margin-top: 3px;
  font-size: 8px;
  color: #8fa8b6;
}

.about-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.about-points > div > span {
  font-size: 10px;
  font-weight: 800;
  color: var(--blue-600);
}

.about-points p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.about-points b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  color: var(--ink);
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-600);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 70%);
}

.cta-layout {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  padding-block: 74px;
}

.cta-layout .eyebrow {
  color: #d9f2ff;
}

.cta-layout h2 {
  max-width: 700px;
}

.cta-layout > div:first-child > p:last-child {
  max-width: 700px;
  margin: 21px 0 0;
  color: #e0f1fa;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(4, 17, 28, 0.15);
}

.button-light:hover {
  color: var(--blue-600);
}

.email-link {
  font-size: 15px;
  font-weight: 800;
}

.cta-actions > span {
  max-width: 280px;
  font-size: 10px;
  color: #d9eef8;
}

.site-footer {
  padding: 72px 0 23px;
  color: #a9bac5;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 70px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  font-size: 11px;
  color: #8299a7;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid p {
  margin: 4px 0;
  font-size: 10px;
  color: #8299a7;
}

.footer-grid a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  color: #657d8c;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #20b865;
  box-shadow: 0 14px 30px rgba(32, 184, 101, 0.28);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .hero-visual {
    padding-inline: 0;
  }

  .floating-card-one {
    right: -6px;
  }

  .floating-card-two {
    left: -8px;
  }

  .partner-feature {
    padding: 50px;
    gap: 42px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-header.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(13, 41, 64, 0.08);
    backdrop-filter: blur(14px);
  }

  .brand {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 45px rgba(5, 24, 39, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 6px !important;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-layout,
  .partner-feature,
  .process-layout,
  .about-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 50px;
  }

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

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .visual-shell {
    min-height: 510px;
  }

  .industry-row {
    margin-top: 70px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }

  .partner-feature {
    padding: 50px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-copy {
    position: static;
  }

  .process-layout,
  .about-layout {
    gap: 55px;
  }

  .cta-layout {
    gap: 35px;
  }

  .cta-actions {
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 0;
    border: 0;
  }

  .hero-proof div + div {
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    padding: 35px 0 30px;
  }

  .visual-shell {
    min-height: 486px;
    border-radius: 22px;
  }

  .visual-topbar {
    padding-inline: 17px;
  }

  .online-badge {
    font-size: 0;
  }

  .online-badge::after {
    content: "Online";
    font-size: 9px;
  }

  .visual-content {
    padding: 18px;
  }

  .network-flow {
    grid-template-columns: 1fr 25px 1fr 25px 1fr;
  }

  .floating-card {
    min-width: 180px;
    padding: 10px;
  }

  .floating-card-one {
    top: 0;
    right: -4px;
  }

  .floating-card-two {
    left: -4px;
    bottom: 0;
  }

  .floating-icon {
    width: 34px;
    height: 34px;
  }

  .industry-row i {
    display: none;
  }

  .industry-row {
    justify-content: flex-start;
    gap: 9px;
  }

  .industry-row span {
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .partner-copy h2,
  .process-copy h2,
  .about-copy h2,
  .cta-layout h2 {
    font-size: 36px;
  }

  .service-grid {
    display: block;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    min-height: auto;
    margin-bottom: 14px;
  }

  .partner-feature {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .partner-product-card {
    padding: 22px;
  }

  .partner-benefits {
    display: grid;
    gap: 11px;
  }

  .technology-heading {
    margin-top: 65px;
  }

  .technology-heading h3 {
    font-size: 26px;
  }

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

  .brand-card {
    min-height: 112px;
    padding: 14px;
  }

  .process-steps li {
    grid-template-columns: 54px 1fr;
    gap: 15px;
  }

  .process-steps > li > span {
    width: 48px;
    height: 48px;
  }

  .process-steps b {
    font-size: 16px;
  }

  .about-panel {
    min-height: 500px;
    padding: 38px 28px;
  }

  .about-stat-grid {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .cta-layout {
    min-height: 460px;
    padding-block: 62px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .brand-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    min-height: 665px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

/* Clients */
.clients-section {
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.clients-section .section-heading h2,
.clients-section .section-heading p {
  color: var(--white);
}

.clients-section .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.clients-heading {
  margin-bottom: 42px;
}

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

.client-card {
  min-height: 132px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 184, 218, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.client-mark {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-300), var(--blue-500));
}

.client-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.client-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.client-note {
  margin: 22px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .client-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 110px; }
}
