html {
  scroll-behavior: smooth;
}

:root {
  --content-width: 1120px;
  --content-gutter: 16px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

body.is-preloading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #dffaff;
  background:
    radial-gradient(circle at 50% 44%, rgba(19, 145, 204, 0.28), transparent 28%),
    linear-gradient(145deg, #03111f, #071f38 54%, #03101d);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-preloader.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.site-preloader__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(36, 215, 238, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 215, 238, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000 5%, transparent 70%);
  animation: preloaderGrid 5s linear infinite;
}

.site-preloader__core {
  position: relative;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
}

.site-preloader__brand {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  padding: 12px;
  place-items: center;
  border: 1px solid rgba(126, 235, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 48px rgba(36, 215, 238, 0.2), inset 0 0 26px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  animation: preloaderCore 1.8s ease-in-out infinite;
}

.site-preloader__brand img {
  position: absolute;
  inset: 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  background: rgba(5, 27, 48, 0.96);
}

.site-preloader__brand img.has-error {
  display: none;
}

.site-preloader__brand span {
  color: #24d7ee;
  font-size: 2.2rem;
  font-weight: 950;
}

.site-preloader__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(126, 235, 255, 0.18);
}

.site-preloader__orbit--outer {
  inset: 0;
  border-top-color: #24d7ee;
  border-right-color: rgba(36, 215, 238, 0.55);
  animation: preloaderSpin 2.4s linear infinite;
}

.site-preloader__orbit--inner {
  inset: 20px;
  border-bottom-color: #7eebff;
  animation: preloaderSpin 1.7s linear infinite reverse;
}

.site-preloader__node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eebff;
  box-shadow: 0 0 14px #24d7ee;
  animation: preloaderNode 1.4s ease-in-out infinite;
}

.site-preloader__node--one { top: 12px; left: 48px; }
.site-preloader__node--two { right: 5px; bottom: 51px; animation-delay: -0.45s; }
.site-preloader__node--three { bottom: 7px; left: 38px; animation-delay: -0.9s; }

.site-preloader__progress {
  width: 150px;
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.site-preloader__progress span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #24d7ee, #dffaff, transparent);
  animation: preloaderProgress 1.35s ease-in-out infinite;
}

.site-preloader p {
  margin: 14px 0 0;
  color: rgba(223, 250, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(7, 19, 32, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: #071320;
  box-shadow: 0 8px 30px rgba(7, 19, 32, 0.06);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 74px;
  flex-wrap: nowrap;
  padding: 12px 0;
}

.site-header__nav {
  margin-left: auto;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand__fallback {
  color: #071320;
  font-size: 1.2rem;
  font-weight: 900;
}

.site-nav__list {
  flex-wrap: nowrap;
}

.site-nav__link {
  white-space: nowrap;
}

.site-brand__logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #eef8fc;
}

.site-brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(36, 215, 238, 0.34);
  border-radius: 8px;
  color: #06121f;
  background: #24d7ee;
  font-size: 1.45rem;
  font-weight: 950;
}

.site-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(7, 19, 32, 0.14);
  border-radius: 8px;
  background: #eef8fc;
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #071320;
}

.site-header__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-header__cta {
  order: 3;
  color: #06121f;
  background: #24d7ee;
  box-shadow: 0 14px 34px rgba(36, 215, 238, 0.25);
}

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

.site-nav__link {
  color: #102a43;
  border-radius: 8px;
}

.site-nav__link:hover,
.site-nav__link:focus {
  background: #e6f7fb;
  color: #087c92;
}

.site-nav__sublist {
  border-radius: 8px;
  background: #ffffff;
  border-color: rgba(7, 19, 32, 0.1);
}

.site-nav__sublink {
  color: #102a43;
  border-radius: 8px;
}

.site-nav__sublink:hover,
.site-nav__sublink:focus {
  color: #06121f;
  background: #24d7ee;
}

.section-dark {
  color: #ffffff;
  background: #071320;
}

.section-blue {
  color: #ffffff;
  background: #0b1f3a;
}

.section-cyan {
  color: #04131f;
  background: #24d7ee;
}

.section-white {
  color: #071320;
  background: #ffffff;
}

.section-light-hero {
  color: #071320;
  background: linear-gradient(118deg, #d9fbff 0%, #bdeeff 43%, #a9caff 100%);
}

.section-soft-blue {
  color: #071320;
  background: #dff5fa;
}

.section-black {
  color: #ffffff;
  background: #03070c;
}

.msb-hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.msb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.58), transparent 27%),
    linear-gradient(112deg, rgba(218, 252, 255, 0.97) 0%, rgba(181, 239, 255, 0.92) 48%, rgba(142, 184, 255, 0.86) 100%),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80") center/cover;
  transform: translate3d(0, 0, 0) scale(1.06);
}

.msb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.msb-hero__inner,
.service-hero__inner {
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
}

