:root {
  --navy-950: #04102c;
  --navy-900: #07183d;
  --navy-800: #0b2455;
  --navy-700: #143a79;
  --blue-600: #145dff;
  --blue-500: #2a75ff;
  --blue-400: #63a5ff;
  --blue-200: #d9e9ff;
  --blue-100: #edf5ff;
  --ice: #f7fbff;
  --white: #ffffff;
  --text: #091939;
  --muted: #5d6b82;
  --line: rgba(8, 44, 102, 0.13);
  --shadow: 0 24px 80px rgba(19, 68, 140, 0.13);
  --shadow-soft: 0 12px 42px rgba(20, 74, 155, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1500px, calc(100vw - 8vw));
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --electric: #71b7ff;
  --cyan: #51e6ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

img,
svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header.is-scrolled {
  height: 76px;
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(26, 66, 126, 0.09);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-accent {
  position: relative;
  display: block;
  width: 9px;
  height: 38px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2d7dff 0%, #0754e8 100%);
  box-shadow: 0 8px 20px rgba(14, 95, 255, 0.28);
  transform: skew(-12deg);
}

.brand-accent::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: #8fb9ff;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--navy-950);
  font-family: var(--font-display);
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark strong {
  font-size: clamp(28px, 2.1vw, 36px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-wordmark > span {
  color: var(--blue-600);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--blue-600);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(20, 93, 255, 0.72);
  border-radius: 12px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.header-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-whatsapp span {
  font-weight: 760;
}

.header-whatsapp strong {
  font-size: 14px;
  font-weight: 650;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 93, 255, 0.14);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(100svh, 980px);
  height: auto;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 28px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 31%, rgba(255, 255, 255, 0.93) 43%, rgba(255, 255, 255, 0) 69%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(29, 116, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 116, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, black 42%, black 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 7%;
  right: 7%;
  width: 54vw;
  height: 58%;
  max-height: 520px;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(60px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(80, 161, 255, 0.22), rgba(255, 255, 255, 0) 68%);
  animation: glow-breathe 6s ease-in-out infinite;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  top: 7%;
  right: -1.2%;
  width: min(71vw, 1160px);
  height: 77%;
  object-fit: cover;
  object-position: center right;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.015);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 17%, #000 35%, #000 100%);
  animation: machine-float 8s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  top: 18%;
  right: 7%;
  width: 46%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(38, 126, 255, 0.8), transparent);
  filter: drop-shadow(0 0 9px #5f9fff);
  animation: scan 5s ease-in-out infinite 1s;
}

.data-pulse {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(30, 106, 255, 0.26);
  border-radius: 50%;
  opacity: 0;
  animation: data-pulse 4s ease-out infinite;
}

.pulse-one {
  top: 37%;
  right: 24%;
  width: 140px;
  height: 140px;
}

.pulse-two {
  top: 51%;
  right: 15%;
  width: 82px;
  height: 82px;
  animation-delay: 1.7s;
}

.hero-shell {
  position: relative;
  z-index: 4;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: 28px;
}

.hero-content {
  position: relative;
  width: min(58%, 780px);
  padding-top: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--blue-600);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 78px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

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

.hero-copy-card {
  max-width: 560px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 107, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.88));
  box-shadow:
    0 14px 36px rgba(46, 94, 157, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(140%);
}

.hero-copy {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  position: relative;
  z-index: 5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b4fff, #176bff);
  box-shadow:
    0 15px 35px rgba(20, 93, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 22px 42px rgba(20, 93, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-secondary {
  color: var(--navy-900);
  border-color: var(--blue-600);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #55637b;
  font-size: 15px;
  font-weight: 560;
}

.hero-mail > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-mail svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--navy-800);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-rail {
  position: relative;
  z-index: 6;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--shell, 1240px), calc(100% - 7vw));
  min-height: 92px;
  margin: 8px auto 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 42px rgba(46, 94, 157, 0.12),
    inset 0 0 0 1px rgba(29, 116, 255, 0.05);
  backdrop-filter: blur(18px) saturate(135%);
}

.service-rail a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1.1vw, 16px);
  min-width: 0;
  padding: 18px 14px;
  color: var(--navy-900);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.service-rail a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  background: rgba(10, 54, 117, 0.16);
}

.service-rail a:hover {
  color: var(--blue-600);
  background: rgba(233, 244, 255, 0.78);
}

.rail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 7px 22px rgba(22, 91, 196, 0.12);
}

.rail-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-rail strong {
  min-width: 0;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.trust-strip {
  padding: 35px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(52, 123, 255, 0.3), transparent 27%),
    var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 0 35px;
}

.trust-grid > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.trust-grid > div > span {
  color: var(--blue-400);
  font-size: 22px;
  font-weight: 800;
}

.trust-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.section {
  position: relative;
  padding: clamp(95px, 10vw, 160px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(48px, 6vw, 86px);
}

.section-kicker {
  margin-bottom: 18px;
}

.section-heading h2,
.reputation-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(45px, 5.3vw, 82px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading > p,
.reputation-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 144, 255, 0.1), transparent 28%),
    #fff;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 7%;
  left: -140px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(43, 119, 236, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(43, 119, 236, 0.025),
    0 0 0 100px rgba(43, 119, 236, 0.018);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.86));
  box-shadow: 0 13px 34px rgba(22, 70, 139, 0.07);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(47, 126, 255, 0.16), transparent 68%);
  transition: opacity 0.3s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(31, 105, 231, 0.32);
  box-shadow: 0 28px 70px rgba(26, 82, 165, 0.15);
}

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

