:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --surface-2: #f7fbff;
  --navy: #0a1f44;
  --navy-2: #102b59;
  --text: #16314f;
  --muted: #5e6f83;
  --line: #dbe7f5;
  --blue: #0879cf;
  --blue-2: #1491f0;
  --blue-dark: #03589d;
  --blue-soft: #e8f4ff;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(8, 69, 130, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f6fbff 0%, #eef6fd 42%, #f8fbfe 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(219,231,245,.9);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { flex: 0 0 auto; }
.brand-logo { width: 182px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  border-radius: 999px;
}
.lang-btn,
.btn {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.lang-btn {
  min-width: 48px;
  height: 44px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}
.btn-small { min-height: 42px; padding: 0 18px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  box-shadow: 0 12px 28px rgba(8,121,207,.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -40%;
  width: 24%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation: ctaShine 4.8s ease-in-out infinite;
  pointer-events: none;
}
.btn-ghost {
  background: rgba(8, 121, 207, .08);
  color: var(--blue-dark);
  border: 1px solid rgba(8,121,207,.14);
}
.btn-light {
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.btn-ghost-light {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
}
.lang-btn:hover,
.btn:hover { transform: translateY(-2px); }

.hero {
  padding: 78px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 42px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--blue-dark);
}
.eyebrow.light { color: #dff3ff; }
.hero h1,
.section-heading h2,
.banner-copy h2,
.support-copy h2,
.why-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.8rem, 5vw, 5.3rem); max-width: 10ch; }
.hero-lead,
.section-heading p,
.banner-copy p,
.support-copy p,
.why-copy p,
.contact-copy p,
.service-card p,
.process-step p,
.benefit p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-lead { font-size: 1.1rem; max-width: 56ch; margin: 18px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}
.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #26c770;
  box-shadow: 0 0 0 0 rgba(38,199,112,.42);
  animation: livePing 1.8s ease-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}
.glass-card,
.service-card,
.process-step,
.benefit,
.support-console,
.contact-form,
.floating-card,
.resolution-toast {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219,231,245,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-main {
  padding: 26px;
  border-radius: 30px;
}
.card-topline,
.metric-row,
.console-header,
.support-ticket,
.support-status-flow,
.banner-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-topline {
  gap: 14px;
  font-weight: 700;
  color: var(--navy);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(38,199,112,.1);
  color: #168451;
}
.status > span,
.network-live > span,
.live-support-badge span,
.banner-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26c770;
  display: inline-block;
}
.network-map {
  position: relative;
  height: 260px;
  margin-top: 20px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #dff1ff 0%, #eef7ff 38%, #e2f1ff 100%);
  overflow: hidden;
  border: 1px solid rgba(8,121,207,.12);
}
.network-live {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(8,121,207,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 8px 22px rgba(0,67,125,.08);
  color: var(--blue-dark);
  font-size: .68rem;
  letter-spacing: .02em;
}
.signal-sweep {
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  width: 22%;
  left: -35%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  filter: blur(2px);
  animation: signalSweep 4.6s ease-in-out infinite;
}
.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.network-map path,
.signal-line {
  fill: none;
  stroke: rgba(8, 121, 207, .56);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 12;
  animation: dataLine 10s linear infinite;
}
.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4ec0ff, var(--blue));
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 0 0 10px rgba(8,121,207,.08);
}
.node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(8,121,207,.18);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}
.node-a { left: 58px; top: 116px; }
.node-b { left: 155px; top: 48px; }
.node-c { left: 260px; top: 125px; }
.node-d { left: 370px; top: 52px; }
.node-e { right: 46px; top: 136px; }
.data-packet {
  fill: #fff;
  stroke: #0b8ee4;
  stroke-width: 3;
  filter: drop-shadow(0 0 7px rgba(11,142,228,.95));
}
.packet-two { fill: #8bd2ff; stroke: #fff; }
.metric-row {
  gap: 12px;
  margin-top: 18px;
}
.metric-row div {
  flex: 1 1 0;
  padding: 16px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafdff 0%, #edf6fe 100%);
  border: 1px solid rgba(8,121,207,.08);
  text-align: center;
}
.metric-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
}
.metric-row span {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  color: var(--muted);
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
}
.float-one { left: -14px; bottom: 26px; animation: cardFloat 4.2s ease-in-out infinite; }
.float-two { right: -12px; top: 18px; animation: cardFloat 4.8s ease-in-out -1.2s infinite; }
.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card small { color: var(--muted); margin-top: 4px; }

