:root {
  --color-page: #e9eaeb;
  --color-card: #ffffff;
  --color-line: rgba(18, 36, 58, 0.08);
  --color-line-strong: rgba(255, 255, 255, 0.14);
  --color-text: #13243c;
  --color-text-muted: #6c798c;
  --color-brand: #0b4f95;
  --color-accent: #52a9ec;
  --color-hero: linear-gradient(180deg, #dde0e1 0%, #dadcde 100%);
  --color-footer: #061529;
  --font-sans: "Inter", "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 50px rgba(9, 32, 58, 0.08);
  --shadow-card: 0 16px 30px rgba(9, 32, 58, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-page);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-transition-active {
  overflow: hidden;
}

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

svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
}

[data-site-header] {
  display: block;
  width: 100%;
}

.site-header {
  z-index: 1030;
}

.page-transition {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 280ms ease,
    visibility 280ms ease;
  z-index: 2000;
}

.page-transition.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-transition.is-hiding {
  opacity: 0;
}

.page-transition__layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(83, 183, 251, 0.18) 0%, rgba(83, 183, 251, 0) 28%),
    radial-gradient(circle at 82% 20%, rgba(120, 212, 255, 0.14) 0%, rgba(120, 212, 255, 0) 26%),
    linear-gradient(160deg, rgba(4, 12, 21, 0.9) 0%, rgba(7, 21, 35, 0.96) 100%);
  backdrop-filter: blur(10px);
}

.page-transition__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 28rem);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(160, 216, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 21, 36, 0.84) 0%, rgba(9, 25, 40, 0.72) 100%);
  box-shadow: 0 30px 54px rgba(3, 11, 20, 0.28);
}

.page-transition__eyebrow {
  color: #8fdcff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-transition__logo {
  display: block;
  width: min(232px, 78%);
  height: auto;
}

.page-transition__track {
  position: relative;
  width: min(100%, 15rem);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.page-transition__bar {
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(83, 183, 251, 0) 0%, #6ac1ff 52%, rgba(83, 183, 251, 0) 100%);
  animation: page-transition-bar 1s ease-in-out infinite;
}

@keyframes page-transition-bar {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(360%);
  }
}

.site-navbar {
  min-height: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.94) 100%);
  border-bottom: 1px solid rgba(19, 36, 60, 0.08);
  box-shadow: 0 16px 34px rgba(14, 28, 47, 0.08);
  backdrop-filter: blur(20px);
}