.service-card-featured,
.service-card-wide {
  grid-column: span 2;
}

.service-card-featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(86, 155, 255, 0.42), transparent 34%),
    linear-gradient(135deg, var(--navy-950), #0a2860);
  box-shadow: 0 25px 65px rgba(5, 28, 77, 0.24);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(111, 173, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(111, 173, 255, 0.04),
    0 0 0 70px rgba(111, 173, 255, 0.025);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(9, 38, 82, 0.23);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(32, 105, 231, 0.15);
  border-radius: 16px;
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 13px 30px rgba(31, 95, 193, 0.11);
}

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

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: var(--navy-950);
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card-featured p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.69);
}

.tag-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.service-meta {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(38, 105, 209, 0.12);
  border-radius: 999px;
  color: var(--navy-700);
  background: rgba(240, 247, 255, 0.82);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card-featured .tag-list li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
}

.service-meta {
  position: absolute;
  right: 29px;
  bottom: 26px;
  left: 29px;
  justify-content: center;
}

.solutions-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(41, 106, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 106, 220, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 15% 20%, rgba(28, 94, 221, 0.22), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(36, 122, 255, 0.15), transparent 28%),
    var(--navy-950);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

.solutions-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 45%, rgba(65, 139, 255, 0.08), transparent 70%);
}

.section-heading-light h2 {
  color: var(--white);
}

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

.solution-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 115px);
}

.solution-map {
  position: relative;
  min-height: 570px;
  perspective: 900px;
}

.solution-map::before {
  content: "";
  position: absolute;
  inset: 13% 8%;
  border: 1px solid rgba(82, 153, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(44, 118, 255, 0.11),
    0 0 120px rgba(33, 108, 255, 0.06);
}

.solution-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  padding: 30px;
  border: 1px solid rgba(103, 167, 255, 0.5);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(66, 132, 255, 0.04)),
    rgba(5, 23, 59, 0.72);
  box-shadow:
    0 0 0 15px rgba(37, 112, 255, 0.04),
    0 0 70px rgba(47, 126, 255, 0.28),
    inset 0 0 35px rgba(75, 146, 255, 0.11);
  backdrop-filter: blur(15px);
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-10deg);
}

.solution-core img {
  width: 70px;
  height: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.solution-core span {
  margin-top: 8px;
  color: #8cbcff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.core-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(86, 155, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
  animation: orbit-spin 16s linear infinite;
}

.core-orbit::before,
.core-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #65a4ff;
  box-shadow: 0 0 18px #65a4ff;
}

.core-orbit::before {
  top: 8%;
  left: 24%;
}

.core-orbit::after {
  right: 16%;
  bottom: 11%;
}

.orbit-one {
  width: 430px;
  height: 250px;
}

.orbit-two {
  width: 330px;
  height: 410px;
  transform: translate(-50%, -50%) rotate(52deg);
  animation-direction: reverse;
  animation-duration: 21s;
}

.map-node {
  position: absolute;
  z-index: 3;
  min-width: 110px;
  padding: 12px 15px;
  border: 1px solid rgba(99, 165, 255, 0.25);
  border-radius: 12px;
  color: #cfe3ff;
  background: rgba(8, 32, 75, 0.72);
  box-shadow: 0 12px 30px rgba(0, 9, 29, 0.22);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  animation: node-float 5s ease-in-out infinite;
}

.node-web {
  top: 10%;
  left: 12%;
}

.node-crm {
  top: 16%;
  right: 7%;
  animation-delay: -1s;
}

.node-ai {
  top: 47%;
  right: 0;
  animation-delay: -2.1s;
}

.node-app {
  bottom: 12%;
  right: 20%;
  animation-delay: -3s;
}

.node-data {
  bottom: 17%;
  left: 7%;
  animation-delay: -4s;
}

.solution-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.solution-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.solution-item > span {
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.solution-item h3 {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.solution-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.reputation-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 35%, rgba(51, 134, 255, 0.16), transparent 35%),
    linear-gradient(180deg, #f4f9ff, #fff);
}

.reputation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
}

.reputation-copy h2 {
  margin-bottom: 28px;
}

.reputation-copy > p {
  margin-bottom: 28px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy-800);
  font-weight: 650;
}

.check-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--blue-600);
}

.reputation-visual {
  position: relative;
  min-height: 580px;
  border: 1px solid rgba(45, 115, 221, 0.13);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(27, 104, 226, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 104, 226, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.7);
  background-size: 46px 46px;
  box-shadow: var(--shadow);
}

.rating-card {
  border: 1px solid rgba(49, 110, 201, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 25px 70px rgba(29, 87, 166, 0.15);
  backdrop-filter: blur(18px);
}

.rating-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80%, 520px);
  padding: 32px;
  border-radius: 26px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.rating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 750;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #147a45;
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24c875;
  box-shadow: 0 0 0 5px rgba(36, 200, 117, 0.1);
}

.rating-value {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 26px 0;
}

.rating-value > strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 82px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stars {
  color: #ffb400;
  font-size: 23px;
  letter-spacing: 0.04em;
}

.rating-value span {
  color: var(--muted);
  font-size: 12px;
}

.rating-bars {
  display: grid;
  gap: 9px;
}

.rating-bars > span {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 11px;
}

.rating-bars b {
  color: var(--muted);
  font-size: 11px;
}

.rating-bars i {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7eef7;
}

.rating-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-600), #65a7ff);
}

.rating-float {
  position: absolute;
  top: 11%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  animation: node-float 5.4s ease-in-out infinite;
}