.it-banner {
  margin: 18px 0 0;
  background: linear-gradient(135deg, #041a44 0%, #0b4a84 48%, #1390ee 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.it-banner::before,
.it-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0));
  filter: blur(6px);
}
.it-banner::before { width: 340px; height: 340px; top: -140px; left: -100px; }
.it-banner::after { width: 320px; height: 320px; right: -80px; bottom: -180px; }
.banner-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  padding: 60px 0 30px;
  align-items: center;
}
.banner-copy h2 { color: #fff; font-size: clamp(2rem, 3vw, 3.2rem); max-width: 12ch; }
.banner-copy p { color: rgba(255,255,255,.88); margin-top: 16px; max-width: 58ch; }
.banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }








.banner-stage {
  position: relative;
  min-height: 360px;
}
.banner-dashboard {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(2, 13, 41, .32);
}
.banner-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .3;
  border-radius: inherit;
  pointer-events: none;
}
.banner-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px rgba(5,17,56,.22);
}
.chip-support { top: 18px; left: 18px; animation: chipFloat 4.2s ease-in-out infinite; }
.chip-cloud { top: 28px; right: 26px; animation: chipFloat 5s ease-in-out -1s infinite; }
.chip-cyber { bottom: 26px; right: 18px; animation: chipFloat 4.8s ease-in-out -.8s infinite; }
.banner-dashboard-showcase {
  overflow: hidden;
}
.banner-image-shell {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(130, 219, 255, .28);
  background: linear-gradient(180deg, rgba(3,16,50,.92), rgba(8,41,98,.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 24px 48px rgba(1,10,31,.34), 0 0 45px rgba(21,147,255,.16);
  animation: dashboardFloat 6.6s ease-in-out infinite;
}
.banner-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(76,213,255,.7), rgba(255,255,255,.1), rgba(76,213,255,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.banner-dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.01);
}
.banner-image-scan {
  position: absolute;
  inset: -25% auto -25% -18%;
  width: 18%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  filter: blur(1px);
  mix-blend-mode: screen;
  animation: imageSweep 5.6s ease-in-out infinite;
}
.banner-image-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .32;
  pointer-events: none;
}
.dashboard-animated-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.dash-ping {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137,238,255,1) 0%, rgba(66,183,255,.92) 45%, rgba(66,183,255,0) 72%);
  box-shadow: 0 0 12px rgba(73,201,255,.9);
  animation: overlayPing 2.8s ease-in-out infinite;
}
.dash-ping::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(110,229,255,.55);
  animation: pingRing 2.8s ease-out infinite;
}
.ping-a { left: 15.5%; top: 60%; animation-delay: 0s; }
.ping-b { left: 22.7%; top: 66.5%; animation-delay: .35s; }
.ping-c { left: 46.8%; top: 61.8%; animation-delay: .8s; }
.ping-d { left: 58.8%; top: 66.8%; animation-delay: 1.2s; }
.ping-e { left: 80.8%; top: 58.3%; animation-delay: 1.5s; }
.ping-f { left: 74.9%; top: 69.2%; animation-delay: .6s; }
.ping-g { left: 89.8%; top: 64.3%; animation-delay: 1.85s; }
.dash-graph-overlay {
  position: absolute;
  right: 8.3%;
  top: 21.5%;
  width: 33.5%;
  height: 19.5%;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 3.4%;
}
.graph-bar {
  display: block;
  width: 15%;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, rgba(84,240,255,.52), rgba(2,131,255,.16));
  filter: drop-shadow(0 0 10px rgba(49,198,255,.28));
  transform-origin: bottom center;
  animation: graphPulse 3.2s ease-in-out infinite;
}
.bar-1 { height: 34%; animation-delay: 0s; }
.bar-2 { height: 62%; animation-delay: .2s; }
.bar-3 { height: 88%; animation-delay: .4s; }
.bar-4 { height: 58%; animation-delay: .6s; }
.bar-5 { height: 33%; animation-delay: .8s; }
.dash-server-signal {
  position: absolute;
  bottom: 8.8%;
  width: 14%;
  height: 5.5%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(76,215,255,.0), rgba(76,215,255,.46), rgba(76,215,255,.0));
  filter: blur(1px);
  animation: serverSweep 2.8s linear infinite;
}
.signal-1 { left: 8%; animation-delay: 0s; }
.signal-2 { left: 19.2%; animation-delay: .4s; }
.signal-3 { left: 30.5%; animation-delay: .8s; }
.signal-4 { left: 41.8%; animation-delay: 1.2s; }
.dash-lock-pulse {
  position: absolute;
  right: 25.3%;
  bottom: 8%;
  width: 18.5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,223,255,.12) 0%, rgba(61,179,255,.10) 34%, rgba(61,179,255,0) 68%);
  animation: shieldPulse 3.8s ease-in-out infinite;
}
.dash-lock-pulse::before,
.dash-lock-pulse::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(87,223,255,.28);
  animation: shieldRing 3.8s ease-out infinite;
}
.dash-lock-pulse::after {
  inset: 4%;
  animation-delay: .8s;
}
.banner-mini-card {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4,19,58,.84), rgba(7,38,92,.82));
  border: 1px solid rgba(126,217,255,.24);
  box-shadow: 0 14px 28px rgba(3, 14, 39, .26);
  color: #fff;
  backdrop-filter: blur(10px);
}
.banner-mini-card strong,
.banner-mini-card small { display: block; }
.banner-mini-card strong { font-size: 1.15rem; }
.banner-mini-card small { margin-top: 4px; color: rgba(226,241,255,.82); }
.mini-card-left {
  left: -8px;
  bottom: 30px;
  animation: cardFloat 5s ease-in-out infinite;
}
.mini-card-right {
  right: 10px;
  bottom: 42px;
  animation: cardFloat 5.4s ease-in-out -1.1s infinite;
}
.banner-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,220,255,.95), rgba(99,220,255,.18) 40%, rgba(99,220,255,0) 68%);
  filter: blur(2px);
  opacity: .9;
}
.orb-one {
  width: 18px;
  height: 18px;
  top: 110px;
  right: 28px;
  animation: techPulse 3.6s ease-in-out infinite;
}
.orb-two {
  width: 14px;
  height: 14px;
  left: 24px;
  bottom: 118px;
  animation: techPulse 3.8s ease-in-out -1.2s infinite;
}
.orb-three {
  width: 10px;
  height: 10px;
  top: 52%;
  left: 48%;
  animation: techPulse 3.2s ease-in-out -.7s infinite;
}