.site-navbar__container {
  width: 100%;
  gap: 1rem;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.site-header__brand img {
  display: block;
  width: min(214px, 100%);
  height: auto;
}

.site-navbar .navbar-brand {
  margin-right: 0;
  padding-block: 0;
}

.site-navbar__collapse {
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-navbar__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.site-navbar__menu {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-navbar .nav-item {
  display: flex;
}

.site-navbar .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border-radius: 14px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus-visible {
  background: rgba(11, 79, 149, 0.05);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px rgba(11, 79, 149, 0.05);
  transform: translateY(-1px);
}

.site-navbar .navbar-nav .nav-link.is-active {
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px rgba(11, 79, 149, 0.08);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(27, 128, 214, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #44a8ee 0%, #2f92dc 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(30, 116, 188, 0.18);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: linear-gradient(135deg, #54b4f5 0%, #358fda 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__cta i {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.site-header__cta:hover i,
.site-header__cta:focus-visible i {
  transform: translateX(2px);
}

.site-header__cta.is-active {
  background: linear-gradient(135deg, #0e64b6 0%, #0b4f95 100%);
  border-color: rgba(11, 79, 149, 0.28);
  box-shadow: 0 14px 30px rgba(11, 79, 149, 0.24);
}

.site-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.26rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(14, 28, 47, 0.08);
}

.site-language-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2rem;
  padding: 0 0.72rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-language-switcher__button:hover,
.site-language-switcher__button:focus-visible {
  background: rgba(11, 79, 149, 0.07);
  color: var(--color-text);
  transform: translateY(-1px);
}

.site-language-switcher__button.is-active {
  background: linear-gradient(135deg, rgba(82, 169, 236, 0.2) 0%, rgba(11, 79, 149, 0.14) 100%);
  color: var(--color-brand);
}

.site-navbar__toggler {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-brand);
  box-shadow: 0 10px 20px rgba(14, 28, 47, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-navbar__toggler:focus {
  box-shadow: none;
}

.site-navbar__toggler:hover,
.site-navbar__toggler:focus-visible {
  background: rgba(11, 79, 149, 0.06);
  border-color: rgba(11, 79, 149, 0.14);
  color: #083c73;
}

.site-navbar__toggler i,
.service-card__icon i,
.feature-item__icon i,
.site-footer__social i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(8.1rem, 14vw, 9.4rem) 0 5.4rem;
  background:
    radial-gradient(circle at 16% 16%, rgba(84, 176, 243, 0.16) 0, rgba(84, 176, 243, 0) 30%),
    radial-gradient(circle at 84% 18%, rgba(116, 205, 255, 0.09) 0, rgba(116, 205, 255, 0) 26%),
    linear-gradient(155deg, #071320 0%, #0b1c2e 48%, #10253c 100%);
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(151, 205, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 205, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 6.5rem;
  right: max(1.5rem, 5vw);
  width: min(25rem, 32vw);
  height: min(25rem, 32vw);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(97, 190, 248, 0.18) 0%, rgba(40, 109, 191, 0.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(158, 219, 255, 0.08);
  transform: rotate(12deg);
  opacity: 0.9;
  pointer-events: none;
}

.hero .container-xxl {
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 39rem;
}

.hero__eyebrow {
  margin: 0 0 0.9rem;
  color: #8fdcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__network {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__mesh {
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.hero__mesh-glows circle {
  fill: rgba(94, 191, 255, 0.14);
}

.hero__mesh-grid path {
  fill: none;
  stroke: rgba(164, 209, 255, 0.08);
  stroke-width: 1;
}

.hero__mesh-flow path {
  fill: none;
  stroke: rgba(116, 216, 255, 0.42);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hero__mesh-flow path.is-soft {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.4;
  stroke-dasharray: 7 11;
}

.hero__mesh-frames rect {
  fill: rgba(10, 21, 36, 0.42);
  stroke: rgba(160, 216, 255, 0.14);
  stroke-width: 1.2;
}

.hero__mesh-frame-details circle {
  fill: rgba(255, 255, 255, 0.34);
}

.hero__mesh-frame-details rect {
  fill: rgba(110, 218, 255, 0.72);
}

.hero__mesh-frame-details rect.is-soft {
  fill: rgba(255, 255, 255, 0.24);
}

.hero__mesh-nodes circle {
  fill: #8edcff;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 3;
}

.hero__mesh-rings circle {
  fill: none;
  stroke: rgba(142, 220, 255, 0.22);
  stroke-width: 1.5;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 14px 30px rgba(3, 11, 20, 0.24);
}

.hero__lead {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__highlights span {
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(160, 216, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__note {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero__panel {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border: 1px solid rgba(203, 218, 232, 0.92);
  border-radius: 28px;
  background: rgba(248, 251, 255, 0.96);
  box-shadow: 0 28px 56px rgba(4, 12, 22, 0.22);
}

.hero__panel-eyebrow {
  margin: 0 0 0.7rem;
  color: #1a76bf;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #12233a;
}

.hero__panel-list {
  display: grid;
  gap: 0;
}

.hero__step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid #e2ebf4;
}

.hero__step:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero__step-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #49aced 0%, #2873c6 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(28, 99, 169, 0.18);
}

.hero__step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #12233a;
}

.hero__step p {
  margin: 0;
  color: #65768c;
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: #0b4f95;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero .site-btn--primary {
  background: linear-gradient(135deg, #53b7fb 0%, #2f8fda 100%);
  box-shadow: 0 18px 34px rgba(15, 83, 142, 0.28);
}

.hero .site-btn--primary:hover,
.hero .site-btn--primary:focus-visible {
  background: linear-gradient(135deg, #6ac1ff 0%, #3a98e4 100%);
}

.hero .site-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(3, 11, 20, 0.18);
}

.hero .site-btn--secondary:hover,
.hero .site-btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.site-btn:hover,
.site-btn:focus-visible {
  transform: translateY(-1px);
}

.site-btn--primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 88, 157, 0.22);
}

.site-btn--primary:hover,
.site-btn--primary:focus-visible {
  background: #3c99e0;
  color: #ffffff;
}

.site-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  border-color: rgba(19, 36, 60, 0.12);
}

.site-btn--secondary:hover,
.site-btn--secondary:focus-visible {
  background: #ffffff;
  color: var(--color-text);
}

.site-btn--light {
  background: #ffffff;
  color: var(--color-brand);
  border-color: #ffffff;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
}

.site-btn--light:hover,
.site-btn--light:focus-visible {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff;
}

.section-space {
  padding: 5.25rem 0;
}

.home-paths {
  background: #f7f8f9;
  border-top: 1px solid rgba(19, 36, 60, 0.06);
  border-bottom: 1px solid rgba(19, 36, 60, 0.06);
}

.home-paths__lead {
  max-width: 24rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.home-path-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.65rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.home-path-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-path-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.home-path-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.home-path-card__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 1.3rem;
  padding: 0;
  list-style: none;
}

.home-path-card__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.home-path-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(82, 169, 236, 0.12);
}

.home-path-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 2.25rem;
}

.section-heading__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading__eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.service-delivery h2,
.expertise__content h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading__link {
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-card {
  padding: 1.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-line) !important;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.35rem;
  border-radius: 14px;
  background: var(--color-brand);
  color: #ffffff;
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0.9rem 0 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.service-card__tags {
  display: grid;
  gap: 0.65rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card__tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: none;
}

.service-card__tags li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(82, 169, 236, 0.12);
}

.service-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: inherit;
}

.service-card__link:hover .service-card,
.service-card__link:focus-visible .service-card {
  transform: translateY(-5px);
  border-color: rgba(82, 169, 236, 0.2) !important;
  box-shadow: 0 24px 34px rgba(13, 27, 45, 0.08);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--color-brand);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-card__cta i {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.service-card__link:hover .service-card__cta i,
.service-card__link:focus-visible .service-card__cta i {
  transform: translateX(2px);
}

.expertise {
  background: #f1f2f4;
}

.expertise__visual {
  position: relative;
}

.expertise__panel {
  padding: 2rem;
  border: 1px solid rgba(11, 79, 149, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 51, 92, 0.96) 0%, rgba(6, 31, 58, 0.98) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.expertise__panel-header {
  display: grid;
  gap: 0.55rem;
}

.expertise__panel-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expertise__panel-header strong {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.expertise__panel-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.expertise__panel-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise__panel-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.expertise__panel-step {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #99e1ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.expertise__panel-item h3 {
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-size: 1.03rem;
  letter-spacing: -0.03em;
}

.expertise__panel-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.62;
}

.expertise__panel-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise__panel-note strong {
  font-size: 1rem;
}

.expertise__panel-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.62;
}

.expertise__content {
  max-width: 36rem;
}

.expertise__lead {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.76;
}

.feature-list {
  display: grid;
  gap: 1.45rem;
  margin-top: 1.65rem;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item + .feature-item {
  margin-top: 0;
}

.feature-item__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-brand);
}

.feature-item h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.feature-item p {
  margin: 0.5rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.expertise__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-band {
  padding: 5rem 0;
  background: #f6f7f8;
  border-top: 1px solid rgba(19, 36, 60, 0.06);
  border-bottom: 1px solid rgba(19, 36, 60, 0.06);
}

.trust-band__intro {
  max-width: 48rem;
  margin: 0 auto 2.25rem;
}

.trust-band__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.trust-band__lead {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.trust-band__carousel {
  --logo-gap: 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.trust-band__track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  animation: trust-band-scroll 28s linear infinite;
}

.trust-band__carousel:hover .trust-band__track {
  animation-play-state: paused;
}

.trust-band__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(170px, 16vw, 220px);
  height: 96px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(10, 24, 40, 0.05);
}

.trust-band__logo img {
  display: block;
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

@keyframes trust-band-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 80% 76%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, #2278b8 0%, #2f91da 100%);
  color: #ffffff;
}

.cta__content p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.cta__actions {
  margin-top: 1.7rem;
}

.cta__secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
}

.cta__secondary:hover,
.cta__secondary:focus-visible {
  background: #ffffff;
  color: var(--color-brand);
  border-color: #ffffff;
}

.site-footer {
  background: var(--color-footer);
  color: #ffffff;
}

.site-footer__inner {
  padding: 3.5rem 0 1.75rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.site-footer__brand img {
  display: block;
  width: min(236px, 100%);
  height: auto;
}

.site-footer__intro p {
  max-width: 320px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 1.1rem;
}

.site-footer__social {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.6rem;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__contact {
  display: grid;
  gap: 0.9rem;
}

.site-footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  color: #ffffff !important;
  font-weight: 700;
}

.site-footer__contact-link i {
  font-size: 1rem;
  color: var(--color-accent);
}

.site-footer__contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.85rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-footer__contact-cta:hover,
.site-footer__contact-cta:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-brand);
}

.site-footer__base {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line-strong);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
}

.site-btn--outline {
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  border-color: rgba(19, 36, 60, 0.14);
}

.site-btn--outline:hover,
.site-btn--outline:focus-visible {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff;
}

.about-section {
  padding: 5.25rem 0;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 78% 18%, rgba(152, 198, 230, 0.14) 0, rgba(152, 198, 230, 0) 22%),
    linear-gradient(155deg, #09131f 0%, #0f1f31 48%, #162d45 100%);
  padding-top: 8.75rem;
  color: #ffffff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(4, 12, 22, 0) 0%, rgba(4, 12, 22, 0.3) 100%);
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(5, 14, 25, 0) 0%, rgba(5, 14, 25, 0.4) 100%);
  pointer-events: none;
}

.about-hero .container-xxl {
  position: relative;
  z-index: 1;
}

.about-hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-hero__mesh {
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.about-hero__halo circle {
  fill: rgba(156, 204, 235, 0.12);
}

.about-hero__bands rect {
  fill: rgba(12, 23, 37, 0.38);
  stroke: rgba(178, 217, 243, 0.12);
  stroke-width: 1.2;
}

.about-hero__bands rect:nth-child(2) {
  fill: rgba(14, 28, 44, 0.48);
}

.about-hero__bands rect:nth-child(3) {
  fill: rgba(11, 24, 40, 0.56);
}

.about-hero__band-lines path {
  fill: none;
  stroke: rgba(186, 220, 243, 0.14);
  stroke-width: 8;
  stroke-linecap: round;
}

.about-hero__cards rect {
  fill: rgba(6, 18, 31, 0.44);
  stroke: rgba(173, 218, 245, 0.16);
  stroke-width: 1.2;
}

.about-hero__cards rect:nth-child(2) {
  fill: rgba(11, 24, 40, 0.52);
}

.about-hero__frame-details circle {
  fill: rgba(255, 255, 255, 0.34);
}

.about-hero__frame-details rect {
  fill: rgba(110, 218, 255, 0.72);
}

.about-hero__frame-details rect.is-soft {
  fill: rgba(255, 255, 255, 0.24);
}

.about-hero__spine path {
  fill: none;
  stroke: rgba(133, 205, 248, 0.34);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.about-hero__spine path.is-soft {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.4;
  stroke-dasharray: 7 11;
}

.about-hero__markers circle {
  fill: #9bdfff;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 3;
}

.about-hero__rings circle {
  fill: none;
  stroke: rgba(155, 223, 255, 0.2);
  stroke-width: 1.5;
}

.about-hero__content {
  max-width: 36rem;
}

.about-hero__eyebrow {
  margin: 0 0 0.65rem;
  color: #8fdcff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(3, 11, 20, 0.26);
}

.about-hero h1 span {
  color: #8fdcff;
}

.about-hero__lead {
  margin: 1rem 0 1.9rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.8;
}

.about-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-hero__highlights span {
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(160, 216, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
}

.about-hero__panel {
  padding: 2rem;
  border: 1px solid rgba(160, 216, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 21, 36, 0.72) 0%, rgba(9, 25, 40, 0.62) 100%);
  box-shadow: 0 26px 52px rgba(3, 11, 20, 0.24);
  backdrop-filter: blur(14px);
}

.about-hero__panel-eyebrow {
  margin: 0 0 0.7rem;
  color: #8fdcff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero__panel h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.about-hero__capabilities {
  display: grid;
  gap: 1rem;
}

.about-capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-capability:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-capability__icon,
.about-card__icon,
.about-value-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.about-hero .about-capability__icon {
  background: linear-gradient(135deg, rgba(70, 170, 239, 0.24) 0%, rgba(34, 101, 182, 0.32) 100%);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(4, 12, 22, 0.18);
  border: 1px solid rgba(160, 216, 255, 0.12);
}

.about-card__icon {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-accent) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.about-capability__icon i,
.about-card__icon i,
.about-value-card__icon i {
  font-size: 1.18rem;
}

.about-card__icon i {
  font-size: 1.55rem;
}

.about-capability h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.about-hero .about-capability p {
  color: rgba(255, 255, 255, 0.68);
}

.about-hero .site-btn--primary {
  background: linear-gradient(135deg, #53b7fb 0%, #2f8fda 100%);
  box-shadow: 0 18px 34px rgba(15, 83, 142, 0.28);
}

.about-hero .site-btn--primary:hover,
.about-hero .site-btn--primary:focus-visible {
  background: linear-gradient(135deg, #6ac1ff 0%, #3a98e4 100%);
}

.about-hero .site-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(3, 11, 20, 0.18);
}

.about-hero .site-btn--outline:hover,
.about-hero .site-btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.about-capability p,
.about-overview__intro,
.about-overview__body p,
.about-card p,
.about-method__content > p,
.about-step p,
.about-method__pillar p,
.about-culture__lead,
.about-value-card p,
.about-cta__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.about-overview__intro {
  max-width: 22rem;
}

.about-overview__body {
  display: grid;
  gap: 1.1rem;
  max-width: 42rem;
}

.about-overview__focus {
  padding: 1.8rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.about-overview__focus h3,
.about-method__panel h3 {
  margin: 0 0 1rem;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.about-checklist {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-accent) 100%);
  box-shadow: 0 0 0 4px rgba(82, 169, 236, 0.14);
}

.about-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.95rem;
  align-items: center;
  height: 100%;
  padding: 2rem 1.85rem 1.95rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.about-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border-radius: 16px;
}

.about-card__label {
  display: inline-block;
  margin: 0;
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-card h3 {
  grid-column: 1 / -1;
  width: 100%;
  margin: 1.15rem 0 1rem;
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-card p {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 0;
  padding-top: 0.1rem;
}

.about-method__content h2,
.about-cta__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.about-method {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.about-method__content > p {
  max-width: 39rem;
  margin-bottom: 1.55rem;
}

.about-steps {
  display: grid;
  gap: 1rem;
}

.about-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 36, 60, 0.08);
}

.about-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-step__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-brand);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
}

.about-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.about-method__panel {
  padding: 1.85rem;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #f7f9fb;
  box-shadow: var(--shadow-card);
}

.about-method__pillars {
  display: grid;
  gap: 0.9rem;
}

.about-method__pillar {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(19, 36, 60, 0.06);
  border-radius: 16px;
  background: #ffffff;
}

.about-method__pillar strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.about-culture {
  background: linear-gradient(135deg, rgba(10, 61, 118, 0.98) 0%, rgba(15, 90, 165, 0.94) 100%);
  color: #ffffff;
}

.about-culture .section-heading {
  margin-bottom: 2.75rem;
}

.about-culture__lead {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.about-value-card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-value-card__icon {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #99e1ff;
}

.about-value-card h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.about-value-card p {
  color: rgba(255, 255, 255, 0.8);
}

.about-cta {
  background: linear-gradient(180deg, #eef1f4 0%, #e7ebee 100%);
}

.about-cta__content p {
  max-width: 38rem;
  margin: 0 auto 1.7rem;
}

.service-page-section {
  padding: 5rem 0;
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8.75rem;
  color: #ffffff;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(4, 12, 22, 0) 0%, rgba(4, 12, 22, 0.3) 100%);
  pointer-events: none;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(5, 14, 25, 0) 0%, rgba(5, 14, 25, 0.4) 100%);
  pointer-events: none;
}

.service-page-hero--services {
  background:
    radial-gradient(circle at 14% 14%, rgba(72, 155, 220, 0.16) 0, rgba(72, 155, 220, 0) 22%),
    radial-gradient(circle at 84% 18%, rgba(122, 216, 255, 0.2) 0, rgba(122, 216, 255, 0) 24%),
    linear-gradient(150deg, #060f1b 0%, #0a1b2d 44%, #11385a 100%);
}

.service-page-hero--clients {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 82% 22%, rgba(171, 214, 241, 0.14) 0, rgba(171, 214, 241, 0) 24%),
    linear-gradient(150deg, #08111a 0%, #0d1a27 42%, #1a2d3f 100%);
}

.service-page-hero .container-xxl {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.service-page-hero .container-xxl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(0.5rem, 2vw, 1.6rem);
  width: min(100%, 74rem);
  height: clamp(22rem, 40vw, 30rem);
  transform: translateX(-50%);
  border-radius: 40px;
  pointer-events: none;
  filter: blur(14px);
  z-index: 0;
}

.service-page-hero--services .container-xxl::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(3, 11, 20, 0.84) 0%, rgba(4, 14, 24, 0.68) 42%, rgba(3, 11, 20, 0) 80%);
}

.service-page-hero--clients .container-xxl::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(4, 12, 20, 0.82) 0%, rgba(7, 16, 25, 0.64) 44%, rgba(4, 12, 20, 0) 82%);
}

.service-page-hero .row {
  position: relative;
  z-index: 1;
}

.service-page-hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-page-hero__mesh {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.services-hero__halo circle {
  fill: rgba(98, 200, 255, 0.12);
}

.services-hero__frames rect {
  fill: rgba(7, 18, 32, 0.5);
  stroke: rgba(176, 224, 249, 0.16);
  stroke-width: 1.2;
}

.services-hero__frames rect:nth-child(2) {
  fill: rgba(10, 22, 37, 0.6);
}

.services-hero__frames rect:nth-child(3) {
  fill: rgba(10, 20, 34, 0.72);
}

.services-hero__top-bars rect {
  fill: rgba(16, 36, 58, 0.74);
  stroke: rgba(190, 229, 249, 0.1);
  stroke-width: 1;
}

.services-hero__top-bars rect:nth-child(3) {
  fill: rgba(74, 162, 222, 0.38);
}

.services-hero__code-lines rect {
  fill: rgba(177, 226, 250, 0.8);
}

.services-hero__code-lines rect.is-soft {
  fill: rgba(255, 255, 255, 0.22);
}

.services-hero__code-lines rect.is-accent {
  fill: rgba(116, 210, 255, 0.94);
}

.services-hero__tokens circle {
  fill: rgba(255, 255, 255, 0.34);
}

.services-hero__tokens rect {
  fill: rgba(116, 210, 255, 0.8);
}

.services-hero__tokens rect.is-soft {
  fill: rgba(255, 255, 255, 0.22);
}

.services-hero__flow path {
  fill: none;
  stroke: rgba(138, 214, 255, 0.26);
  stroke-width: 2;
  stroke-linecap: round;
}

.services-hero__flow path.is-soft {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.4;
  stroke-dasharray: 6 10;
}

.services-hero__markers circle {
  fill: #9edfff;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 3;
}

.services-hero__brackets path {
  fill: none;
  stroke: rgba(161, 223, 255, 0.26);
  stroke-width: 3;
  stroke-linecap: round;
}

.services-hero__rings circle {
  fill: none;
  stroke: rgba(155, 223, 255, 0.2);
  stroke-width: 1.5;
}

.clients-hero__halo circle {
  fill: rgba(167, 216, 246, 0.1);
}

.clients-hero__constellation path {
  fill: none;
  stroke: rgba(186, 225, 247, 0.28);
  stroke-width: 2;
  stroke-linecap: round;
}

.clients-hero__constellation path.is-soft {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.4;
  stroke-dasharray: 7 11;
}

.clients-hero__node-halos circle {
  fill: rgba(158, 208, 240, 0.1);
}

.clients-hero__avatar-shell {
  fill: rgba(10, 22, 35, 0.58);
  stroke: rgba(202, 233, 250, 0.18);
  stroke-width: 1.4;
}

.clients-hero__avatar-shell.is-featured {
  fill: rgba(12, 26, 40, 0.72);
  stroke: rgba(205, 235, 251, 0.24);
}

.clients-hero__avatar-shell.is-small {
  fill: rgba(10, 22, 35, 0.64);
}

.clients-hero__avatar-head {
  fill: rgba(219, 239, 252, 0.86);
}

.clients-hero__avatar-body {
  fill: rgba(175, 221, 246, 0.74);
}

.clients-hero__markers circle {
  fill: #d2eeff;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 3;
}

.clients-hero__rings circle {
  fill: none;
  stroke: rgba(210, 238, 255, 0.18);
  stroke-width: 1.5;
}

.service-page-hero__eyebrow {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(2, 8, 15, 0.3);
}

.service-page-hero__content {
  max-width: 36rem;
}

.service-page-hero h1 {
  position: relative;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 28px rgba(2, 8, 15, 0.34);
}

.service-page-hero h1 span {
  color: #82c9ff;
}

.service-page-hero__lead {
  position: relative;
  max-width: 38rem;
  margin: 1rem 0 1.9rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 0 8px 20px rgba(2, 8, 15, 0.22);
}

.service-page-hero__cta {
  position: relative;
}

.service-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.service-page-hero .site-btn--primary {
  background: linear-gradient(135deg, #53b7fb 0%, #2f8fda 100%);
  box-shadow: 0 18px 34px rgba(15, 83, 142, 0.28);
}

.service-page-hero .site-btn--primary:hover,
.service-page-hero .site-btn--primary:focus-visible {
  background: linear-gradient(135deg, #6ac1ff 0%, #3a98e4 100%);
}

.service-page-hero .site-btn--outline {
  background: rgba(8, 18, 30, 0.5);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(7, 18, 31, 0.2);
}

.service-page-hero .site-btn--outline:hover,
.service-page-hero .site-btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.service-page-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-page-hero__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 18, 30, 0.44);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.service-page-hero__panel {
  padding: 2rem;
  border: 1px solid rgba(160, 216, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 21, 36, 0.72) 0%, rgba(9, 25, 40, 0.62) 100%);
  box-shadow: 0 26px 52px rgba(3, 11, 20, 0.24);
  backdrop-filter: blur(14px);
}

.service-page-hero__panel-eyebrow {
  margin: 0 0 0.7rem;
  color: #8fdcff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page-hero__panel h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.service-page-hero__capabilities {
  display: grid;
  gap: 1rem;
}

.service-page-hero__capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page-hero__capability:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-page-hero__capability-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(160, 216, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(70, 170, 239, 0.24) 0%, rgba(34, 101, 182, 0.32) 100%);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(4, 12, 22, 0.18);
}

.service-page-hero__capability-icon i {
  font-size: 1.18rem;
}

.service-page-hero__capability h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.service-page-hero__capability p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.65;
}

.service-page-offers {
  background: #f3f4f5;
}

.service-page-offers .section-heading {
  margin-bottom: 2rem;
}

.service-page-offers__intro {
  max-width: 35rem;
  margin: 0.85rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.service-offer {
  height: 100%;
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 20px rgba(14, 26, 44, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-offer:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 169, 236, 0.2);
  box-shadow: 0 18px 28px rgba(14, 26, 44, 0.08);
}

.service-offer__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-offer__link:hover,
.service-offer__link:focus-visible {
  color: inherit;
}

.service-offer__link:hover .service-offer,
.service-offer__link:focus-visible .service-offer {
  transform: translateY(-4px);
  border-color: rgba(82, 169, 236, 0.2);
  box-shadow: 0 18px 28px rgba(14, 26, 44, 0.08);
}

.service-offer__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 11px;
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-brand);
}