.msb-section,
.cta-section,
.parallax-band {
  width: 100%;
  margin: 0;
  padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  padding-left: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.msb-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 54px;
  min-height: 720px;
  padding: 108px 0 128px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #24d7ee;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-cyan .eyebrow,
.section-white .eyebrow {
  color: #076174;
}

.msb-hero h1,
.service-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.7rem, 6.2vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.msb-hero p,
.service-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.section-light-hero .msb-hero__copy p {
  color: rgba(7, 19, 32, 0.72);
}

.section-light-hero .btn-ghost,
.service-hero.section-dark .btn-ghost {
  color: #071320;
  border-color: rgba(7, 58, 105, 0.28);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(7, 58, 105, 0.08);
}

.service-hero.section-dark .btn-ghost:hover {
  border-color: rgba(7, 58, 105, 0.46);
  background: rgba(255, 255, 255, 0.92);
}

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

.btn-primary {
  color: #06121f;
  background: #24d7ee;
  box-shadow: 0 18px 42px rgba(36, 215, 238, 0.28);
}

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

.btn-dark {
  color: #ffffff;
  background: #071320;
}

.btn-ghost-dark {
  color: #071320;
  border-color: rgba(7, 19, 32, 0.18);
  background: #ffffff;
}

.hero-orbit {
  position: relative;
  min-height: 460px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-orbit__panel {
  position: absolute;
  z-index: 1;
  inset: 48px 32px 42px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(29, 126, 211, 0.28), rgba(4, 29, 68, 0.2)),
    #082c59;
  box-shadow: 0 34px 90px rgba(6, 41, 85, 0.3);
  backdrop-filter: blur(20px);
  transform: rotateY(-10deg) rotateX(6deg);
}

.hero-orbit__panel span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 7px;
  color: #041a2c;
  background: #78eaff;
  font-weight: 900;
}