.rating-float svg {
  width: 32px;
  height: 32px;
  fill: rgba(255, 180, 0, 0.14);
  stroke: #ffb400;
  stroke-width: 1.4;
}

.rating-float div,
.direct-contact div {
  display: grid;
}

.rating-float strong {
  color: var(--navy-950);
  font-size: 20px;
  line-height: 1.1;
}

.rating-float span {
  color: var(--muted);
  font-size: 11px;
}

.rating-float-two {
  top: auto;
  right: auto;
  bottom: 12%;
  left: 2%;
  animation-delay: -2s;
}

.check-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
}

.check-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.process-section {
  background: #fff;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 55px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 93, 255, 0.45), transparent);
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 24px 26px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 35px rgba(24, 74, 145, 0.07);
}

.process-card > span {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.process-dot {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 22px 0 28px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow:
    0 0 0 1px var(--blue-600),
    0 0 0 9px rgba(20, 93, 255, 0.08);
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
}

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

.tech-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  padding: clamp(36px, 5vw, 74px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(68, 145, 255, 0.35), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #0b2c68);
  box-shadow: 0 34px 80px rgba(6, 28, 76, 0.21);
}

.tech-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 90px rgba(255, 255, 255, 0.015);
}

.tech-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(35px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.tech-panel p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.tech-chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tech-chips span {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.references-section {
  background:
    radial-gradient(circle at 0 100%, rgba(56, 135, 255, 0.11), transparent 30%),
    var(--ice);
}

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

.industry-card {
  position: relative;
  min-height: 235px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 45px rgba(32, 83, 155, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(32, 83, 155, 0.13);
}

.industry-card > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.industry-card h3 {
  max-width: 420px;
  margin: 40px 0 14px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.industry-card p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  padding: clamp(95px, 10vw, 155px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(74, 139, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 139, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(38, 113, 250, 0.27), transparent 35%),
    var(--navy-950);
  background-size: 60px 60px, 60px 60px, auto, auto;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: clamp(55px, 8vw, 125px);
}

.contact-copy h2 {
  margin-bottom: 27px;
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.61);
}

.direct-contact {
  display: grid;
  gap: 13px;
  margin-top: 38px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.2s ease;
}

.direct-contact a:hover {
  background: rgba(255, 255, 255, 0.075);
}

.direct-contact a > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #8ebdff;
  background: rgba(58, 133, 255, 0.12);
}

.direct-contact svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
}

.direct-contact strong {
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 35px 90px rgba(0, 9, 29, 0.29);
  backdrop-filter: blur(18px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #9fb7dc 50%),
    linear-gradient(135deg, #9fb7dc 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 15px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #68a4ff;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(68, 142, 255, 0.1);
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-500);
}

.privacy-check span {
  font-weight: 500 !important;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -5px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 72px 0 25px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020a1c;
}

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

.brand-footer .brand-name {
  color: var(--white);
}

.footer-brand > p {
  max-width: 300px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-grid a,
.footer-grid > div > span {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #8bbcff;
}

.footer-grid > div > span {
  max-width: 220px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: #16b76a;
  box-shadow: 0 15px 35px rgba(8, 127, 72, 0.28);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 21px 42px rgba(8, 127, 72, 0.34);
}

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

.mobile-action-bar {
  display: none;
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 119, 236, 0.12), transparent 28%),
    var(--ice);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
}

.legal-main {
  width: min(880px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.legal-main h1 {
  margin: 0 0 24px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.legal-main h2 {
  margin: 42px 0 12px;
  color: var(--navy-950);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--blue-600);
  font-weight: 700;
}

.legal-notice {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid rgba(20, 93, 255, 0.22);
  border-radius: 16px;
  color: var(--navy-800) !important;
  background: rgba(229, 241, 255, 0.8);
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Premium landing motion layer */
.brand {
  gap: 0;
}

.brand-wordmark {
  gap: 10px;
}

.brand-wordmark strong {
  color: var(--navy-950);
  font-size: clamp(31px, 2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand-wordmark > span {
  color: var(--blue-600);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.hero-content {
  width: min(48%, 720px);
}

.hero-shell {
  width: var(--shell);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 3.25vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 .hero-title-line {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  color: var(--navy-950);
}

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

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

.capability-typer {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-top: 26px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.typer-prefix {
  color: var(--navy-950);
}

.typer-text {
  display: inline-block;
  width: 220px;
  color: var(--blue-600);
  white-space: nowrap;
}

.typer-cursor {
  width: 2px;
  height: 1.1em;
  border-radius: 2px;
  background: var(--blue-600);
  animation: cursor-blink 0.82s steps(1) infinite;
}

.hero h1 .hero-title-line {
  opacity: 0;
  transform: translateY(20px);
  animation: enterprise-line-in 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero h1 .hero-title-line:nth-child(1) { animation-delay: 0.28s; }
.hero h1 .hero-title-line:nth-child(2) { animation-delay: 0.4s; }
.hero h1 .hero-title-line:nth-child(3) { animation-delay: 0.52s; }

.typed-line {
  position: relative;
}

.typed-text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: enterprise-type-reveal 0.95s steps(12, end) 0.85s forwards;
}

.typed-line::after {
  content: "";
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 3px;
  height: 0.76em;
  border-radius: 2px;
  opacity: 0;
  background: var(--blue-600);
  animation:
    enterprise-cursor-sweep 0.95s steps(12, end) 0.85s forwards,
    enterprise-cursor-hide 0.3s ease 1.95s forwards;
}

.hero-copy-card {
  max-width: 530px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy {
  color: #52627a;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
}

.hero-media {
  perspective: 1200px;
}

.hero-orbit-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 11px 14px;
  border: 1px solid rgba(57, 133, 255, 0.24);
  border-radius: 14px;
  color: var(--navy-950);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 245, 255, 0.72));
  box-shadow:
    0 18px 45px rgba(27, 81, 157, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px) saturate(145%);
  transform-style: preserve-3d;
}

.hero-orbit-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #2d82ff, #0754e8);
  box-shadow: 0 8px 18px rgba(20, 102, 238, 0.25);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-orbit-card strong {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.orbit-card-one {
  top: 25%;
  right: 7%;
  animation: orbit-card-float 5.8s ease-in-out infinite;
}

.orbit-card-two {
  top: 48%;
  right: 39%;
  animation: orbit-card-float 6.4s ease-in-out -1.7s infinite reverse;
}

.orbit-card-three {
  top: 68%;
  right: 15%;
  animation: orbit-card-float 6.1s ease-in-out -3.1s infinite;
}

.scroll-progress {
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(11, 73, 189, 0.06);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0754e8, #4da0ff, #0754e8);
  box-shadow: 0 0 14px rgba(36, 122, 255, 0.55);
  transition: transform 0.08s linear;
}

.hero {
  --pointer-x: 0px;
  --pointer-y: 0px;
  --spot-x: 70%;
  --spot-y: 34%;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background: radial-gradient(
    420px circle at var(--spot-x) var(--spot-y),
    rgba(41, 126, 255, 0.12),
    transparent 68%
  );
  transition: background-position 0.18s ease;
}

.hero-media {
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-intro 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-content > :nth-child(1) { animation-delay: 0.12s; }
.hero-content > :nth-child(2) { animation-delay: 0.24s; }
.hero-content > :nth-child(3) { animation-delay: 0.38s; }
.hero-content > :nth-child(4) { animation-delay: 0.5s; }
.hero-content > :nth-child(5) { animation-delay: 0.62s; }

.typewriter-line {
  display: flex;
  align-items: baseline;
  width: 100%;
  min-height: 0.98em;
  color: var(--blue-600) !important;
  white-space: nowrap;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.typewriter-cursor {
  display: inline-block;
  width: 0.065em;
  height: 0.82em;
  margin-left: 0.07em;
  border-radius: 2px;
  background: var(--blue-600);
  animation: cursor-blink 0.82s steps(1) infinite;
}

.typewriter-line.is-complete .typewriter-cursor {
  animation: cursor-finish 0.7s ease 0.45s forwards;
}

.service-rail a,
.service-card,
.solution-item,
.process-card,
.industry-card,
.tech-panel,
.reputation-visual {
  transition:
    transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
}

@media (hover: hover) {
  .service-rail a:hover {
    transform: translateY(-5px);
  }

  .service-card:hover,
  .solution-item:hover,
  .process-card:hover,
  .industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 107, 255, 0.3);
    box-shadow: 0 24px 64px rgba(25, 74, 145, 0.14);
  }

  .button:hover svg {
    transform: translateX(4px);
  }
}

.button svg {
  transition: transform 0.25s ease;
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition:
    transform 0.24s cubic-bezier(0.2, 0.7, 0.2, 1),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.motion-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-card.is-visible:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}

.motion-card > * {
  transform: translateZ(0);
  transition: transform 0.35s ease;
}

.motion-card:hover > * {
  transform: translateZ(16px);
}

.section-heading.is-visible h2,
.section-heading.is-visible h3 {
  animation: heading-focus 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.service-rail {
  animation: rail-arrive 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.72s both;
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

@keyframes hero-intro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursor-blink {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

@keyframes cursor-finish {
  to { opacity: 0; }
}

@keyframes heading-focus {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes rail-arrive {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes enterprise-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterprise-type-reveal {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes enterprise-cursor-sweep {
  0% { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 1; }
}

@keyframes enterprise-cursor-hide {
  to { opacity: 0; }
}

@keyframes orbit-card-float {
  0%, 100% {
    transform: translate3d(0, 0, 38px) rotateX(1deg) rotateY(-3deg);
  }
  50% {
    transform: translate3d(0, -13px, 62px) rotateX(-2deg) rotateY(4deg);
  }
}

@keyframes machine-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -7px, 0) scale(1.008);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes scan {
  0% {
    top: 18%;
    opacity: 0;
  }
  15% {
    opacity: 0.65;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    top: 71%;
    opacity: 0;
  }
}

@keyframes data-pulse {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  25% {
    opacity: 0.48;
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(347deg);
  }
}

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

@media (max-width: 1280px) {
  :root {
    --shell: min(1160px, calc(100vw - 6vw));
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-whatsapp strong {
    display: none;
  }

  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-content {
    width: 61%;
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 68px);
    line-height: 0.98;
  }

  .hero-media img {
    right: -6%;
    width: 76vw;
  }

  .service-rail {
    width: min(var(--shell), calc(100% - 6vw));
  }

  .service-rail strong {
    font-size: 11px;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .service-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(920px, calc(100vw - 48px));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--line);
    box-shadow: 0 8px 28px rgba(23, 67, 128, 0.08);
    backdrop-filter: blur(18px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-whatsapp {
    display: none;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand-name {
    font-size: 25px;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    grid-column: 3;
    justify-self: end;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 5px;
    background: var(--navy-950);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-7px);
  }

  .menu-toggle span:last-child {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 100;
    inset: 76px 0 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    background: rgba(247, 251, 255, 0.97);
    backdrop-filter: blur(22px);
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }

  .mobile-menu-cta {
    margin-top: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
    max-height: none;
    padding: 76px 0 24px;
    background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
  }

  .hero::before {
    opacity: 0.6;
    mask-image: linear-gradient(180deg, transparent, black);
  }

  .hero-shell {
    order: 1;
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .hero-content {
    width: 100%;
    padding-top: 24px;
  }

  .hero h1 {
    max-width: 790px;
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.98;
  }

  .hero-copy-card {
    max-width: 610px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    position: relative;
    order: 2;
    width: 100%;
    height: 500px;
    margin-top: 15px;
  }

  .hero-media img {
    top: 0;
    right: -8%;
    width: 100%;
    height: 100%;
    object-position: 67% center;
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 92%, transparent 100%);
  }

  .hero-glow,
  .scan-line,
  .data-pulse {
    display: none;
  }

  .service-rail {
    position: relative;
    order: 3;
    right: auto;
    bottom: auto;
    left: auto;
    width: var(--shell);
    margin: 18px auto 8px;
  }

  .service-rail a {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .service-rail strong {
    white-space: normal;
  }

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

  .trust-grid > div {
    padding: 25px 30px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .section-heading > p {
    max-width: 650px;
  }

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

  .service-card-featured,
  .service-card-wide {
    grid-column: span 2;
  }

  .solution-stage,
  .reputation-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .solution-stage {
    gap: 35px;
  }

  .solution-map {
    min-height: 500px;
  }

  .reputation-grid {
    gap: 60px;
  }

  .reputation-visual {
    min-height: 540px;
  }

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

  .process-grid::before {
    display: none;
  }

  .tech-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

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

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

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-xl: 26px;
    --radius-lg: 20px;
  }

  html {
    scroll-padding-top: 78px;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    max-width: 100%;
    overflow-x: clip;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .brand {
    gap: 10px;
  }

  .brand-accent {
    width: 7px;
    height: 32px;
  }

  .brand-wordmark strong {
    font-size: 28px;
  }

  .brand-wordmark > span {
    font-size: 11px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .mobile-menu {
    inset: 70px 0 0;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 18px;
  }

  .hero-shell {
    width: var(--shell);
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .hero-content {
    padding-top: 12px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 36px);
    line-height: 1.01;
    letter-spacing: -0.035em;
  }

  .hero h1 .hero-title-line,
  .typewriter-line {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .capability-typer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 7px;
    min-height: 24px;
    margin-top: 20px;
    font-size: 13px;
  }

  .typer-text {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy-card {
    margin-top: 22px;
    padding: 0;
  }

  .hero-copy {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 11px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 20px;
  }

  .hero-mail {
    margin-top: 19px;
  }

  .hero-media {
    width: 100%;
    height: 285px;
    margin: 6px 0 0;
    border-radius: 24px;
    overflow: hidden;
  }

  .hero-orbit-card {
    display: none;
  }

  .hero-media img {
    right: -12%;
    width: 116%;
    object-position: 66% center;
  }

  .service-rail {
    display: flex;
    width: calc(100% - 32px);
    min-height: 0;
    margin: 16px auto 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 17px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-rail::-webkit-scrollbar {
    display: none;
  }

  .service-rail a {
    flex: 0 0 142px;
    justify-content: center;
    min-height: 112px;
    padding: 16px 8px;
    border-right: 1px solid rgba(10, 54, 117, 0.12);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .service-rail a::after {
    display: none;
  }

  .service-rail a:last-child {
    flex-basis: 160px;
    min-height: 112px;
    border-right: 0;
  }

  .rail-icon {
    width: 40px;
    height: 40px;
  }

  .rail-icon svg {
    width: 23px;
    height: 23px;
  }

  .service-rail strong {
    font-size: 10px;
  }

  .trust-strip {
    padding: 18px 0;
  }

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

  .trust-grid strong {
    font-size: 35px;
  }

  .trust-grid p {
    font-size: 11px;
    line-height: 1.35;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading {
    width: 100%;
    min-width: 0;
    margin-bottom: 40px;
  }

  .section-heading > *,
  .reputation-copy > *,
  .contact-copy > * {
    width: 100%;
    min-width: 0;
  }

  .section-heading h2,
  .reputation-copy h2,
  .contact-copy h2 {
    font-size: clamp(34px, 9.2vw, 38px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .section-heading > p,
  .reputation-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .service-card,
  .service-card-featured,
  .service-card-wide {
    grid-column: span 1;
    min-height: 0;
    padding: 24px 22px;
  }

  .service-card-featured {
    min-height: 350px;
  }

  .service-meta {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 22px;
  }

  .solution-map {
    width: 100%;
    min-height: 350px;
    transform: scale(0.82);
  }

  .solution-core {
    width: 130px;
    height: 130px;
    padding: 24px;
  }

  .solution-core img {
    width: 55px;
    height: 55px;
  }

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

  .orbit-two {
    width: 235px;
    height: 320px;
  }

  .map-node {
    min-width: 88px;
    padding: 9px 10px;
    font-size: 9px;
  }

  .solution-item {
    grid-template-columns: 35px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .reputation-grid {
    gap: 45px;
  }

  .reputation-visual {
    min-height: 410px;
  }

  .rating-main {
    width: 88%;
    padding: 23px;
  }

  .rating-value > strong {
    font-size: 64px;
  }

  .rating-float {
    top: 5%;
    right: 1%;
    padding: 12px;
  }

  .rating-float-two {
    top: auto;
    bottom: 5%;
    left: 1%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .process-dot {
    margin: 20px 0;
  }

  .tech-panel {
    padding: 30px 24px;
  }

  .tech-chips {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .industry-card {
    min-height: 210px;
    padding: 29px;
  }

  .contact-section {
    padding: 85px 0;
  }

  .contact-shell {
    gap: 44px;
  }

  .contact-form {
    gap: 17px;
    width: 100%;
    min-width: 0;
    padding: 22px 16px;
  }

  .direct-contact,
  .direct-contact a {
    width: 100%;
    min-width: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .floating-whatsapp {
    display: none;
  }

  .legal-header .brand-name {
    font-size: 19px;
  }

  .legal-header .brand img {
    width: 38px;
    height: 38px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    border-top: 1px solid rgba(7, 35, 84, 0.13);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -12px 32px rgba(17, 58, 121, 0.11);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    border: 1px solid var(--blue-600);
    border-radius: 11px;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-action-bar a:last-child {
    color: var(--white);
    border-color: #16b76a;
    background: #16b76a;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 20px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.45vw, 33px);
  }

  .hero-media {
    height: 260px;
  }

  .trust-grid p {
    font-size: 10px;
  }

  .rating-value {
    gap: 15px;
  }

  .rating-value > strong {
    font-size: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* KTON product platform */
html,body{max-width:100%;overflow-x:clip}
.products-section{background:linear-gradient(180deg,#f7fbff 0%,#eef7ff 100%)}
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:36px}
.product-card{position:relative;display:flex;flex-direction:column;min-height:520px;padding:30px;border:1px solid rgba(16,50,76,.13);border-radius:26px;background:rgba(255,255,255,.86);box-shadow:0 20px 60px rgba(31,87,128,.09);overflow:hidden}
.product-card:before{content:"";position:absolute;inset:0 0 auto;height:4px;background:linear-gradient(90deg,#00b8f0,#6555e8);opacity:.35}
.product-featured{color:#fff;background:linear-gradient(145deg,#071d31,#0b3150 60%,#12375c);border-color:rgba(75,200,255,.3);box-shadow:0 28px 80px rgba(4,34,59,.25)}
.product-featured:before{opacity:1}.product-top{display:flex;align-items:center;justify-content:space-between;color:#718a9d;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.product-featured .product-top{color:#b8d1e4}
.product-state{padding:7px 11px;border-radius:99px;color:#087946;background:#dff9ea}.product-beta{color:#6240b0;background:#eee7ff}.product-custom{color:#135d86;background:#e0f4ff}
.product-card h3{margin:28px 0 12px;font-size:30px}.product-card>p{min-height:78px;color:#5b7183;line-height:1.7}.product-featured>p{color:#bfd0df}
.product-points{display:grid;gap:10px;margin:20px 0 26px;padding:0;list-style:none}.product-points li{display:flex;gap:9px;align-items:center}.product-points li:before{content:"✓";display:grid;place-items:center;width:21px;height:21px;border-radius:50%;color:#0b8750;background:#dff9ea;font-size:12px;font-weight:900}.product-featured .product-points li:before{color:#7df8bc;background:#123e48}
.product-price{display:flex;align-items:baseline;gap:7px;margin:auto 0 22px}.product-price span,.product-price small{color:#70899a}.product-price strong{font-size:30px}.product-featured .product-price span,.product-featured .product-price small{color:#a9c1d3}
.product-card>.button{margin-top:auto}
.pricing-section{background:#071927;color:#fff}.pricing-shell{display:grid;grid-template-columns:.85fr 1.15fr;gap:72px;align-items:start}.pricing-copy>p:last-child{color:#a9bdcb;line-height:1.75}.price-list{display:grid;gap:12px}.price-list article{display:flex;justify-content:space-between;gap:24px;align-items:center;padding:22px 24px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.05)}.price-list span{color:#45ccff;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.price-list h3{margin:5px 0;font-size:18px}.price-list p{margin:0;color:#97adbd;font-size:13px}.price-list>article>strong{white-space:nowrap;color:#72e8bd;font-size:19px}
.trust-section{background:#fff}.trust-intro{max-width:760px}.trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:34px}.trust-card{display:grid;grid-template-columns:58px 1fr;gap:16px;min-height:190px;padding:25px;border:1px solid #dce9f1;border-radius:22px;color:inherit;text-decoration:none;background:#fbfdff;transition:.25s ease}.trust-card:hover{transform:translateY(-5px);border-color:#52c9f1;box-shadow:0 20px 50px rgba(25,90,130,.12)}.trust-card>span{display:grid;place-items:center;width:58px;height:58px;border-radius:17px;color:#fff;background:linear-gradient(135deg,#08bced,#6855e7);font-weight:900;font-size:18px}.trust-card strong{display:block;margin:7px 0 9px;font-size:20px}.trust-card p{margin:0;color:#607789;line-height:1.55}.trust-card i{grid-column:2;color:#1894bd;font-size:11px;font-style:normal;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.trust-note{margin:24px 0 0;color:#748a99;font-size:13px}
@media(max-width:980px){.product-grid,.trust-grid{grid-template-columns:1fr}.product-card{min-height:auto}.product-card>p{min-height:0}.pricing-shell{grid-template-columns:1fr;gap:32px}}
@media(max-width:640px){.product-card{padding:22px;border-radius:20px}.product-card h3{font-size:25px}.price-list article{align-items:flex-start;flex-direction:column}.trust-card{grid-template-columns:50px 1fr;padding:19px}.trust-card>span{width:50px;height:50px}.pricing-section,.products-section,.trust-section{overflow:hidden}}

/* 2026 premium interaction layer */
.ambient-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.026;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.pointer-aura {
  position: fixed;
  z-index: 90;
  top: -210px;
  left: -210px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 125, 255, 0.1), rgba(45, 125, 255, 0) 68%);
  transition: opacity 0.35s ease;
  will-change: transform;
}

.pointer-aura.is-visible { opacity: 1; }

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(20, 93, 255, 0.6), transparent);
  transform: scaleX(0.2);
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.site-header.is-scrolled::after { opacity: 1; transform: scaleX(1); }

.brand-wordmark { transition: transform 0.3s cubic-bezier(.2,.8,.2,1); }
.brand:hover .brand-wordmark { transform: translateY(-2px); }

.brand-wordmark strong {
  background: linear-gradient(110deg, var(--navy-950) 15%, var(--blue-600) 50%, var(--navy-950) 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wordmark-sheen 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x, 74%) var(--spot-y, 38%), rgba(93, 171, 255, .14), transparent 18%),
    linear-gradient(115deg, transparent 35%, rgba(255,255,255,.46) 47%, transparent 59%);
  background-size: auto, 220% 100%;
  animation: hero-light-sweep 10s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60px;
  left: -70px;
  width: min(680px, 48vw);
  height: calc(100% + 120px);
  border: 1px solid rgba(20, 93, 255, .08);
  border-radius: 46% 54% 48% 52% / 58% 42% 58% 42%;
  background: radial-gradient(circle at 48% 45%, rgba(255,255,255,.78), rgba(255,255,255,0) 68%);
  filter: blur(.1px);
  animation: organic-morph 16s ease-in-out infinite alternate;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(102deg, #0c4dd7 0%, #287cff 42%, #54b7ff 64%, #0e5ae8 100%);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: accent-flow 6s ease-in-out infinite;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: .04em;
  left: 1%;
  height: .055em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan), transparent);
  transform-origin: left;
  animation: title-line-draw 1.2s cubic-bezier(.2,.8,.2,1) 1.15s both;
}

.hero-copy-card { backdrop-filter: blur(14px) saturate(125%); }

.button {
  transform: translate3d(var(--button-x, 0), var(--button-y, 0), 0);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.34) 48%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.button:hover::before { transform: translateX(120%); }

.capability-marquee {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  overflow: hidden;
  color: #dceaff;
  border-top: 1px solid rgba(110, 177, 255, .16);
  border-bottom: 1px solid rgba(110, 177, 255, .16);
  background:
    radial-gradient(circle at 15% 0%, rgba(31, 106, 255, .28), transparent 26%),
    linear-gradient(110deg, #030b20, #071b45 58%, #04102d);
}

.marquee-label {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 0 clamp(24px, 4vw, 70px);
  color: #fff;
  border-right: 1px solid rgba(130, 189, 255, .2);
  background: rgba(4, 16, 45, .9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(81,230,255,.1), 0 0 18px var(--cyan);
  animation: status-pulse 2s ease-out infinite;
}

.marquee-viewport { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-flow 36s linear infinite;
}

.marquee-track span {
  padding-inline: clamp(24px, 2.6vw, 48px);
  color: rgba(235,245,255,.88);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 10px var(--blue-400); }

.section { position: relative; isolation: isolate; }
.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -16vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 135, 255, .09), transparent 67%);
  pointer-events: none;
}

.section-heading h2 { text-wrap: balance; }
.section-heading.reveal.is-visible h2 { animation: heading-settle .8s cubic-bezier(.16,.9,.3,1) both; }

.service-card,
.industry-card,
.process-card,
.rating-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform-style: preserve-3d;
}

.has-tilt {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--card-lift, 0px));
  transition: transform .18s ease-out, border-color .25s ease, box-shadow .25s ease;
}

.has-tilt::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(104, 181, 255, .18), transparent 35%);
  transition: opacity .25s ease;
}

.has-tilt:hover { --card-lift: -7px; }
.has-tilt:hover::after { opacity: 1; }
.has-tilt > * { position: relative; z-index: 1; transform: translateZ(12px); }

.solution-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(103, 175, 255, .4);
  border-radius: 50%;
  animation: core-ping 2.8s ease-out infinite;
}

.tech-chips span { position: relative; overflow: hidden; }
.tech-chips span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.65), transparent 75%);
  transform: translateX(-120%);
}
.tech-panel.is-visible .tech-chips span::after { animation: chip-sheen 4.8s ease-in-out infinite; }
.tech-panel.is-visible .tech-chips span:nth-child(2)::after { animation-delay: .35s; }
.tech-panel.is-visible .tech-chips span:nth-child(3)::after { animation-delay: .7s; }
.tech-panel.is-visible .tech-chips span:nth-child(4)::after { animation-delay: 1.05s; }
.tech-panel.is-visible .tech-chips span:nth-child(5)::after { animation-delay: 1.4s; }
.tech-panel.is-visible .tech-chips span:nth-child(6)::after { animation-delay: 1.75s; }

@keyframes wordmark-sheen { 0%,72%,100%{background-position:100% center} 86%{background-position:-100% center} }
@keyframes hero-light-sweep { 0%,35%{background-position:0 0, 140% 0} 68%,100%{background-position:0 0, -80% 0} }
@keyframes organic-morph { to { transform: translate(18px,-10px) rotate(3deg); border-radius: 54% 46% 58% 42% / 45% 55% 45% 55%; } }
@keyframes accent-flow { 0%,100%{background-position:0 center} 50%{background-position:100% center} }
@keyframes title-line-draw { from{transform:scaleX(0);opacity:0} to{transform:scaleX(1);opacity:.75} }
@keyframes status-pulse { 0%{box-shadow:0 0 0 0 rgba(81,230,255,.35),0 0 18px var(--cyan)} 100%{box-shadow:0 0 0 12px rgba(81,230,255,0),0 0 18px var(--cyan)} }
@keyframes marquee-flow { to { transform: translateX(-50%); } }
@keyframes heading-settle { from{opacity:.15;filter:blur(7px);transform:translateY(24px)} to{opacity:1;filter:blur(0);transform:none} }
@keyframes core-ping { 0%{opacity:.8;transform:scale(.86)} 80%,100%{opacity:0;transform:scale(1.22)} }
@keyframes chip-sheen { 0%,62%{transform:translateX(-120%)} 82%,100%{transform:translateX(120%)} }

@media (max-width: 700px) {
  .pointer-aura { display: none; }
  .capability-marquee { grid-template-columns: 1fr; min-height: 100px; }
  .marquee-label { height: 38px; justify-content: center; border-right: 0; border-bottom: 1px solid rgba(130,189,255,.16); }
  .marquee-viewport { height: 62px; display: flex; align-items: center; }
  .marquee-track span { font-size: 12px; padding-inline: 22px; }
  .hero-content::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-wordmark strong,
  .hero::after,
  .hero-title-accent,
  .hero-title-accent::after,
  .marquee-label span,
  .marquee-track,
  .solution-core::after,
  .tech-chips span::after { animation: none !important; }
  .pointer-aura { display: none; }
  .has-tilt { transform: none !important; }
}
.code-rain{position:absolute;inset:0;width:100%;height:100%;z-index:0;opacity:.14;pointer-events:none;mix-blend-mode:screen;mask-image:linear-gradient(90deg,#000 0%,transparent 48%,#000 100%)}
.automation-catalog{overflow:hidden;color:#fff;background:radial-gradient(circle at 15% 10%,rgba(16,183,238,.18),transparent 32%),radial-gradient(circle at 88% 75%,rgba(108,76,232,.2),transparent 30%),#061625}
.automation-catalog::before{background-image:linear-gradient(rgba(48,198,244,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(48,198,244,.055) 1px,transparent 1px);background-size:42px 42px;opacity:1}
.automation-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:40px}
.automation-card{position:relative;min-height:220px;padding:29px 30px;border:1px solid rgba(126,205,237,.16);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));box-shadow:inset 0 1px rgba(255,255,255,.08);transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease}
.automation-card:hover{transform:translateY(-6px);border-color:rgba(61,205,255,.55);box-shadow:0 24px 55px rgba(0,0,0,.25),0 0 35px rgba(35,192,246,.08)}
.automation-card>span{display:inline-grid;place-items:center;width:37px;height:37px;border:1px solid rgba(72,208,255,.35);border-radius:11px;color:#58d5ff;background:rgba(24,190,242,.09);font-size:11px;font-weight:900}
.automation-card h3{margin:20px 0 10px;color:#fff;font-size:22px}.automation-card p{margin:0;color:#a9bdca;line-height:1.7}.automation-card small{display:block;margin-top:22px;color:#5bd8ff;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.automation-flow{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:30px;padding:22px;border:1px solid rgba(88,210,255,.18);border-radius:18px;background:rgba(3,18,31,.58);color:#d9f4ff;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.automation-flow i{width:46px;height:1px;background:linear-gradient(90deg,#27c8f7,#7757ed);position:relative}.automation-flow i::after{content:"";position:absolute;right:0;top:-3px;border-left:6px solid #7757ed;border-top:3px solid transparent;border-bottom:3px solid transparent}
@media(max-width:760px){.code-rain{opacity:.09;mask-image:linear-gradient(#000,transparent)}.automation-grid{grid-template-columns:1fr}.automation-card{min-height:0;padding:23px}.automation-flow{align-items:flex-start;flex-direction:column}.automation-flow i{width:1px;height:24px;margin-left:12px;background:linear-gradient(#27c8f7,#7757ed)}.automation-flow i::after{right:-3px;top:auto;bottom:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:6px solid #7757ed}}
@media(prefers-reduced-motion:reduce){.code-rain{display:none}.automation-card:hover{transform:none}}
.mid-cta{position:relative;z-index:2;padding:34px 0;background:#071927}.mid-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:30px 34px;border:1px solid rgba(81,202,244,.2);border-radius:22px;background:linear-gradient(120deg,rgba(29,183,230,.1),rgba(105,78,229,.1))}.mid-cta-inner div{display:grid;gap:7px}.mid-cta-inner span{color:#55d5ff;font-size:11px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}.mid-cta-inner strong{max-width:780px;color:#fff;font-size:clamp(18px,2vw,27px);line-height:1.35}.mid-cta-inner .button{flex:0 0 auto}@media(max-width:760px){.mid-cta{padding:20px 0}.mid-cta-inner{align-items:flex-start;flex-direction:column;padding:24px}.mid-cta-inner .button{width:100%}}
.legal-footer{padding:0 0 40px}.legal-footer .shell{display:flex;justify-content:center;gap:22px;padding-top:22px;border-top:1px solid #dbe8f0}.legal-footer a{color:#376078;text-decoration:none;font-size:13px;font-weight:750}.legal-footer a:hover,.legal-footer a[aria-current="page"]{color:#079bc8}