.service-offer__icon i {
  font-size: 1.15rem;
}

.service-offer__tag {
  display: block;
  margin-bottom: 0.35rem;
  color: #4d8dca;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-offer h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.service-offer p {
  min-height: 78px;
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-offer__list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-offer__list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.service-offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.service-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--color-brand);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-offer__cta i {
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.service-offer__link:hover .service-offer__cta i,
.service-offer__link:focus-visible .service-offer__cta i {
  transform: translateX(2px);
}

.service-delivery {
  background: #eef1f3;
}

.service-delivery__lead {
  max-width: 30rem;
  margin: 0.95rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.service-phase {
  height: 100%;
  padding: 1.3rem 1.2rem 1.15rem;
  border: 1px solid rgba(19, 36, 60, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(14, 26, 44, 0.04);
}

.service-phase__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-phase h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.service-phase p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.service-support {
  background: #e8ecef;
}

.service-support__visual {
  position: relative;
  max-width: 27rem;
}

.support-console {
  position: relative;
  min-height: 326px;
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 14%, rgba(134, 210, 255, 0.28) 0, rgba(134, 210, 255, 0) 26%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 22%),
    linear-gradient(160deg, #0e2943 0%, #133554 46%, #1a4368 100%);
  box-shadow: 0 28px 48px rgba(16, 34, 51, 0.14);
}

.support-console__backdrop {
  position: absolute;
  inset: auto -14% -22%;
  height: 68%;
  background: radial-gradient(circle, rgba(117, 206, 255, 0.22) 0, rgba(117, 206, 255, 0) 62%);
}

.support-console__shell {
  position: absolute;
  inset: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.92fr);
  grid-template-areas:
    "topbar topbar"
    "overview cards"
    "network network";
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 20, 33, 0.24) 0%, rgba(8, 20, 33, 0.42) 100%),
    rgba(9, 22, 36, 0.38);
  backdrop-filter: blur(8px);
}