.banner-screen {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,24,66,.94), rgba(9,40,95,.96));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 26px 46px rgba(1,10,31,.3);
}
.banner-screen::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -28%;
  width: 24%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: screenShine 6s ease-in-out infinite;
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}
.screen-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.screen-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  padding: 18px;
}
.screen-card {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 132px;
}
.card-terminal { display: grid; gap: 12px; }
.terminal-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(89,186,255,.95), rgba(255,255,255,.12));
  animation: terminalBlink 3.4s ease-in-out infinite;
}
.w-90 { width: 90%; } .w-80 { width: 80%; } .w-70 { width: 70%; } .w-55 { width: 55%; }
.card-metrics { display: grid; gap: 18px; align-content: center; }
.metric-bars { display: flex; align-items: end; gap: 10px; height: 74px; }
.metric-bars span {
  flex: 1 1 0;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #40c1ff, #0b79d1);
  animation: barBounce 3.2s ease-in-out infinite;
}
.metric-bars span:nth-child(1) { height: 54%; }
.metric-bars span:nth-child(2) { height: 86%; animation-delay: -.8s; }
.metric-bars span:nth-child(3) { height: 68%; animation-delay: -1.3s; }
.metric-badge strong,
.metric-badge small { display: block; }
.metric-badge strong { font-size: 1.4rem; color: #fff; }
.metric-badge small { color: rgba(255,255,255,.7); }
.card-network {
  position: relative;
  grid-column: 1 / -1;
  min-height: 150px;
  overflow: hidden;
}
.card-network svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.screen-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #65d4ff;
  box-shadow: 0 0 0 8px rgba(101,212,255,.08), 0 0 16px rgba(101,212,255,.8);
}
.n1 { left: 22px; bottom: 34px; }
.n2 { left: 88px; top: 28px; }
.n3 { left: 156px; bottom: 58px; }
.n4 { right: 24px; top: 34px; }
.banner-bottom-row {
  padding: 0 18px 18px;
  gap: 18px;
}
.server-stack {
  display: flex;
  gap: 10px;
}
.server-stack div {
  width: 64px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(64,193,255,.95), rgba(255,255,255,.18));
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.server-stack div::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26c770;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(38,199,112,.45);
  animation: livePing 2.1s ease-out infinite;
}
.banner-shield {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}
.banner-shield svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.partners-panel {
  position: relative;
  z-index: 4;
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 16px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 34px rgba(2, 13, 41, .18);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.partners-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.10) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: partnersSweep 7s ease-in-out infinite;
  pointer-events: none;
}
.partners-panel h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.partners-logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px 14px;
}
.partner-logo-card {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.11));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 18px rgba(11, 56, 97, .10);
  color: #eff7ff;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.partner-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 56, 97, .16);
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.14));
}
.partner-logo-card strong {
  font-size: 1rem;
  white-space: nowrap;
}
.cisco-logo { color: #8dd8ff; flex-direction: column; gap: 0; }
.cisco-bars { font-size: .48rem; letter-spacing: .08em; transform: scaleY(1.5); }
.cisco-logo strong { font-size: 1rem; letter-spacing: .12em; }
.fortinet-logo { color: #ff7676; }
.fortinet-mark { font-size: 1.5rem; line-height: 1; }
.fortinet-logo strong { font-size: .95rem; letter-spacing: .04em; }
.microsoft-logo { color: #f1f5f9; }
.microsoft-mark {
  width: 25px;
  height: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.microsoft-mark i { display: block; background: #737b84; }
.microsoft-logo strong { font-weight: 500; }
.dell-logo { color: #86d9ff; }
.dell-logo strong { letter-spacing: .08em; }
.hp-logo strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1887c9;
  font-size: 1.55rem;
  font-style: italic;
  text-transform: lowercase;
}
.lenovo-logo { color: #ff8888; }
.lenovo-logo strong { font-size: 1rem; }
.vmware-logo { color: #f3f6f9; }
.vmware-logo strong { font-weight: 500; text-transform: lowercase; }
.logitech-logo { color: #ffffff; }
.logitech-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
  font-weight: 800;
}
.logitech-logo strong { font-weight: 500; text-transform: lowercase; }
@keyframes partnersSweep {
  0%, 62% { transform: translateX(-120%); opacity: 0; }
  70% { opacity: 1; }
  92%, 100% { transform: translateX(120%); opacity: 0; }
}

.banner-ticker {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  padding: 16px 0;
  min-width: 200%;
  animation: tickerMove 24s linear infinite;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  letter-spacing: .1em;
}

.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); }
.services { background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.15)); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  border-radius: 24px;
  padding: 28px 22px;
}
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e9f5ff, #d7ebff);
  margin-bottom: 18px;
}
.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3,
.process-step h3,
.benefit h3 { margin: 0 0 12px; color: var(--navy); }
.service-card:hover .service-icon svg { animation: iconPulse .72s ease; }

.support-showcase { background: linear-gradient(180deg, #edf6ff 0%, #f7fbff 100%); }
.support-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.support-copy h2,
.why-copy h2,
.contact-copy h2 { font-size: clamp(2rem, 3vw, 3rem); }
.support-copy p { margin-top: 16px; }
.support-points { display: grid; gap: 12px; margin: 24px 0 28px; }
.support-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
}
.support-points span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(38,199,112,.12);
  color: #168451;
  font-weight: 800;
}
.support-stage {
  position: relative;
  min-height: 480px;
  padding: 16px;
}
.support-grid-pattern {
  position: absolute;
  inset: 36px 24px 24px 36px;
  background-image: radial-gradient(circle, rgba(8,121,207,.12) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 26px;
}
.support-console {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 22px;
}
.support-agent { display: flex; align-items: center; gap: 14px; }
.agent-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e7f5ff, #d5ebff);
}
.agent-avatar svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.agent-online {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #26c770;
  border: 2px solid #fff;
}
.live-support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(38,199,112,.12);
  color: #168451;
  font-size: .74rem;
  font-weight: 800;
}
.support-ticket,
.chat-message,
.resolution-toast {
  border-radius: 20px;
}
.support-ticket {
  margin-top: 20px;
  gap: 14px;
  justify-content: flex-start;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fafdff 0%, #edf6fe 100%);
  border: 1px solid rgba(8,121,207,.08);
}
.ticket-device {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #e7f5ff, #d5ebff);
}
.ticket-device svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.support-ticket small,
.chat-message p,
.support-step small,
.resolution-toast small { color: var(--muted); }
.support-ticket strong { display: block; margin-top: 6px; color: var(--navy); }
.support-chat { display: grid; gap: 14px; margin-top: 18px; }
.chat-message {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(8,121,207,.08);
}
.customer-message { background: rgba(8,121,207,.05); }
.agent-message { background: rgba(38,199,112,.08); }
.chat-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
}
.agent-mini { background: #16a264; }
.typing-row { display: flex; align-items: center; gap: 10px; padding-left: 4px; }
.typing-dots {
  display: inline-flex;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
}
.typing-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  animation: typingDots 1.2s ease-in-out infinite;
}
.typing-dots i:nth-child(2) { animation-delay: .16s; }
.typing-dots i:nth-child(3) { animation-delay: .32s; }
.support-status-flow {
  position: relative;
  margin-top: 22px;
  gap: 14px;
  padding-top: 36px;
}
.status-track {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14px;
  height: 8px;
  border-radius: 999px;
  background: #e1ecf8;
  overflow: hidden;
}
.status-track span {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #35bbff);
  animation: trackProgress 3.4s ease-in-out infinite;
}
.support-step {
  flex: 1 1 0;
  text-align: center;
}
.support-step i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}
.resolution-toast {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  animation: toastFloat 4.6s ease-in-out infinite;
}
.resolution-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #26c770, #16a264);
  color: #fff;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue-dark);
  font-weight: 700;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
}
.benefit > span {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e9f5ff, #d7ebff);
  color: var(--blue-dark);
  font-weight: 800;
}