.hero-orbit__panel p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.hero-orbit__panel strong {
  max-width: 340px;
  margin: 12px 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 16px;
  border: 1px solid rgba(36, 215, 238, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(2, 8, 23, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  backface-visibility: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.orbit-card--one {
  top: 36px;
  right: 0;
}

.orbit-card--two {
  left: 0;
  bottom: 48px;
  animation-delay: -1.5s;
}

.orbit-card--three {
  right: 26px;
  bottom: 18px;
  background: #24d7ee;
  color: #06121f;
  animation-delay: -3s;
}

.msb-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.msb-section__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.msb-section__head h2,
.parallax-band h2,
.split-story h2,
.cta-panel h2,
.detail-card h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.msb-section__head p,
.parallax-band p,
.split-story p,
.cta-panel p,
.detail-card p,
.contact-card p {
  margin: 18px 0 0;
  color: rgba(7, 19, 32, 0.66);
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-black .msb-section__head p,
.section-blue .msb-section__head p,
.section-black .split-story p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(7, 19, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 19, 32, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section-black .service-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(36, 215, 238, 0.18), transparent 44%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 215, 238, 0.42);
  box-shadow: 0 28px 70px rgba(7, 19, 32, 0.15);
}

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

.service-card span {
  position: relative;
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #04131f;
  background: #24d7ee;
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.service-card p {
  position: relative;
  min-height: 82px;
  margin: 0;
  color: rgba(7, 19, 32, 0.68);
  line-height: 1.6;
}

.section-black .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  position: relative;
  display: inline-flex;
  margin-top: 22px;
  color: #087c92;
  font-weight: 900;
  text-decoration: none;
}

.service-card__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-card .service-card__actions a {
  margin-top: 0;
}

.service-card .service-card__quote {
  color: #0b4f92;
  text-decoration: none;
}

.section-black .service-card .service-card__quote,
.service-card--blue .service-card__quote {
  color: #8cecff;
  text-decoration-color: rgba(140, 236, 255, 0.35);
}

.section-black .service-card a {
  color: #24d7ee;
}

.service-card--blue {
  background: #0b1f3a;
  color: #ffffff;
}

.service-card--blue p,
.service-card--black p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card--black {
  background: #eaf6fb;
  color: #071320;
}

.service-card--black p {
  color: rgba(7, 19, 32, 0.68);
}

.service-card--cyan {
  background: #24d7ee;
}

.service-card--cyan span {
  color: #ffffff;
  background: #071320;
}

.card-action {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  padding: 9px 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card .card-action {
  margin-top: 0;
}

.service-card .card-action.card-action--know,
.card-action.card-action--know {
  color: #ffffff;
  background: linear-gradient(115deg, #075cab, #0786bd 55%, #16bbd2);
  box-shadow: 0 10px 24px rgba(7, 92, 171, 0.2);
}

.service-card .card-action.card-action--quote,
.card-action.card-action--quote {
  color: #0a4d86;
  border-color: rgba(7, 92, 171, 0.22);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.card-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.32) 48%, transparent 72%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
}

.card-action:hover {
  transform: translateY(-3px) scale(1.02);
}

.card-action:hover::before {
  transform: translateX(140%);
}

.card-action--know:hover {
  box-shadow: 0 15px 30px rgba(7, 92, 171, 0.3);
}

.card-action--quote:hover {
  border-color: rgba(7, 134, 189, 0.46);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 92, 171, 0.12);
}

.card-action:focus-visible {
  outline: 3px solid rgba(36, 215, 238, 0.42);
  outline-offset: 3px;
}

.service-card .card-action span,
.card-action--know span {
  position: static;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.card-action--know:hover span {
  transform: translateX(4px);
}

.home-services-glass {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(36, 215, 238, 0.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(11, 95, 165, 0.12), transparent 30%),
    linear-gradient(145deg, #f7fcff, #eaf6fc 52%, #f8fdff);
  overflow: hidden;
}

.home-services-glass::before,
.home-services-glass::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.home-services-glass::before {
  top: 8%;
  right: -120px;
  background: rgba(36, 215, 238, 0.12);
  animation: glassAmbient 10s ease-in-out infinite;
}

.home-services-glass::after {
  bottom: -160px;
  left: 8%;
  background: rgba(11, 95, 165, 0.08);
  animation: glassAmbient 13s ease-in-out infinite reverse;
}

.home-services-glass .msb-section__head {
  position: relative;
  z-index: 2;
}

.home-services-glass .service-grid {
  position: relative;
  z-index: 2;
  perspective: 1100px;
}

.home-services-glass .service-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  color: #071b2d;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(181, 225, 244, 0.2)),
    rgba(220, 243, 252, 0.38);
  box-shadow:
    0 24px 54px rgba(11, 74, 113, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(44, 150, 193, 0.08);
  backdrop-filter: blur(18px) saturate(135%);
  transform-style: preserve-3d;
  will-change: transform;
  transition: opacity 0.65s ease, transform 0.2s ease-out, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-services-glass .service-card::before {
  inset: -1px;
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.82), rgba(36, 215, 238, 0.13) 28%, transparent 58%);
  transition: opacity 0.35s ease;
}

.home-services-glass .service-card::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 38%;
  height: 250%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(22deg) translateX(-180%);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-services-glass .service-card:hover {
  border-color: rgba(126, 235, 255, 0.82);
  box-shadow: 0 34px 72px rgba(11, 74, 113, 0.17), 0 0 0 1px rgba(36, 215, 238, 0.1);
}

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

.home-services-glass .service-card:hover::after {
  transform: rotate(22deg) translateX(520%);
}

.home-services-glass .service-card p {
  color: rgba(7, 27, 45, 0.68);
}

.home-services-glass .service-card > * {
  transform: translateZ(24px);
}


.parallax-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 42px;
  min-height: 520px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.parallax-band__inner {
  max-width: 690px;
}

.parallax-band p {
  color: rgba(4, 19, 31, 0.76);
}

.section-soft-blue .eyebrow {
  color: #087c92;
}

.section-light-hero .eyebrow,
.service-hero.section-dark .eyebrow {
  color: #087c92;
}

.depth-stack {
  position: relative;
  height: 360px;
  perspective: 900px;
}

.depth-stack span {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(4, 19, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 60px rgba(4, 19, 31, 0.18);
  transform: rotateY(-24deg) rotateX(14deg) translateZ(0);
}

.depth-stack span:nth-child(2) {
  inset: 64px 0 0 70px;
  background: rgba(4, 19, 31, 0.86);
  transform: rotateY(-18deg) rotateX(11deg) translateZ(50px);
}

.depth-stack span:nth-child(3) {
  inset: 0 80px 94px 8px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotateY(-30deg) rotateX(18deg) translateZ(88px);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.split-story__visual {
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(36, 215, 238, 0.14), transparent),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.timeline-card {
  width: min(330px, calc(100% - 32px));
  margin: 260px 0 0 24px;
  padding: 24px;
  border-radius: 8px;
  color: #06121f;
  background: #24d7ee;
}

.timeline-card span {
  display: block;
  font-size: 2.4rem;
  font-weight: 950;
}

.timeline-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.check-list--dark li {
  color: rgba(7, 19, 32, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid #24d7ee;
  border-bottom: 3px solid #24d7ee;
  transform: rotate(-45deg);
}

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

.technical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 19, 32, 0.12);
  border-left: 1px solid rgba(7, 19, 32, 0.12);
}

.technical-item {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid rgba(7, 19, 32, 0.12);
  border-bottom: 1px solid rgba(7, 19, 32, 0.12);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.technical-item:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(7, 60, 92, 0.12);
}

.technical-item > span {
  display: block;
  color: rgba(11, 95, 165, 0.28);
  font-size: 2.4rem;
  font-weight: 950;
}

.technical-item small {
  display: block;
  margin-top: 20px;
  color: #087c92;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-item h3 {
  margin: 8px 0 12px;
  font-size: 1.34rem;
}

.technical-item p {
  margin: 0;
  color: rgba(7, 19, 32, 0.68);
  line-height: 1.65;
}

.technical-item__quote {
  display: inline-flex;
  margin-top: 18px;
  color: #0b5fa5;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.section-action {
  margin-top: 30px;
}

.process-step {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step span {
  color: #24d7ee;
  font-size: 2.3rem;
  font-weight: 950;
}

.process-step h3 {
  margin: 18px 0 10px;
  font-size: 1.36rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.cta-section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(76, 128, 235, 0.25), transparent 28%),
    linear-gradient(115deg, #20d2df, #30c8ee 42%, #6ca9ee 72%, #22d2df);
  background-size: 160% 160%, 170% 170%, 240% 240%;
  overflow: hidden;
  isolation: isolate;
  animation: ctaBackdropFlow 14s ease-in-out infinite alternate;
}

.cta-panel {
  position: relative;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgba(126, 235, 255, 0.12);
  border-radius: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 215, 238, 0.18), transparent 34%),
    linear-gradient(125deg, #09283a 0%, #061526 46%, #07111f 72%, #0b3150 100%);
  background-size: 150% 150%, 220% 220%;
  box-shadow: 0 34px 90px rgba(5, 32, 64, 0.27);
  overflow: hidden;
  isolation: isolate;
  animation: ctaPanelFlow 12s ease-in-out infinite alternate;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.cta-panel:hover {
  border-color: rgba(126, 235, 255, 0.28);
  box-shadow: 0 40px 105px rgba(5, 32, 64, 0.34);
}

.cta-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -12%;
  width: 55%;
  height: 190%;
  background: linear-gradient(100deg, transparent, rgba(74, 218, 242, 0.09), transparent);
  transform: rotate(12deg);
  animation: ctaShine 8s ease-in-out infinite;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  z-index: -1;
  border: 1px solid rgba(36, 215, 238, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(36, 215, 238, 0.08);
  animation: ctaOrbit 7s ease-in-out infinite;
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel .eyebrow,
.cta-section.section-cyan .cta-panel .eyebrow,
.cta-section.section-white .cta-panel .eyebrow {
  color: #42dff1;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .btn-primary,
.cta-panel .btn-dark {
  color: #06182a;
  background: linear-gradient(110deg, #24d7ee, #58e4f2);
  box-shadow: 0 14px 34px rgba(36, 215, 238, 0.22);
}

.cta-panel .btn-primary:hover,
.cta-panel .btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 42px rgba(36, 215, 238, 0.32);
}

.cta-panel .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.cta-panel .btn-ghost:hover {
  border-color: rgba(126, 235, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.service-hero {
  position: relative;
  padding: 138px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.service-hero.section-dark {
  color: #071320;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.5), transparent 25%),
    linear-gradient(112deg, #dafcff 0%, #bceeff 48%, #a5c6ff 100%);
}

.service-hero.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(11, 95, 165, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 165, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.service-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0;
}

.service-hero.section-dark p {
  color: rgba(7, 19, 32, 0.7);
}

.service-hero.section-dark .back-link {
  color: #0b5fa5;
}

.tech-float-layer {
  position: absolute;
  inset: -8% 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tech-float {
  position: absolute;
  display: grid;
  width: var(--tech-size, 42px);
  height: var(--tech-size, 42px);
  padding: 10px;
  place-items: center;
  border: 1px solid rgba(11, 95, 165, 0.1);
  border-radius: 10px;
  color: rgba(11, 95, 165, 0.72);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 24px rgba(7, 60, 92, 0.06);
  opacity: 0;
  backdrop-filter: blur(6px);
  animation: techFloat var(--tech-duration, 12s) ease-in-out var(--tech-delay, 0s) infinite;
}

.tech-float-layer.is-randomized .tech-float {
  right: auto;
  bottom: auto;
}

.tech-float svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-float:nth-child(1) {
  top: 18%;
  left: 4%;
}

.tech-float:nth-child(2) {
  top: 58%;
  left: 13%;
  animation-delay: -1.5s;
}

.tech-float:nth-child(3) {
  top: 16%;
  right: 8%;
  animation-delay: -3s;
}

.tech-float:nth-child(4) {
  right: 20%;
  bottom: 12%;
  animation-delay: -4.5s;
}

.tech-float:nth-child(5) {
  top: 44%;
  right: 2%;
  animation-delay: -2.2s;
}

.tech-float:nth-child(6) {
  left: 38%;
  bottom: 4%;
  animation-delay: -5.4s;
}

.tech-float:nth-child(7) {
  top: 7%;
  left: 29%;
  animation-delay: -2.8s;
}

.tech-float:nth-child(8) {
  top: 38%;
  left: 3%;
  animation-delay: -4.1s;
}

.tech-float:nth-child(9) {
  top: 7%;
  right: 31%;
  animation-delay: -1.1s;
}

.tech-float:nth-child(10) {
  right: 5%;
  bottom: 30%;
  animation-delay: -5.9s;
}

.tech-float:nth-child(11) {
  left: 25%;
  bottom: 10%;
  animation-delay: -3.6s;
}

.tech-float:nth-child(12) {
  right: 37%;
  bottom: 3%;
  animation-delay: -6.4s;
}

.msb-hero .tech-float {
  --tech-opacity: 0.24;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
}

.detail-card,
.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(7, 19, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 19, 32, 0.08);
}

.detail-card--cyan {
  background: #24d7ee;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card a,
.contact-card span {
  color: #071320;
  font-weight: 800;
  text-decoration: none;
}

.contact-card--dark {
  color: #ffffff;
  background: #071320;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: 104px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  background:
    radial-gradient(circle at 10% 12%, rgba(36, 215, 238, 0.2), transparent 27%),
    linear-gradient(135deg, #edfaff, #dcefff);
}

.inquiry-intro {
  position: sticky;
  top: 118px;
}

.inquiry-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.inquiry-intro p {
  margin: 22px 0 0;
  color: rgba(7, 27, 45, 0.68);
  line-height: 1.7;
}

.inquiry-form {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(11, 74, 113, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.form-grid label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  color: #082c59;
  font-size: 0.8rem;
  font-weight: 900;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(11, 95, 165, 0.2);
  border-radius: 9px;
  outline: 0;
  color: #071b2d;
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input,
.form-grid select {
  min-height: 50px;
  padding: 0 14px;
}

.form-grid input[type="file"] {
  padding: 11px;
}

.form-grid textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #24b9e4;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(36, 185, 228, 0.12);
}

.form-grid small {
  color: rgba(7, 27, 45, 0.58);
  line-height: 1.4;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.captcha-field {
  max-width: 260px;
  grid-column: 1 / -1;
}

.inquiry-form > .btn {
  margin-top: 24px;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-feedback {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 10px;
  line-height: 1.5;
}

.form-feedback ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-feedback--success {
  color: #07562d;
  border: 1px solid rgba(28, 160, 91, 0.24);
  background: #e2f8ec;
}

.form-feedback--error {
  color: #7b2020;
  border: 1px solid rgba(190, 55, 55, 0.2);
  background: #fff0f0;
}

.contact-card--dark a {
  color: #ffffff;
}

.contact-card--dark .footer-assistant__links a {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.contact-card--dark .footer-assistant__links a:hover {
  color: #06121f;
  background: #24d7ee;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  width: 100%;
}

.location-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 100px) max(24px, calc((100vw - var(--content-width)) / 2));
  padding-right: clamp(54px, 6vw, 110px);
}

.location-section__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.location-section__content p {
  margin: 20px 0 28px;
  color: rgba(7, 19, 32, 0.7);
  line-height: 1.65;
}

.location-section__content .btn {
  width: fit-content;
}

.location-section__map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.location-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: saturate(0.78) contrast(1.02);
}

.map-location-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 46px;
  height: 58px;
  pointer-events: none;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 8px 12px rgba(5, 75, 156, 0.3));
}

.map-location-pulse::before,
.map-location-pulse::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(16, 112, 218, 0.72);
  border-radius: 50%;
  transform: translate(-50%, 50%) scale(0.35);
  animation: mapPulse 2.2s ease-out infinite;
}

.map-location-pulse::after {
  animation-delay: 1.1s;
}

.map-location-pulse svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.map-location-pulse path {
  fill: #0b69c7;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.map-location-pulse circle {
  fill: #65e6ff;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
}

.product-list {
  display: grid;
  border-top: 1px solid rgba(7, 19, 32, 0.12);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(7, 19, 32, 0.12);
}

.product-row span {
  color: #087c92;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-row h2 {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  letter-spacing: 0;
}

.product-row p {
  margin: 0;
  color: rgba(7, 19, 32, 0.68);
  line-height: 1.65;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.product-quote-link {
  color: #0b5fa5;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.service-card__quote:hover,
.technical-item__quote:hover,
.product-quote-link:hover {
  color: #087c92;
}

.home-partners {
  position: relative;
  padding: 92px 0 96px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 12%, rgba(36, 215, 238, 0.2), transparent 26%),
    linear-gradient(135deg, #061a32, #0a3566 58%, #0b5fa5);
  overflow: hidden;
}

.technology-news {
  position: relative;
  padding: 104px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  color: #071b2d;
  background:
    radial-gradient(circle at 88% 12%, rgba(72, 143, 235, 0.15), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(36, 215, 238, 0.13), transparent 28%),
    linear-gradient(145deg, #f7fcff, #e9f6fc);
  overflow: hidden;
}

.technology-news__head {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.technology-news__head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.technology-news__head > small {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(11, 95, 165, 0.14);
  border-radius: 999px;
  color: #0b5fa5;
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

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

.news-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 25px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(192, 228, 244, 0.25)),
    rgba(223, 244, 252, 0.48);
  box-shadow: 0 20px 48px rgba(7, 60, 92, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 10%, rgba(36, 215, 238, 0.2), transparent 34%);
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.news-card:hover {
  z-index: 2;
  border-color: rgba(36, 185, 228, 0.42);
  box-shadow: 0 30px 68px rgba(7, 60, 92, 0.15);
  transform: translateY(-8px);
}

.news-card:hover::before {
  opacity: 1;
  transform: scale(1.12);
}

.news-card > * {
  position: relative;
  z-index: 1;
}

.news-card__number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  color: rgba(11, 95, 165, 0.38);
  font-size: 1.7rem;
  font-weight: 950;
}

.news-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.28;
}

.news-card h3 a {
  color: #071b2d;
  text-decoration: none;
}

.news-card p {
  margin: 0;
  color: rgba(7, 27, 45, 0.66);
  font-size: 0.92rem;
  line-height: 1.65;
}

.news-card footer {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(7, 27, 45, 0.48);
  font-size: 0.72rem;
}

.news-card footer small {
  color: #0b5fa5;
  font-weight: 900;
}

.news-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 15px;
  align-items: center;
  gap: 7px;
  color: #087c92;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.news-card__link span {
  transition: transform 0.2s ease;
}

.news-card__link:hover span {
  transform: translate(3px, -3px);
}

.technology-news__empty {
  padding: 28px;
  border: 1px dashed rgba(11, 95, 165, 0.2);
  border-radius: 14px;
  color: rgba(7, 27, 45, 0.65);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.home-partners__head {
  display: flex;
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto 42px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.home-partners__head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.home-partners__head > a {
  flex: 0 0 auto;
  padding-bottom: 6px;
  color: #8cecff;
  font-weight: 900;
  text-decoration: none;
}

.partner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-carousel__track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 28s linear infinite;
}

.partner-carousel:hover .partner-carousel__track {
  animation-play-state: paused;
}

.partner-carousel__group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.partner-logo {
  display: grid;
  width: 210px;
  height: 116px;
  padding: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.partner-logo:hover {
  border-color: rgba(140, 236, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-5px);
}

.partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: 0.82;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

.partner-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: #06182a;
  background: linear-gradient(118deg, #d9fbff 0%, #bceeff 48%, #a6c6ff 100%);
  isolation: isolate;
  overflow: hidden;
}

.partner-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
  padding: 130px 0 110px;
}

.partner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.partner-hero p {
  max-width: 720px;
  margin: 28px 0 34px;
  color: rgba(6, 24, 42, 0.7);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.partner-hero__glow {
  position: absolute;
  z-index: -1;
  top: -150px;
  right: -80px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.68), rgba(45, 119, 222, 0.1) 48%, transparent 70%);
}

.partner-hero__orbits {
  position: absolute;
  right: 7%;
  bottom: -190px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(11, 95, 165, 0.14);
  border-radius: 50%;
}

.partner-hero__orbits i {
  position: absolute;
  border: 1px solid rgba(11, 95, 165, 0.13);
  border-radius: 50%;
  animation: partnerOrbit 10s linear infinite;
}

.partner-hero__orbits i:nth-child(1) { inset: 55px; }
.partner-hero__orbits i:nth-child(2) { inset: 125px; animation-direction: reverse; animation-duration: 14s; }
.partner-hero__orbits i:nth-child(3) { inset: 195px; animation-duration: 7s; }

.partner-showcase {
  padding: 110px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 215, 238, 0.11), transparent 25%),
    #f7fcff;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1100px;
}

.partner-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(11, 95, 165, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 50px rgba(7, 60, 92, 0.08);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.partner-card:hover {
  border-color: rgba(36, 185, 228, 0.45);
  box-shadow: 0 30px 70px rgba(7, 60, 92, 0.14);
}

.partner-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.partner-card__logo {
  display: grid;
  height: 132px;
  padding: 22px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #ffffff, #eaf7fc);
}

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

.partner-card h3 {
  margin: 22px 0 8px;
  font-size: 1.25rem;
}

.partner-card p {
  margin: 0 0 14px;
  color: rgba(7, 27, 45, 0.65);
  line-height: 1.6;
}

.partner-card span {
  color: #0b5fa5;
  font-size: 0.86rem;
  font-weight: 900;
}

.partner-empty {
  padding: 50px;
  border: 1px dashed rgba(11, 95, 165, 0.25);
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
}

.partner-empty strong {
  font-size: 1.4rem;
}

.partner-empty p {
  margin: 10px 0 0;
  color: rgba(7, 27, 45, 0.64);
}

.site-footer {
  position: relative;
  color: #ffffff;
  background: #020817;
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 215, 238, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.site-footer__grid {
  position: relative;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 28px;
  padding: 62px 0 42px;
}

.footer-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #24d7ee;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__brand h2 {
  max-width: 440px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-stats span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
}

.footer-assistant__toggle {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 12px;
  border: 1px solid rgba(7, 19, 32, 0.08);
  border-radius: 8px;
  color: #ffffff;
  background: #0b5fa5;
  box-shadow: 0 16px 42px rgba(11, 58, 102, 0.3);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-assistant__toggle:hover {
  transform: translateY(-3px);
  background: #087c92;
  box-shadow: 0 20px 50px rgba(8, 124, 146, 0.34);
}

.footer-assistant__toggle-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  color: #0b5fa5;
  background: #ffffff;
}

.footer-assistant__toggle-icon i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  animation: assistantDot 1.4s ease-in-out infinite;
}

.footer-assistant__toggle-icon i:nth-child(2) {
  animation-delay: 0.18s;
}

.footer-assistant__toggle-icon i:nth-child(3) {
  animation-delay: 0.36s;
}

.footer-assistant__toggle[aria-expanded="true"] .footer-assistant__toggle-icon {
  transform: rotate(45deg);
}

.footer-assistant__toggle[aria-expanded="true"] .footer-assistant__toggle-icon i:first-child,
.footer-assistant__toggle[aria-expanded="true"] .footer-assistant__toggle-icon i:last-child {
  display: none;
}

.footer-assistant__toggle[aria-expanded="true"] .footer-assistant__toggle-icon i:nth-child(2) {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  animation: none;
}

.footer-assistant__body {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 120px));
  border: 1px solid rgba(7, 19, 32, 0.1);
  border-radius: 8px;
  color: #071320;
  background: #f4f8fb;
  box-shadow: 0 28px 80px rgba(7, 19, 32, 0.26);
  overflow: hidden;
  transform-origin: right bottom;
  animation: assistantOpen 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-assistant__body[hidden] {
  display: none;
}

.footer-assistant__head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b5fa5, #087c92);
}

.footer-assistant__avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #071320;
  background: #24d7ee;
  font-weight: 950;
}

.footer-assistant__head-copy {
  min-width: 0;
  flex: 1;
}

.footer-assistant__close {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-assistant__close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.footer-assistant__close span::before,
.footer-assistant__close span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.footer-assistant__close span::before { transform: rotate(45deg); }
.footer-assistant__close span::after { transform: rotate(-45deg); }

.footer-assistant__status {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: #55e67a;
  box-shadow: 0 0 0 4px rgba(85, 230, 122, 0.16);
}

.footer-assistant h3,
.site-footer__nav h3,
.site-footer__contact h3 {
  margin: 0 0 10px;
}

.footer-assistant__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-assistant__conversation {
  max-height: 360px;
  padding: 18px;
  overflow-y: auto;
}

.footer-assistant__message {
  width: fit-content;
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  color: #17324d;
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(7, 19, 32, 0.08);
}

.footer-assistant__field {
  position: relative;
  display: block;
  padding: 14px;
  border-top: 1px solid rgba(7, 19, 32, 0.1);
  background: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-assistant__field input {
  width: 100%;
  min-height: 48px;
  padding: 0 48px 0 14px;
  border: 1px solid rgba(7, 19, 32, 0.14);
  border-radius: 8px;
  color: #071320;
  background: #f8fbfd;
  outline: none;
}

.footer-assistant__field input:focus {
  border-color: #24d7ee;
}

.footer-assistant__reply {
  min-height: 44px;
  color: #17324d;
  line-height: 1.5;
}

.footer-assistant__reply.is-typing::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -2px;
  background: #24d7ee;
  animation: blink 0.9s steps(2, start) infinite;
}

.footer-assistant__links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.footer-assistant__links a {
  padding: 10px 12px;
  border: 1px solid rgba(11, 95, 165, 0.24);
  border-radius: 8px;
  color: #0b5fa5;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-assistant__links a.is-active,
.footer-assistant__links a:hover {
  color: #06121f;
  background: #24d7ee;
  transform: translateX(4px);
}

.footer-assistant__links--static a {
  color: #ffffff;
}

.footer-assistant__send {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #0b5fa5;
  font-size: 1rem;
}

@keyframes assistantOpen {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes assistantDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

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

@keyframes preloaderCore {
  0%, 100% { transform: scale(0.96); box-shadow: 0 0 34px rgba(36, 215, 238, 0.14); }
  50% { transform: scale(1); box-shadow: 0 0 58px rgba(36, 215, 238, 0.28); }
}

@keyframes preloaderNode {
  0%, 100% { opacity: 0.35; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes preloaderProgress {
  from { transform: translateX(-120%); }
  to { transform: translateX(320%); }
}

@keyframes preloaderGrid {
  from { transform: perspective(500px) rotateX(0deg) translateY(0); }
  to { transform: perspective(500px) rotateX(0deg) translateY(44px); }
}

@keyframes glassAmbient {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.08); }
}

@keyframes mapPulse {
  0% { opacity: 0.9; transform: translate(-50%, 50%) scale(0.35); }
  75%, 100% { opacity: 0; transform: translate(-50%, 50%) scale(3.4); }
}

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

@keyframes partnerOrbit {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.04); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes ctaBackdropFlow {
  0% { background-position: 0% 20%, 100% 80%, 0% 50%; }
  100% { background-position: 30% 0%, 70% 100%, 100% 50%; }
}

@keyframes ctaPanelFlow {
  0% { background-position: 0% 20%, 0% 50%; }
  100% { background-position: 35% 0%, 100% 50%; }
}

@keyframes ctaShine {
  0%, 100% { opacity: 0.25; transform: translateX(-20%) rotate(12deg); }
  50% { opacity: 0.8; transform: translateX(150%) rotate(12deg); }
}

@keyframes ctaOrbit {
  0%, 100% { transform: scale(0.94); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes techFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.72) rotate(-2deg);
  }
  18% {
    opacity: var(--tech-opacity, 0.24);
  }
  52% {
    opacity: var(--tech-opacity, 0.24);
    transform: translate3d(var(--float-x, 8px), var(--float-y, -18px), 0) scale(1) rotate(1deg);
  }
  82% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--float-x, 8px), calc(var(--float-y, -18px) - 12px), 0) scale(0.82) rotate(2deg);
  }
}

.site-footer__bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 220px 28px 0;
}

.footer-social {
  margin-top: 26px;
}

.footer-social h3 {
  margin-bottom: 12px;
}

.footer-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social__links a {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(140, 236, 255, 0.18);
  border-radius: 9px;
  color: #dffaff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social__links a:hover {
  border-color: rgba(140, 236, 255, 0.52);
  background: rgba(36, 215, 238, 0.12);
  transform: translateY(-3px);
}

.footer-social__links span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  color: #06182a;
  background: #78eaff;
  font-weight: 950;
}

.site-footer__bar a {
  color: #24d7ee;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-legal a,
.footer-legal button {
  padding: 0;
  border: 0;
  color: #8cecff;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(126, 235, 255, 0.28);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(4, 25, 48, 0.96);
  box-shadow: 0 24px 80px rgba(1, 10, 22, 0.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-banner__icon {
  position: relative;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #24d7ee;
  overflow: hidden;
}

.cookie-banner__icon::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #041930;
}

.cookie-banner__icon i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06487c;
}

.cookie-banner__icon i:nth-child(1) { top: 14px; left: 14px; }
.cookie-banner__icon i:nth-child(2) { right: 13px; bottom: 13px; }
.cookie-banner__icon i:nth-child(3) { bottom: 10px; left: 17px; }

.cookie-banner h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1.12rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner p a {
  color: #8cecff;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal button:hover,
.cookie-banner p a:hover {
  color: #ffffff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__actions .btn {
  min-width: 170px;
  white-space: nowrap;
}

.cookie-banner__necessary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.cookie-consent-pending .footer-assistant {
  opacity: 0;
  pointer-events: none;
}

.legal-hero {
  color: #071b2d;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.58), transparent 26%),
    linear-gradient(118deg, #d9fbff, #bceeff 50%, #a6c6ff);
}

.legal-hero__inner {
  width: min(900px, calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
  padding: 140px 0 96px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.legal-hero p {
  margin: 24px 0 14px;
  color: rgba(7, 27, 45, 0.7);
  font-size: 1.18rem;
  line-height: 1.6;
}

.legal-hero small {
  color: rgba(7, 27, 45, 0.56);
}

.legal-content {
  width: min(900px, calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.legal-content section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(7, 27, 45, 0.1);
}

.legal-content h2 {
  margin: 0 0 12px;
  color: #082c59;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-content p {
  margin: 0;
  color: rgba(7, 27, 45, 0.72);
  line-height: 1.8;
}

.legal-content a {
  color: #0b5fa5;
  font-weight: 800;
}

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

body.is-preloading .reveal {
  opacity: 0 !important;
  transform: translateY(34px) scale(0.985) !important;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 130px);
  }
  50% {
    transform: translate3d(0, -16px, 160px);
  }
}

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

@media (max-width: 1020px) {
  .msb-hero__inner,
  .parallax-band,
  .split-story,
  .detail-grid,
  .contact-grid,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .inquiry-intro {
    position: static;
  }

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

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-row {
    grid-template-columns: minmax(190px, 0.7fr) 1fr;
  }

  .product-row .btn {
    width: fit-content;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-section__content {
    padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  }
}

@media (max-width: 1140px) {
  .site-header__cta {
    display: none;
  }

  .site-nav__link {
    padding: 0.72rem 0.62rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .site-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header__nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(7, 19, 32, 0.1);
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-nav__link {
    padding: 0.72rem;
  }

  .site-nav__list {
    flex-wrap: wrap;
  }

  .msb-hero,
  .msb-hero__inner {
    min-height: auto;
  }

  .msb-hero__inner {
    padding: 84px 0 96px;
  }

  .msb-hero h1,
  .service-hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero-orbit {
    min-height: 390px;
  }

  .hero-orbit__panel {
    inset: 38px 4px 34px;
    padding: 38px 26px 28px;
    transform: rotateY(-5deg) rotateX(4deg);
  }

  .orbit-card {
    width: 160px;
    font-size: 0.88rem;
  }

  .msb-section,
  .cta-section,
  .parallax-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-grid,
  .service-grid--compact,
  .process-grid,
  .technical-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .inquiry-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .form-field--wide,
  .captcha-field {
    grid-column: auto;
  }

  .home-partners__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .technology-news {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .technology-news__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .technology-news__grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 340px;
  }

  .partner-logo {
    width: 164px;
    height: 96px;
    padding: 18px;
  }

  .partner-hero {
    min-height: 580px;
  }

  .partner-hero__inner {
    padding: 100px 0 90px;
  }

  .partner-hero__orbits {
    right: -260px;
    opacity: 0.55;
  }

  .partner-showcase {
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .tech-float:nth-child(2),
  .tech-float:nth-child(4),
  .tech-float:nth-child(6),
  .tech-float:nth-child(8),
  .tech-float:nth-child(10),
  .tech-float:nth-child(12) {
    display: none;
  }

  .tech-float {
    width: 36px;
    height: 36px;
    min-width: 0;
    min-height: 0;
    padding: 9px;
    opacity: 0.2;
  }

  .location-section__map,
  .location-section__map iframe {
    min-height: 390px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .split-story__visual {
    min-height: 360px;
  }

  .timeline-card {
    margin-top: 210px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .site-footer__bar {
    flex-direction: column;
    padding-right: 0;
    padding-bottom: 96px;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 18px;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .legal-hero__inner {
    padding: 105px 0 72px;
  }

  .legal-content {
    padding: 64px 0 80px;
  }

  .footer-assistant {
    right: 12px;
    bottom: 12px;
  }

  .footer-assistant__body {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
  }

  .footer-assistant__toggle {
    min-height: 56px;
    padding-right: 14px;
  }

  .footer-assistant__conversation {
    max-height: min(330px, calc(100vh - 300px));
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-row .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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