.support-console__topbar {
  grid-area: topbar;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-console__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.support-console__dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.support-console__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-console__overview {
  grid-area: overview;
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr auto;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(140, 210, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 28, 45, 0.18) 100%);
}

.support-console__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.support-console__status-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #84e8a1;
  box-shadow: 0 0 0 0.35rem rgba(132, 232, 161, 0.16);
}

.support-console__chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 0.55rem;
  min-height: 108px;
  padding: 0.35rem 0 0;
}

.support-console__chart span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #8fe3ff 0%, #4ba8ff 100%);
  box-shadow: 0 12px 20px rgba(12, 93, 172, 0.18);
}

.support-console__chart span:nth-child(1) {
  height: 42%;
}

.support-console__chart span:nth-child(2) {
  height: 68%;
}

.support-console__chart span:nth-child(3) {
  height: 58%;
}

.support-console__chart span:nth-child(4) {
  height: 82%;
}

.support-console__chart span:nth-child(5) {
  height: 61%;
}

.support-console__chart span:nth-child(6) {
  height: 74%;
}

.support-console__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.support-console__timeline span {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.support-console__timeline .is-active {
  background: linear-gradient(90deg, rgba(102, 225, 255, 0.55) 0%, #6ed1ff 100%);
}

.support-console__cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.75rem;
}

.support-console__card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  min-height: 68px;
  padding: 0.82rem 0.9rem 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.support-console__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #67d5ff 0%, rgba(103, 213, 255, 0.15) 100%);
}