.process-section { background: linear-gradient(180deg, rgba(233,245,255,.55), rgba(255,255,255,.55)); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-step {
  border-radius: 24px;
  padding: 30px 24px;
}
.process-step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.contact-section { padding-top: 78px; }
.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0b4f88 0%, #1186db 58%, #1698f3 100%);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 65px solid rgba(255,255,255,.08);
  border-radius: 50%;
  left: -170px;
  bottom: -190px;
}
.contact-copy,
.contact-form { position: relative; z-index: 2; }
.contact-copy h2,
.contact-copy p,
.contact-copy a,
.contact-form label { color: #fff; }
.contact-copy p { color: #d9efff; }
.contact-details { display: grid; gap: 13px; margin-top: 28px; }
.contact-details a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
}
.contact-details a span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border-radius: 11px;
}
.contact-form {
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
}
.contact-form label { display: block; margin-bottom: 15px; font-weight: 600; font-size: .9rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--navy);
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.form-note { color: #d6ecfb; font-size: .74rem; text-align: center; margin: 10px 0 0; }
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  text-align: center;
  font-size: .84rem;
  font-weight: 700;
}
.form-status.is-pending { color: #e6f5ff; }
.form-status.is-success { color: #bfffd5; }
.form-status.is-error { color: #ffd2d2; }
.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(20,116,63,.28);
  transition: .25s ease;
}
.whatsapp-button:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-button svg { width: 34px; height: 34px; fill: white; }
.whatsapp-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37,211,102,.38);
  border-radius: inherit;
  animation: whatsappRing 2.4s ease-out infinite;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  margin-top: 48px;
}
.footer-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: baseline; gap: 10px; }
.footer-brand strong { color: var(--blue); font-size: 1.6rem; letter-spacing: .05em; }
.footer-brand span,
.footer-wrap p { color: var(--muted); }
.footer-wrap p { font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0% { transform: scale(.8); opacity: .9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(38,199,112,.42); }
  75%,100% { box-shadow: 0 0 0 8px rgba(38,199,112,0); }
}
@keyframes signalSweep {
  0%, 16% { left: -35%; opacity: 0; }
  30% { opacity: .95; }
  62% { left: 115%; opacity: .35; }
  100% { left: 115%; opacity: 0; }
}
@keyframes dataLine { to { stroke-dashoffset: -120; } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes iconPulse { 0%,100% { transform: scale(1) rotate(0); } 45% { transform: scale(1.1) rotate(-3deg); } }
@keyframes ctaShine {
  0%, 62% { left: -40%; opacity: 0; }
  72% { opacity: 1; }
  90%, 100% { left: 120%; opacity: 0; }
}
@keyframes whatsappRing { 0% { transform: scale(.92); opacity: .72; } 80%,100% { transform: scale(1.25); opacity: 0; } }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes screenShine {
  0%, 58% { left: -28%; opacity: 0; }
  68% { opacity: 1; }
  88%,100% { left: 118%; opacity: 0; }
}
@keyframes terminalBlink {
  0%,100% { opacity: .76; }
  50% { opacity: 1; }
}
@keyframes barBounce {
  0%,100% { transform: scaleY(1); }
  45% { transform: scaleY(1.08); }
}
@keyframes typingDots {
  0%, 80%, 100% { transform: translateY(0); opacity: .5; }
  40% { transform: translateY(-3px); opacity: 1; }
}
@keyframes trackProgress {
  0% { width: 24%; }
  55% { width: 68%; }
  100% { width: 36%; }
}
@keyframes toastFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes imageSweep {
  0%, 58% { left: -18%; opacity: 0; }
  68% { opacity: 1; }
  92%, 100% { left: 118%; opacity: 0; }
}
@keyframes techPulse {
  0%,100% { transform: scale(1); opacity: .68; }
  50% { transform: scale(1.45); opacity: 1; }
}
@keyframes overlayPing {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes pingRing {
  0% { transform: scale(.7); opacity: .85; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
@keyframes graphPulse {
  0%, 100% { transform: scaleY(.86); opacity: .55; }
  50% { transform: scaleY(1.06); opacity: .92; }
}
@keyframes serverSweep {
  0% { transform: translateX(-24%); opacity: 0; }
  25% { opacity: .55; }
  75% { opacity: .18; }
  100% { transform: translateX(28%); opacity: 0; }
}
@keyframes shieldPulse {
  0%,100% { transform: scale(.95); opacity: .55; }
  50% { transform: scale(1.08); opacity: .95; }
}
@keyframes shieldRing {
  0% { transform: scale(.76); opacity: .85; }
  80%,100% { transform: scale(1.32); opacity: 0; }
}

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .hero-grid,
  .banner-wrap,
  .support-grid,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 74px; gap: 12px; }
  .brand-logo { width: 156px; }
  .nav-actions .btn { display: none; }
  .main-nav.open { top: 74px; }
  .hero { padding: 64px 0 54px; }
  .hero h1 { max-width: 11ch; }
  .hero-actions,
  .banner-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 440px; }
  .card-main { padding: 20px; border-radius: 24px; }
  .network-map { height: 216px; }
  .metric-row { flex-direction: column; }
  .floating-card { position: static; margin-top: 12px; }
  .banner-wrap { padding: 48px 0 24px; }
  .banner-stage { min-height: auto; }
  .banner-dashboard { min-height: auto; padding: 18px; }
  .banner-chip { position: static; margin-bottom: 10px; }
  .banner-image-shell { margin-top: 10px; border-radius: 22px; }
  .dash-ping { width: 11px; height: 11px; }
  .dash-lock-pulse { right: 23%; width: 22%; }
  .banner-mini-card {
    position: static;
    margin-top: 12px;
  }
  .partners-panel {
    padding: 14px 14px 16px;
    border-radius: 18px;
  }
  .partners-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .partner-logo-card {
    min-height: 54px;
    padding: 8px 8px;
  }
  .partner-logo-card strong { font-size: .88rem; }
  .screen-grid { grid-template-columns: 1fr; }
  .card-network { min-height: 130px; }
  .section { padding: 74px 0; }
  .service-grid,
  .benefits-grid,
  .process-grid { grid-template-columns: 1fr; }
  .support-stage { min-height: auto; padding: 0; }
  .support-console { padding: 18px; }
  .support-status-flow { padding-top: 42px; gap: 8px; }
  .resolution-toast { position: static; margin-top: 14px; }
  .contact-card { padding: 34px 22px; border-radius: 26px; gap: 34px; }
  .footer-wrap { padding: 28px 0; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .data-packet { display: none; }
}