.support-console__card strong {
  color: #ffffff;
  font-size: 0.86rem;
  letter-spacing: -0.02em;
}

.support-console__card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
}

.support-console__network {
  grid-area: network;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.15rem;
}

.support-console__network::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(115, 212, 255, 0.28), rgba(255, 255, 255, 0.06));
}

.support-console__node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-support__badge {
  position: absolute;
  right: 20px;
  bottom: -16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-brand);
  box-shadow: 0 16px 24px rgba(10, 24, 40, 0.12);
}

.service-support__badge i {
  font-size: 1rem;
}

.service-support__badge span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-support__content {
  max-width: 36rem;
}

.service-support__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-support__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-support__content > p {
  margin: 1rem 0 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.service-support__grid {
  margin-top: 0.2rem;
}

.service-support__point {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(19, 36, 60, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-support__point i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-brand);
  font-size: 0.82rem;
}

.service-support__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding-right: 1.15rem;
}

.service-page-cta {
  background: #f3f4f5;
}

.service-page-cta__panel {
  padding: 3rem 1.5rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #1a5eaa 0%, #2a75c1 100%);
  color: #ffffff;
  box-shadow: 0 24px 40px rgba(16, 34, 51, 0.1);
}

.service-page-cta__panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-page-cta__panel p {
  max-width: 40rem;
  margin: 1rem auto 1.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.72;
}

.service-page-cta__primary {
  background: #4db0ff;
  box-shadow: 0 14px 28px rgba(2, 39, 78, 0.22);
}

.service-page-cta__primary:hover,
.service-page-cta__primary:focus-visible {
  background: #74c2ff;
}

.service-page-cta__secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.service-page-cta__secondary:hover,
.service-page-cta__secondary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-brand);
}

.service-detail-page {
  background: #eef1f3;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(8rem, 14vw, 9.3rem) 0 4.75rem;
  background:
    radial-gradient(circle at 16% 16%, rgba(84, 176, 243, 0.16) 0, rgba(84, 176, 243, 0) 28%),
    radial-gradient(circle at 84% 18%, rgba(116, 205, 255, 0.1) 0, rgba(116, 205, 255, 0) 26%),
    linear-gradient(155deg, #081320 0%, #0d1d30 50%, #12263c 100%);
  color: #ffffff;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 108px 108px;
  opacity: 0.16;
  pointer-events: none;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: 4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(106, 193, 255, 0.22) 0%, rgba(106, 193, 255, 0) 70%);
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
}

.service-detail-hero--software {
  background:
    radial-gradient(circle at 18% 18%, rgba(98, 188, 255, 0.2) 0, rgba(98, 188, 255, 0) 29%),
    linear-gradient(155deg, #081320 0%, #0c1e31 46%, #132943 100%);
}

.service-detail-hero--consulting {
  background:
    radial-gradient(circle at 22% 14%, rgba(122, 212, 255, 0.18) 0, rgba(122, 212, 255, 0) 30%),
    linear-gradient(160deg, #081420 0%, #102234 47%, #163049 100%);
}

.service-detail-hero--platform {
  background:
    radial-gradient(circle at 18% 16%, rgba(82, 173, 236, 0.2) 0, rgba(82, 173, 236, 0) 28%),
    linear-gradient(150deg, #07131e 0%, #0d2136 45%, #173555 100%);
}

.service-detail-hero--architecture {
  background:
    radial-gradient(circle at 18% 16%, rgba(112, 204, 255, 0.16) 0, rgba(112, 204, 255, 0) 28%),
    linear-gradient(150deg, #08131f 0%, #102235 46%, #18314b 100%);
}

.service-detail-hero--legacy {
  background:
    radial-gradient(circle at 20% 18%, rgba(102, 193, 255, 0.16) 0, rgba(102, 193, 255, 0) 28%),
    linear-gradient(152deg, #09131e 0%, #112131 44%, #1a3044 100%);
}

.service-detail-hero--finops {
  background:
    radial-gradient(circle at 18% 16%, rgba(118, 219, 214, 0.16) 0, rgba(118, 219, 214, 0) 28%),
    linear-gradient(150deg, #07141d 0%, #0d2432 44%, #15384a 100%);
}

.service-detail-hero--security {
  background:
    radial-gradient(circle at 18% 16%, rgba(115, 194, 255, 0.14) 0, rgba(115, 194, 255, 0) 28%),
    linear-gradient(150deg, #07121b 0%, #0d1f30 46%, #152d43 100%);
}

.service-detail-hero--integration {
  background:
    radial-gradient(circle at 20% 16%, rgba(111, 213, 255, 0.16) 0, rgba(111, 213, 255, 0) 28%),
    linear-gradient(150deg, #08121e 0%, #0d2234 46%, #14324e 100%);
}

.service-detail-hero .container-xxl {
  position: relative;
  z-index: 1;
}

.service-detail-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.service-detail-breadcrumb a:hover,
.service-detail-breadcrumb a:focus-visible {
  color: #ffffff;
}

.service-detail-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.service-detail-hero__content {
  max-width: 39rem;
}

.service-detail-hero__eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(154, 222, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.service-detail-hero__lead {
  max-width: 37rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
  line-height: 1.78;
}

.service-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.service-detail-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.service-detail-hero__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service-detail-hero__panel {
  position: relative;
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(236, 243, 248, 0.66) 100%);
  color: var(--color-text);
  box-shadow:
    0 30px 42px rgba(6, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-detail-hero__panel::before {
  content: none;
}

.service-detail-hero__panel-eyebrow {
  margin: 0 0 0.45rem;
  color: #4c8dc9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-hero__panel h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.service-detail-hero__panel-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-hero__panel-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  color: rgba(49, 68, 90, 0.82);
  font-size: 0.93rem;
  line-height: 1.6;
}

.service-detail-hero__panel-list li i {
  color: var(--color-brand);
  font-size: 1rem;
  transform: translateY(0.08rem);
}

.service-detail-hero__panel-note {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.service-detail-hero__panel-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.service-detail-hero__panel-note p {
  margin: 0;
  color: rgba(49, 68, 90, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-detail-section {
  padding: 4.75rem 0;
}

.service-detail-section--surface {
  background: #f5f7f8;
}

.service-detail-section--dark {
  background: linear-gradient(180deg, #0b1d30 0%, #10253c 100%);
  color: #ffffff;
}

.service-detail-section--dark .section-heading__eyebrow,
.service-detail-section--dark .service-detail-process__step {
  color: #9addff;
}

.service-detail-section--dark .section-heading h2,
.service-detail-section--dark .service-detail-process__content h3 {
  color: #ffffff;
}

.service-detail-section--dark .service-detail-process__content p,
.service-detail-section--dark .service-detail-process__content li {
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-card {
  height: 100%;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(14, 26, 44, 0.04);
}

.service-detail-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  color: #4c8dc9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.service-detail-card p {
  margin: 0.8rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-detail-card__list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card__list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-detail-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.service-detail-process {
  display: grid;
  gap: 1rem;
}

.service-detail-process__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.service-detail-process__step {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-detail-process__content h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.service-detail-process__content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-detail-process__content ul {
  display: grid;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  padding-left: 1rem;
}

.service-detail-cta {
  display: grid;
  align-items: center;
  min-height: 25rem;
  padding: 4.5rem 0;
}

.service-detail-cta .container-xxl {
  width: 100%;
}

.service-detail-cta__panel {
  width: min(100%, 69rem);
  margin-inline: auto;
  padding: 2.6rem 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(108, 199, 255, 0.16) 0, rgba(108, 199, 255, 0) 24%),
    linear-gradient(160deg, #0c2236 0%, #12304b 48%, #184265 100%);
  color: #ffffff;
  box-shadow: 0 26px 42px rgba(9, 23, 39, 0.16);
}

.service-detail-cta__panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-detail-cta__panel p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.97rem;
  line-height: 1.72;
}

.service-detail-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.clients-page-section {
  padding: 5rem 0;
}

.clients-partners {
  background: #eef1f3;
}

.clients-section-heading {
  max-width: 46rem;
  margin: 0 auto 2.35rem;
}

.clients-section-heading__lead {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.clients-logo-marquee {
  margin-bottom: 0;
}

.clients-logo-marquee__carousel {
  --logo-gap: 1rem;
}

.clients-logo-marquee__track {
  animation-duration: 32s;
}

.clients-logo-marquee__logo {
  flex-basis: clamp(190px, 18vw, 238px);
  height: 114px;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.clients-logo-marquee__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  margin: 0 auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: auto;
}

.clients-logo-marquee__image--microsoft {
  max-width: 188px;
  max-height: 52px;
}

.clients-logo-marquee__image--gol {
  max-width: 176px;
  max-height: 56px;
}

.clients-logo-marquee__image--paschoalotto {
  max-width: 178px;
  max-height: 42px;
}

.clients-logo-marquee__image--zella {
  max-width: 192px;
  max-height: 60px;
}

.clients-logo-marquee__image--wiipo {
  max-width: 144px;
  max-height: 46px;
}

.clients-logo-marquee__image--dandelin {
  max-width: 210px;
  max-height: 60px;
}

.clients-logo-marquee__image--senior {
  max-width: 154px;
  max-height: 44px;
}

.clients-logo-marquee__image--nortal {
  max-width: 148px;
  max-height: 34px;
}

.clients-logo-marquee__image--fmx {
  max-width: 156px;
  max-height: 48px;
}

.clients-logo-marquee__image--vivo {
  max-width: 194px;
  max-height: 54px;
}

.clients-section-heading h2,
.clients-proof h2,
.clients-cta__panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.partner-chip {
  display: grid;
  place-items: center;
  min-height: 68px;
  border-radius: 8px;
  border: 1px solid rgba(19, 36, 60, 0.05);
  background: rgba(255, 255, 255, 0.45);
  color: rgba(19, 36, 60, 0.22);
}

.partner-chip i {
  font-size: 1.25rem;
}

.clients-proof {
  background: #f4f6f7;
}

.clients-proof__lead {
  max-width: 30rem;
  margin: 0.9rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.clients-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.clients-proof__stat {
  min-height: 102px;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(19, 36, 60, 0.07);
  background: rgba(255, 255, 255, 0.9);
}

.clients-proof__stat strong {
  display: block;
  color: #153f69;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.clients-proof__stat span {
  display: block;
  margin-top: 0.4rem;
  color: #8b96a4;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.clients-partnership-panel {
  padding: 1.95rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(12, 24, 40, 0.08);
  border: 1px solid rgba(19, 36, 60, 0.06);
}

.clients-partnership-panel__intro h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.clients-partnership-panel__eyebrow {
  margin: 0 0 0.55rem;
  color: #3b8ddf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clients-partnership-panel__lead {
  margin: 0.8rem 0 0;
  color: #5f6d7d;
  font-size: 0.95rem;
  line-height: 1.72;
}

.clients-partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.clients-partnership-card {
  min-height: 154px;
  padding: 1.15rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(19, 36, 60, 0.06);
  text-align: center;
}

.clients-partnership-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-inline: auto;
  border-radius: 16px;
  background: rgba(11, 79, 149, 0.1);
  color: var(--color-brand);
}

.clients-partnership-card__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  line-height: 1;
}

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

.clients-partnership-card strong {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.3;
}

.clients-partnership-card span:last-child {
  margin-top: 0.42rem;
  color: #7a8593;
  font-size: 0.84rem;
  line-height: 1.6;
}

.clients-partnership-band {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.15rem;
  padding: 1.05rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f5ca7 0%, #2b84d5 100%);
  color: #ffffff;
}

.clients-partnership-band strong {
  font-size: 0.96rem;
}

.clients-partnership-band span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.58;
}

.clients-cta {
  background: #f1f2f4;
}

.clients-cta__panel {
  padding: 3.4rem 1.7rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 14%),
    linear-gradient(135deg, #0d4e8d 0%, #175da3 56%, #236fbd 100%);
  color: #ffffff;
}

.clients-cta__lead {
  max-width: 38rem;
  margin: 1rem auto 1.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.72;
}

.clients-cta__primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-brand);
}

.clients-cta__primary:hover,
.clients-cta__primary:focus-visible {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff;
}

.clients-cta__secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.clients-cta__secondary:hover,
.clients-cta__secondary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-brand);
}

.contact-page-section {
  padding: 8.8rem 0 5rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(82, 169, 236, 0.08) 0, rgba(82, 169, 236, 0) 30%),
    linear-gradient(180deg, #eef1f3 0%, #eceeef 100%);
}

.contact-hero__content {
  max-width: 31rem;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.contact-hero h1 span {
  color: var(--color-brand);
}

.contact-hero__lead {
  margin: 1.2rem 0 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.contact-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-hero__highlights span {
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 3.15rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(10, 24, 40, 0.06);
}

.contact-info-card--primary {
  background:
    radial-gradient(circle at 88% 14%, rgba(82, 169, 236, 0.12) 0, rgba(82, 169, 236, 0) 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 253, 0.98) 100%);
}

.contact-info-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-accent) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.contact-info-card__icon i {
  font-size: 1.2rem;
  line-height: 1;
}

.contact-info-card h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-info-card p {
  margin: 0.45rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.contact-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-info-points {
  display: grid;
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-info-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(82, 169, 236, 0.12);
}

.contact-form-panel {
  padding: 2rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 48px rgba(10, 24, 40, 0.12);
}

.contact-form-panel__header {
  margin-bottom: 1.4rem;
}

.contact-form-panel__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-panel__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-form-panel__header p {
  margin: 0.9rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.contact-form-panel__direct {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1.5rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(19, 36, 60, 0.06);
  border-radius: 18px;
  background: #f6f9fc;
}

.contact-form-panel__direct i {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: rgba(11, 79, 149, 0.08);
  color: var(--color-brand);
  font-size: 1.05rem;
}

.contact-form-panel__direct strong,
.contact-form-panel__direct span {
  display: block;
}

.contact-form-panel__direct strong {
  font-size: 0.94rem;
}

.contact-form-panel__direct span {
  margin-top: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.89rem;
  line-height: 1.62;
}

.contact-form-panel__direct a {
  color: var(--color-brand);
  font-weight: 700;
}

.contact-form-panel .form-label {
  margin-bottom: 0.5rem;
  color: #516172;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__control {
  min-height: 3.2rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 14px;
  background: #f2f5f7;
  color: var(--color-text);
  font-size: 0.93rem;
  box-shadow: none;
}

.contact-form__control::placeholder {
  color: #9aa5b2;
}

.contact-form__control:focus {
  border-color: rgba(82, 169, 236, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(82, 169, 236, 0.12);
}

.contact-form__textarea {
  min-height: 10.5rem;
  padding-top: 1rem;
  resize: vertical;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__counter {
  margin-top: 0.6rem;
  color: #8b96a4;
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.contact-form__counter.is-valid {
  color: #2f8f63;
}

.contact-form.is-submitted .contact-form__control:invalid,
.contact-form__control.is-invalid {
  border-color: rgba(204, 67, 67, 0.42);
  background: #fff7f7;
}

.contact-form.is-submitted .contact-form__control:invalid:focus,
.contact-form__control.is-invalid:focus {
  border-color: rgba(204, 67, 67, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(204, 67, 67, 0.1);
}

.contact-form__check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  min-height: 1.75rem;
  padding-left: 0;
}

.contact-form__check .form-check-input {
  flex: 0 0 auto;
  margin: 0.15rem 0 0;
  border-color: rgba(19, 36, 60, 0.16);
  border-radius: 4px;
}

.contact-form__check .form-check-input:checked {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

.contact-form.is-submitted .contact-form__check .form-check-input:invalid {
  border-color: rgba(204, 67, 67, 0.46);
  box-shadow: 0 0 0 0.18rem rgba(204, 67, 67, 0.08);
}

.contact-form__check .form-check-label {
  color: #8b96a4;
  font-size: 0.76rem;
  line-height: 1.6;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #34a6ef 0%, #2f92dc 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47, 146, 220, 0.2);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.contact-form__submit:disabled {
  background: linear-gradient(135deg, #a9c1d5 0%, #8fa9bf 100%);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.88;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #ffffff;
  border-color: #34a6ef;
  color: #2f92dc;
}

.contact-form__submit:disabled:hover,
.contact-form__submit:disabled:focus-visible {
  background: linear-gradient(135deg, #a9c1d5 0%, #8fa9bf 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
  transform: none;
}

.contact-form__submit-spinner {
  animation: contact-form-spin 900ms linear infinite;
}

.contact-form__feedback {
  margin-bottom: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form__feedback[data-state="success"] {
  border-color: rgba(45, 143, 99, 0.18);
  background: rgba(45, 143, 99, 0.08);
  color: #1d6b4b;
}

.contact-form__feedback[data-state="error"] {
  border-color: rgba(204, 67, 67, 0.18);
  background: rgba(204, 67, 67, 0.08);
  color: #b23a3a;
}

@keyframes contact-form-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-form__note {
  margin: 0.85rem 0 0;
  color: #8b96a4;
  font-size: 0.78rem;
  line-height: 1.58;
  text-align: center;
}

@media (max-width: 991.98px) {
  .site-header.fixed-top {
    position: sticky;
    top: 0;
    right: auto;
    left: auto;
  }

  .site-navbar__collapse {
    margin-top: 0.9rem;
    gap: 1rem;
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid rgba(19, 36, 60, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(9, 25, 44, 0.12);
  }

  .site-navbar__menu {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-navbar .navbar-nav {
    gap: 0.35rem;
  }

  .site-navbar__actions {
    display: grid;
    width: 100%;
    gap: 0.85rem;
  }

  .site-navbar .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.9rem;
    padding: 0 0.95rem;
    border-radius: 14px;
  }

  .site-header__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .site-language-switcher {
    width: 100%;
    justify-content: center;
    padding: 0.32rem;
  }

  .site-language-switcher__button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    padding-top: 4.85rem;
  }

  .hero::after {
    right: -3rem;
    width: 18rem;
    height: 18rem;
    opacity: 0.48;
  }

  .hero__content,
  .expertise__content,
  .home-paths__lead {
    max-width: none;
  }

  .hero__note {
    max-width: none;
  }

  .hero__panel,
  .expertise__panel {
    padding: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .site-navbar {
    min-height: 64px;
  }

  .site-navbar__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .site-header__brand {
    width: 100%;
    min-width: 0;
  }

  .site-navbar__toggler {
    margin-left: 0;
    justify-self: end;
  }

  .page-transition {
    padding: 1rem;
  }

  .page-transition__panel {
    width: min(100%, 24rem);
    padding: 1.6rem 1.2rem 1.35rem;
    border-radius: 22px;
  }

  .page-transition__logo {
    width: min(200px, 84%);
  }

  .site-navbar__container {
    padding-inline: 1rem;
  }

  .site-header__brand img {
    width: min(164px, 100%);
  }

  .hero {
    padding: 4.15rem 0 4.25rem;
  }

  .about-hero,
  .service-page-hero {
    padding-top: 4.15rem;
  }

  .hero::before {
    background-size: 78px 78px;
    opacity: 0.12;
  }

  .hero::after {
    display: none;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__note {
    font-size: 0.9rem;
  }

  .hero__highlights {
    gap: 0.55rem;
  }

  .hero__highlights span {
    font-size: 0.75rem;
  }

  .hero__panel,
  .home-path-card,
  .service-card,
  .expertise__panel {
    padding: 1.35rem;
  }

  .hero__panel h2 {
    font-size: 1.55rem;
  }

  .hero__step {
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
  }

  .hero__step-index {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .site-navbar__collapse {
    grid-column: 1 / -1;
    flex-basis: 100%;
    width: 100%;
  }

  .site-language-switcher__button {
    min-height: 2.2rem;
    font-size: 0.72rem;
  }

  .section-space {
    padding: 4rem 0;
  }

  .home-path-card h3,
  .service-card h3 {
    font-size: 1.18rem;
  }

  .feature-item {
    gap: 14px;
  }

  .feature-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .expertise__panel-item {
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
  }

  .expertise__panel-step {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .trust-band {
    padding: 4rem 0;
  }

  .trust-band__intro {
    margin-bottom: 1.75rem;
  }

  .trust-band__carousel {
    --logo-gap: 0.75rem;
  }

  .trust-band__logo {
    flex-basis: 150px;
    height: 84px;
    padding: 0.85rem 1rem;
  }

  .trust-band__logo img {
    height: 46px;
  }

  .cta__actions {
    margin-top: 1.5rem;
  }

  .site-footer__inner {
    padding: 2.8rem 0 1.5rem;
  }
}

@media (max-width: 419.98px) {
  .site-header__brand img {
    width: min(152px, 100%);
  }

  .site-navbar__toggler {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    padding-top: 4.95rem;
  }

  .about-hero__content,
  .service-page-hero__content,
  .about-method__content > p,
  .about-overview__intro,
  .about-culture__lead {
    max-width: none;
  }

  .about-hero__panel {
    padding: 1.75rem;
  }

  .service-page-hero__panel {
    padding: 1.75rem;
  }

  .service-page-hero {
    padding-top: 4.95rem;
  }

  .service-detail-hero {
    padding-top: 4.95rem;
  }

  .service-detail-hero__content {
    max-width: none;
  }

  .service-detail-hero__panel {
    padding: 1.75rem;
  }

  .service-support__visual {
    max-width: none;
  }

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

  .contact-page-section {
    padding-top: 4.95rem;
  }

  .contact-hero__content {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-hero h1 {
    font-size: 2.45rem;
  }

  .about-hero__lead {
    font-size: 0.93rem;
  }

  .about-hero__highlights {
    gap: 0.55rem;
  }

  .about-hero__highlights span {
    font-size: 0.75rem;
  }

  .about-hero__panel,
  .service-page-hero__panel,
  .service-detail-hero__panel,
  .about-overview__focus,
  .about-card,
  .about-method__panel,
  .about-value-card,
  .service-detail-card,
  .service-detail-cta__panel {
    padding: 1.35rem;
  }

  .about-method__content h2,
  .about-hero__panel h2,
  .service-page-hero__panel h2,
  .service-detail-hero__panel h2,
  .about-cta__content h2 {
    font-size: 2rem;
  }

  .about-capability {
    grid-template-columns: 42px 1fr;
    gap: 0.85rem;
  }

  .about-capability__icon,
  .about-card__icon,
  .about-value-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .about-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .about-card__icon i {
    font-size: 1.42rem;
  }

  .about-step {
    grid-template-columns: 34px 1fr;
    gap: 0.8rem;
  }

  .about-step__number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .about-culture .section-heading {
    margin-bottom: 2.2rem;
  }

  .service-page-section {
    padding: 4rem 0;
  }

  .service-detail-section {
    padding: 4rem 0;
  }

  .service-page-hero h1 {
    font-size: 2.35rem;
  }

  .service-detail-hero h1 {
    font-size: 2.35rem;
  }

  .service-page-hero__lead {
    font-size: 0.93rem;
  }

  .service-detail-hero__lead {
    font-size: 0.94rem;
  }

  .service-page-hero__scene {
    opacity: 0.74;
  }

  .service-page-hero__highlights {
    gap: 0.55rem;
  }

  .service-page-hero__highlights span {
    min-height: 2.15rem;
    padding: 0 0.8rem;
    font-size: 0.76rem;
  }

  .service-detail-hero__highlights {
    gap: 0.55rem;
  }

  .service-detail-hero__highlights span {
    min-height: 2.15rem;
    padding: 0 0.8rem;
    font-size: 0.76rem;
  }

  .service-page-hero__capability {
    grid-template-columns: 42px 1fr;
    gap: 0.85rem;
  }

  .service-page-hero__capability-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .service-offer {
    padding: 1.2rem 1rem 1.1rem;
  }

  .service-offer p {
    min-height: auto;
  }

  .support-console {
    min-height: 288px;
    padding: 0.9rem;
  }

  .support-console__shell {
    inset: 0.85rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "topbar"
      "overview"
      "cards"
      "network";
    padding: 0.85rem;
  }

  .support-console__cards {
    gap: 0.6rem;
  }

  .support-console__card {
    min-height: 76px;
    padding: 0.75rem;
  }

  .support-console__network {
    gap: 0.5rem;
  }

  .support-console__node {
    min-height: 2.15rem;
    font-size: 0.64rem;
  }

  .service-support__badge {
    right: 12px;
    bottom: -12px;
    min-height: 42px;
    padding: 0 0.85rem;
  }

  .service-delivery__lead {
    max-width: none;
  }

  .service-phase {
    padding: 1.15rem 1rem;
  }

  .service-page-cta__panel {
    padding: 2.25rem 1.1rem;
  }

  .service-detail-process__item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.05rem;
  }

  .service-detail-process__step {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .service-detail-cta {
    min-height: 0;
    padding: 4rem 0;
  }

  .service-page-cta__panel h2 {
    font-size: 2rem;
  }

  .service-page-cta__panel p {
    font-size: 0.92rem;
  }

  .clients-page-section {
    padding: 4rem 0;
  }

  .clients-cta__panel {
    padding: 2.4rem 1rem;
  }

  .clients-partnership-panel {
    padding: 1.35rem;
  }

  .clients-partnership-panel__intro h3 {
    font-size: 1.3rem;
  }

  .clients-partnership-grid {
    grid-template-columns: 1fr;
  }

  .clients-partnership-card {
    min-height: auto;
  }

  .clients-proof__stats {
    grid-template-columns: 1fr;
  }

  .clients-logo-marquee__logo {
    flex-basis: 176px;
    height: 98px;
    padding: 0.8rem 0.9rem;
  }

  .clients-logo-marquee__image {
    max-height: 58px;
  }

  .clients-logo-marquee__image--microsoft {
    max-width: 164px;
    max-height: 46px;
  }

  .clients-logo-marquee__image--gol {
    max-width: 156px;
    max-height: 50px;
  }

.clients-logo-marquee__image--paschoalotto {
  max-width: 150px;
}

  .clients-logo-marquee__image--vivo {
    max-width: 172px;
    max-height: 50px;
  }

  .clients-logo-marquee__image--zella {
    max-width: 178px;
    max-height: 56px;
  }

  .clients-logo-marquee__image--dandelin {
    max-width: 182px;
    max-height: 54px;
  }

  .clients-logo-marquee__image--nortal {
    max-width: 138px;
    max-height: 30px;
  }

  .clients-logo-marquee__image--fmx {
    max-width: 144px;
    max-height: 42px;
  }

  .contact-page-section {
    padding: 4.15rem 0 4rem;
  }

  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .contact-hero__lead {
    font-size: 0.94rem;
  }

  .contact-hero__highlights {
    gap: 0.55rem;
  }

  .contact-hero__highlights span {
    font-size: 0.75rem;
  }

  .contact-info-card {
    grid-template-columns: 2.8rem 1fr;
    gap: 0.8rem;
    padding: 1.15rem;
  }

  .contact-form-panel {
    padding: 1.2rem;
  }

  .contact-form-panel__direct {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .contact-form-panel__direct i {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 12px;
  }
}
