@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600&family=Tinos:ital,wght@1,400&family=Unbounded:wght@400;500;600&display=swap");

:root {
  --red: #b90e2f;
  --button: #c8102e;
  --ink: #1d1d24;
  --body: #201b1b;
  --muted: #666666;
  --line: #e8eaed;
  --soft: #eef0f3;
  --white: #ffffff;
  --shell: min(1280px, calc(100% - 160px));
  --narrow: min(1280px, calc(100% - 160px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(200, 16, 46, 0.18);
  color: inherit;
}

html.is-i18n-pending body {
  opacity: 0;
}

html.is-home-motion-pending body {
  opacity: 0;
  pointer-events: none;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-nav-open,
body.is-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

img[data-lqip] {
  background: var(--lqip-image) center / cover no-repeat;
  filter: blur(10px);
  transition: filter 420ms ease;
}

img[data-lqip].is-loaded {
  filter: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
[role="button"],
.nav-toggle,
.carousel-btn,
.carousel-dot,
.button,
.text-link,
.solution-card,
.material-card,
.partner-chip,
.hero-ripple-reveal,
.hero-water,
.hero-bg {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

h1,
h2,
h3,
h4,
p,
dt,
dd,
li,
a,
button,
summary {
  overflow-wrap: anywhere;
}

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

.soft-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.78, 0.22, 1);
  transition-delay: var(--soft-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.soft-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: max(80px, calc((100vw - 1280px) / 2));
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header::after {
  position: absolute;
  inset: -180% -24%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0) 0 11%, rgba(255, 255, 255, 0.48) 12%, rgba(255, 255, 255, 0) 16%),
    radial-gradient(circle at 48% 50%, rgba(185, 231, 249, 0) 0 14%, rgba(185, 231, 249, 0.42) 15%, rgba(185, 231, 249, 0) 19%),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0) 0 10%, rgba(255, 255, 255, 0.34) 11%, rgba(255, 255, 255, 0) 15%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.2);
  transform-origin: 44% 50%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 140px;
  min-width: 140px;
}

.brand-logo {
  display: flex;
  width: 140px;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brand-wordmark {
  width: 139px;
  height: 16px;
}

.brand-line {
  width: 140px;
  height: 1px;
  opacity: 0.9;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 4.7px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand > span:not(.brand-logo),
.footer-brand span {
  display: block;
  font-family: "Sora", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  background: linear-gradient(98deg, #ffffff 22%, #b3b1b1 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-inline-logo {
  display: inline-flex;
  width: 6.9em;
  height: 0.75em;
  align-items: center;
  vertical-align: -0.07em;
  white-space: nowrap;
}

.brand-inline-logo img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(3437%) hue-rotate(337deg) brightness(83%) contrast(101%);
}

.brand-inline-logo--title {
  width: 6.3em;
  height: 0.68em;
  margin-left: 0.05em;
  vertical-align: -0.04em;
}

.section-kicker .brand-inline-logo {
  width: 6.3em;
  height: 0.68em;
  vertical-align: -0.1em;
}

.footer-bottom .brand-inline-logo {
  width: 6.2em;
  height: 0.67em;
  vertical-align: -0.08em;
}

.footer-bottom .brand-inline-logo img {
  filter: none;
}

.home-about .brand-inline-logo img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 30px);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transform-origin: center;
  transition:
    color 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

@media (max-width: 1380px) and (min-width: 1101px) {
  .site-header {
    padding-inline: 48px;
  }

  .site-nav {
    gap: 10px;
    font-size: 12px;
  }
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  transform: scale(1.06);
}

.nav-toggle {
  display: inline-grid;
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2.5px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 1101px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.hero.is-water-ready .hero-bg {
  opacity: 0;
}

.hero-water {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero.is-water-ready .hero-water {
  opacity: 1;
}

.hero-ripple-reveal {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-ripple-reveal span {
  position: absolute;
  width: 34vmax;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0) 0 42%, rgba(255, 255, 255, 0.36) 43%, rgba(255, 255, 255, 0) 49%),
    radial-gradient(circle, rgba(148, 221, 247, 0.22) 0 28%, rgba(148, 221, 247, 0) 58%);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.48),
    inset 0 0 30px rgba(167, 231, 252, 0.32);
  filter: blur(1px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.08);
}

.hero-ripple-reveal span:nth-child(1) {
  left: 62%;
  top: 45%;
}

.hero-ripple-reveal span:nth-child(2) {
  left: 35%;
  top: 58%;
  width: 26vmax;
}

.hero-ripple-reveal span:nth-child(3) {
  left: 78%;
  top: 72%;
  width: 22vmax;
}

.home-ripple-intro .site-header {
  animation: headerRippleIntro 980ms cubic-bezier(0.18, 0.82, 0.16, 1) both;
}

.home-ripple-intro .site-header::after {
  animation: headerRippleRings 1450ms cubic-bezier(0.2, 0.82, 0.18, 1) 90ms both;
}

.home-ripple-intro .hero-bg {
  animation: heroRippleSurfaceIntro 1700ms cubic-bezier(0.18, 0.82, 0.16, 1) 100ms both;
}

.home-ripple-intro .hero.is-water-ready .hero-water {
  animation: heroRippleCanvasIntro 1700ms cubic-bezier(0.18, 0.82, 0.16, 1) 100ms both;
}

.home-ripple-intro .hero-ripple-reveal {
  animation: rippleLayerFade 1900ms ease both;
}

.home-ripple-intro .hero-ripple-reveal span:nth-child(1) {
  animation: rippleCircleExpand 1500ms cubic-bezier(0.16, 0.74, 0.2, 1) 120ms both;
}

.home-ripple-intro .hero-ripple-reveal span:nth-child(2) {
  animation: rippleCircleExpand 1350ms cubic-bezier(0.16, 0.74, 0.2, 1) 280ms both;
}

.home-ripple-intro .hero-ripple-reveal span:nth-child(3) {
  animation: rippleCircleExpand 1250ms cubic-bezier(0.16, 0.74, 0.2, 1) 430ms both;
}

.home-ripple-intro .hero h1,
.home-ripple-intro .hero p,
.home-ripple-intro .hero .button {
  animation: homeHeroCopyIntro 620ms ease both;
}

.home-ripple-intro .hero h1 {
  animation-delay: 160ms;
}

.home-ripple-intro .hero p {
  animation-delay: 260ms;
}

.home-ripple-intro .hero .button {
  animation-delay: 360ms;
}

@media (max-width: 640px) {
  .hero-water,
  .hero-ripple-reveal {
    display: none;
  }

  .hero.is-water-ready .hero-bg {
    opacity: 1;
  }

  .home-mobile-intro .hero-bg {
    animation: homeMobileHeroMediaIntro 520ms ease both;
  }

  .home-mobile-intro .hero h1,
  .home-mobile-intro .hero p,
  .home-mobile-intro .hero .button {
    animation: homeMobileHeroIntro 540ms ease both;
  }

  .home-mobile-intro .hero h1 {
    animation-delay: 80ms;
  }

  .home-mobile-intro .hero p {
    animation-delay: 160ms;
  }

  .home-mobile-intro .hero .button {
    animation-delay: 240ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soft-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav a,
  .footer-links a,
  .footer-bottom div a {
    transition: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"],
  .footer-links a:hover,
  .footer-links a:focus-visible,
  .footer-bottom div a:hover,
  .footer-bottom div a:focus-visible {
    transform: none;
  }

  .hero.is-water-ready .hero-bg {
    opacity: 1;
  }

  .hero-water {
    display: none;
  }

  .home-ripple-intro .site-header,
  .home-ripple-intro .site-header::after,
  .home-ripple-intro .hero-bg,
  .home-ripple-intro .hero.is-water-ready .hero-water,
  .home-ripple-intro .hero-ripple-reveal,
  .home-ripple-intro .hero-ripple-reveal span,
  .home-ripple-intro .hero h1,
  .home-ripple-intro .hero p,
  .home-ripple-intro .hero .button {
    animation: none;
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .home-ripple-intro .hero-bg {
    transform: scaleX(-1);
  }

  .hero-ripple-reveal,
  .site-header::after {
    display: none;
  }
}

@keyframes headerRippleIntro {
  0% {
    clip-path: circle(0% at 18% 50%);
    filter: blur(10px);
    opacity: 0;
  }

  58% {
    clip-path: circle(88% at 24% 50%);
    filter: blur(2px);
    opacity: 1;
  }

  100% {
    clip-path: circle(150% at 50% 50%);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes headerRippleRings {
  0% {
    opacity: 0;
    transform: scale(0.16);
  }

  42% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@keyframes heroRippleCanvasIntro {
  0% {
    clip-path: circle(0% at 62% 48%);
    filter: blur(16px);
    opacity: 0;
    transform: scale(1.04);
  }

  52% {
    clip-path: circle(86% at 62% 48%);
    filter: blur(4px);
    opacity: 1;
    transform: scale(1.018);
  }

  100% {
    clip-path: circle(154% at 62% 48%);
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroRippleSurfaceIntro {
  0% {
    clip-path: circle(0% at 62% 48%);
    filter: blur(16px);
    opacity: 0;
    transform: scaleX(-1) scale(1.04);
  }

  52% {
    clip-path: circle(86% at 62% 48%);
    filter: blur(4px);
    opacity: 1;
    transform: scaleX(-1) scale(1.018);
  }

  100% {
    clip-path: circle(154% at 62% 48%);
    filter: blur(0);
    opacity: 1;
    transform: scaleX(-1) scale(1);
  }
}

@keyframes rippleLayerFade {
  0% {
    opacity: 0;
  }

  14%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes rippleCircleExpand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.08);
  }

  28% {
    opacity: 0.96;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.65);
  }
}

@keyframes homeHeroCopyIntro {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes homeMobileHeroIntro {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes homeMobileHeroMediaIntro {
  0% {
    opacity: 0.9;
    transform: scaleX(-1) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: scaleX(-1) scale(1);
  }
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(241, 250, 253, 0.18) 44%,
    rgba(232, 247, 252, 0) 64%
  );
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 206px;
}

.hero h1 {
  max-width: 1018px;
  margin: 0;
  color: #000000;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(48px, 3.75vw, 72px);
  font-weight: 600;
  line-height: 1.3;
}

.hero p {
  width: min(573px, 100%);
  margin: 24px 0 0;
  color: #000000;
  font-weight: 500;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 55px;
  margin-top: 50px;
  padding: 8px 24px 10px;
  border: 0;
  background: var(--button);
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #a80d28;
  transform: translateY(-1px);
}

.partners {
  --partner-gap: 20px;
  width: min(1340px, calc(100% - 100px));
  margin: 100px auto 0;
  overflow: hidden;
  contain: paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partnersMarquee 58s linear infinite;
  will-change: transform;
}

.partners:hover .partner-track,
.partners:focus-within .partner-track {
  animation-play-state: paused;
}

.partner-run {
  display: flex;
  flex: 0 0 auto;
  gap: var(--partner-gap);
  padding-right: var(--partner-gap);
}

.partner-chip {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 12px 24px 14px;
  background: #eeeeee;
  color: #000000;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.partner-chip span {
  display: none;
}

.partner-chip b {
  font-weight: inherit;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@keyframes partnersMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track,
  .solution-track,
  .belarus-map__outline {
    animation: none;
  }
}

.section-offset {
  margin-top: 120px;
}

.solution-carousel {
  width: var(--narrow);
  margin-inline: auto;
}

.solution-viewport {
  overflow: hidden;
  contain: paint;
}

.solution-track {
  display: flex;
  animation: solutionsMarquee 34s linear infinite;
  transition: transform 320ms ease;
  will-change: transform;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  flex: 0 0 100%;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.solution-media {
  height: 520px;
  overflow: hidden;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-copy {
  padding: 40px;
}

.solution-copy h2 {
  margin: 0;
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.solution-copy p,
.material-card p {
  margin: 20px 0 0;
  line-height: 22px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  padding-bottom: 5px;
  color: var(--button);
  font-weight: 500;
  text-transform: uppercase;
  transform-origin: left center;
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.text-link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateX(6px) scale(1.045);
}

.text-link:hover::before,
.text-link:focus-visible::before {
  transform: scaleX(1);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn,
.carousel-dot {
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
}

.carousel-dot.is-active {
  background: var(--red);
}

@keyframes solutionsMarquee {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.belarus-network {
  position: relative;
  margin-top: 128px;
  padding: 118px 0 128px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f8fa 0%, #e7ebf0 48%, #ffffff 100%);
  color: var(--ink);
  isolation: isolate;
}

.belarus-network::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0) 68%);
  content: "";
  opacity: 0.88;
}

.belarus-network::after {
  display: none;
}

.belarus-network.is-globe-ready::after {
  opacity: 0;
}

.belarus-network__globe {
  position: absolute;
  top: 48%;
  left: 68%;
  z-index: -1;
  display: block;
  width: min(820px, 68vw);
  height: min(820px, 68vw);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 420ms ease;
}

.belarus-network.is-globe-ready .belarus-network__globe {
  opacity: 0.5;
}

.belarus-network__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(600px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.belarus-network__copy {
  position: relative;
  z-index: 2;
}

.belarus-network__copy h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(40px, 3.45vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  color: #1c1c2e;
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.belarus-network__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.belarus-title-logo {
  display: grid;
  width: min(360px, 100%);
  gap: 7px;
}

.belarus-title-logo .brand-wordmark {
  width: 100%;
  height: clamp(30px, 2.65vw, 42px);
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(3437%) hue-rotate(337deg) brightness(83%) contrast(101%);
}

.belarus-network__copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #565963;
  font-size: 18px;
  line-height: 1.62;
}

.belarus-network__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  width: min(620px, calc(100% + 110px));
  max-width: calc(100vw - 64px);
}

.belarus-network__stats div {
  min-height: 174px;
  padding: 20px 18px;
  border: 1px solid rgba(185, 14, 47, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(82, 91, 109, 0.12);
}

.belarus-network__stats strong,
.belarus-network__stats span {
  display: block;
}

.belarus-network__stats strong {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(21px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.belarus-network__stats span + strong {
  margin-top: 20px;
}

.belarus-network__stats span {
  margin-top: 12px;
  color: #5f626b;
  font-size: 13px;
  line-height: 1.35;
}

.belarus-map-card {
  position: relative;
  min-height: 660px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.belarus-map-card::before {
  display: none;
}

.belarus-map-card::after {
  display: none;
}

.belarus-map-card__globe {
  display: none;
}

.belarus-map-card__stage {
  position: relative;
  z-index: 1;
  height: 620px;
  padding: 22px 18px 0;
}

.belarus-map {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 26px 38px rgba(93, 102, 118, 0.24));
}

.belarus-map-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 14px;
  border: 1px solid rgba(185, 14, 47, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: #5f626b;
  font-size: 13px;
  transform: translate(-50%, -50%);
}

.belarus-map__outline {
  display: none;
}

.belarus-region {
  cursor: pointer;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.belarus-region.is-active {
  transform: translate(var(--region-x), var(--region-y));
}

.belarus-region__shape {
  fill: rgba(224, 228, 235, 0.78);
  stroke: rgba(185, 14, 47, 0.34);
  stroke-width: 1.45;
  transition: fill 220ms ease, stroke 220ms ease, filter 220ms ease;
  vector-effect: non-scaling-stroke;
}

.belarus-region__hit,
.belarus-region__hotspot {
  fill: transparent;
  pointer-events: all;
}

.belarus-region__hit {
  stroke: transparent;
  stroke-width: 18;
  vector-effect: non-scaling-stroke;
}

.belarus-region.is-active .belarus-region__shape,
.belarus-region:focus-visible .belarus-region__shape {
  fill: rgba(200, 16, 46, 0.22);
  stroke: rgba(185, 14, 47, 0.82);
  filter: drop-shadow(0 0 16px rgba(185, 14, 47, 0.22));
}

.belarus-region-panel {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  width: min(286px, calc(100% - 56px));
  padding: 14px;
  border: 1px solid rgba(185, 14, 47, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 18px 42px rgba(82, 91, 109, 0.16);
  pointer-events: none;
  transform: translateY(6px);
}

.belarus-region-panel.is-changing {
  animation: regionPanelAppear 420ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.belarus-region-panel span {
  display: block;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.belarus-region-panel h3 {
  margin: 8px 0 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.12;
  color: #1c1c2e;
}

.belarus-region-panel p {
  display: none;
}

.belarus-region-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.belarus-region-metrics div {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(185, 14, 47, 0.12);
  background: rgba(255, 255, 255, 0.34);
}

.belarus-region-metrics strong,
.belarus-region-metrics span {
  display: block;
}

.belarus-region-metrics strong {
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.belarus-region-metrics span {
  margin-top: 6px;
  color: #5f626b;
  font-size: 9px;
  line-height: 1.25;
}

@keyframes regionPanelAppear {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mapOutlinePulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.82;
  }
}

.home-about {
  padding: 100px 0 120px;
  background: var(--red);
  color: var(--white);
}

.home-about-shell {
  width: var(--narrow);
}

.home-about h2 {
  margin: 0 0 52px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(36px, 3.35vw, 64px);
  font-weight: 500;
  line-height: 1.22;
  text-transform: uppercase;
}

.home-about-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(150, 8, 36, 0.18);
}

.home-about-media {
  height: 320px;
  overflow: hidden;
}

.home-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
  padding: 36px 40px 40px;
}

.home-about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
}

.home-about-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
}

.home-about-stats div {
  min-width: 0;
  padding: 16px 0 16px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.home-about-stats div:first-child {
  border-left-color: rgba(255, 255, 255, 0.32);
}

.home-about-stats dt {
  margin: 0;
  color: var(--white);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

.home-about-stats dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.company-story {
  background: var(--white);
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.76fr);
  min-height: 720px;
}

.company-hero-media {
  min-height: 520px;
  overflow: hidden;
}

.company-hero-media img,
.tech-media img,
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--white);
}

.company-hero-copy h1,
.company-hero-copy h2 {
  margin: 0;
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 500;
  line-height: 1.3;
}

.company-hero-copy h1 span,
.company-hero-copy h2 span {
  color: var(--red);
}

.company-hero-copy p {
  margin: 24px 0 0;
  color: #333333;
  font-size: 20px;
  line-height: 32px;
}

.company-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-metrics div {
  min-height: 240px;
  padding: 48px 32px;
  border-left: 1px solid var(--line);
}

.company-metrics div:first-child {
  border-left: 0;
}

.company-metrics dt {
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 500;
  line-height: 1.15;
}

.company-metrics dd {
  margin: 20px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.45;
}

.company-red-band {
  padding: 100px 0;
  background: var(--red);
  color: var(--white);
}

.company-red-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 90px;
  width: var(--narrow);
  margin-inline: auto;
}

.company-red-inner h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1.25;
}

.company-red-inner p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.company-red-inner div:first-child p {
  margin-top: 32px;
}

.company-quote {
  width: var(--narrow);
  margin: 0 auto;
  padding: 110px 0 120px;
}

.company-quote blockquote {
  max-width: 1320px;
  margin: 0;
  color: #1c1c2e;
  font-family: "Tinos", "Times New Roman", serif;
  font-size: clamp(34px, 2.5vw, 48px);
  font-style: italic;
  line-height: 1.3;
}

.company-quote blockquote::after {
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 44px;
  background: var(--red);
  content: "";
}

.company-quote figcaption {
  max-width: 900px;
  margin-top: 44px;
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
}

.about-page {
  background: var(--white);
  color: #000000;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 720px;
  border-bottom: 1px solid #e5e7eb;
}

.about-hero-media {
  min-width: 0;
  overflow: hidden;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  padding: 120px;
  background: var(--white);
}

.about-hero-copy h1 {
  margin: 0;
  color: #000000;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.3;
}

.about-hero-copy h1 span {
  color: var(--red);
}

.about-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 240px;
  margin: 0;
  background: var(--white);
}

.about-stats div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 48px 28px;
  text-align: center;
}

.about-stats div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 76px;
  background: #000000;
  content: "";
  transform: translateY(-50%);
}

.about-stats dt {
  margin: 0;
  color: #000000;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
}

.about-stats dd {
  margin: 12px 0 0;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-red-section {
  padding: 100px 80px 120px;
  background: var(--red);
  color: var(--white);
}

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

.about-red-grid h2 {
  margin: 0 0 40px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.about-red-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}

.about-red-grid p + p {
  margin-top: 0;
}

.about-quote {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  width: min(1200px, calc(100% - 160px));
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.about-quote blockquote {
  margin: 0;
  color: #000000;
  font-family: "Tinos", "Times New Roman", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.about-quote > span {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
}

.about-quote figcaption {
  max-width: 1030px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 32px;
}

.technologies {
  padding: 100px 0 120px;
  background: #f4f5f7;
}

.section-lead {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}

.tech-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  min-height: 620px;
  background: var(--white);
}

.tech-feature-red {
  background: var(--red);
  color: var(--white);
}

.tech-media {
  height: 620px;
  overflow: hidden;
}

.tech-copy {
  padding: clamp(40px, 4vw, 76px);
}

.tech-copy h2,
.tech-copy h3,
.detail-intro h1,
.detail-intro h2 {
  margin: 0;
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(30px, 2.1vw, 40px);
  font-weight: 500;
  line-height: 1.25;
}

.tech-feature-red .tech-copy h2,
.tech-feature-red .tech-copy h3 {
  color: var(--white);
}

.tech-copy p,
.detail-intro p {
  margin: 20px 0 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.5;
}

.tech-feature-red .tech-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.tech-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 36px 0 0;
}

.tech-specs div {
  padding: 0;
}

.tech-specs dt {
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.tech-specs dd {
  margin: 10px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.tech-feature-red .tech-specs dt,
.tech-feature-red .tech-specs dd,
.tech-feature-red .text-link {
  color: var(--white);
}

.technology-detail {
  background: var(--white);
}

.specialty-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
  padding: 0 80px 88px;
  overflow: hidden;
  background: #111111;
}

.specialty-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.specialty-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
  content: "";
}

.specialty-hero-copy {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  color: var(--white);
}

.specialty-hero-copy h1 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.specialty-hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.specialty-content {
  padding-top: 110px;
}

.cardiology-page {
  background: var(--white);
  color: #1c1c2e;
}

.cardiology-page-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 100px 80px 120px;
  background: #f4f5f7;
  text-align: center;
}

.cardiology-page-hero > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  width: min(1760px, 100%);
}

.cardiology-page-hero h1 {
  margin: 0;
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.cardiology-page-hero span {
  width: 40px;
  height: 1px;
  background: var(--red);
}

.cardiology-page-hero p {
  width: min(700px, 100%);
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.3;
}

.cardiology-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
  min-height: 760px;
  padding: 120px 80px;
  background: var(--white);
}

.cardiology-feature-red {
  background: var(--red);
  color: var(--white);
}

.cardiology-feature-media {
  height: 520px;
  min-width: 0;
  overflow: hidden;
}

.cardiology-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cardiology-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.cardiology-feature-copy h2 {
  margin: 0;
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.cardiology-feature-red .cardiology-feature-copy h2 {
  color: var(--white);
}

.cardiology-feature-copy p {
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 22px;
}

.cardiology-feature-red .cardiology-feature-copy p {
  color: var(--white);
}

.cardiology-specs {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0;
}

.cardiology-specs div {
  min-width: max-content;
}

.cardiology-specs dt {
  margin: 0;
  color: var(--button);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.cardiology-feature-red .cardiology-specs dt {
  color: var(--white);
}

.cardiology-specs dd {
  margin: 4px 0 0;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.cardiology-feature-red .cardiology-specs dd {
  color: var(--white);
}

.cardiology-feature-red .text-link {
  color: var(--white);
}

.map-section {
  padding: 100px 0 120px;
  background: #f4f5f7;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 60px;
  align-items: stretch;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.map-copy .section-title {
  align-items: flex-start;
  text-align: left;
}

.map-copy p {
  margin: 28px 0 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
}

.map-copy address {
  margin-top: 28px;
  color: #1c1c2e;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
}

.map-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dfe3e8;
}

.map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px) 0 0 / 82px 82px,
    radial-gradient(circle at 72% 28%, rgba(185, 14, 47, 0.14), transparent 24%),
    #dfe3e8;
}

.map-road,
.map-river {
  position: absolute;
  display: block;
  pointer-events: none;
}

.map-road {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(29, 29, 36, 0.06);
}

.map-road-main {
  top: 42%;
  left: -8%;
  width: 116%;
  height: 30px;
  transform: rotate(-10deg);
}

.map-road-cross {
  top: -8%;
  left: 46%;
  width: 28px;
  height: 116%;
  transform: rotate(18deg);
}

.map-road-ring {
  right: -10%;
  bottom: -20%;
  width: 58%;
  aspect-ratio: 1;
  border: 28px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
}

.map-river {
  top: 8%;
  left: -12%;
  width: 120%;
  height: 72px;
  border-radius: 999px;
  background: rgba(121, 163, 184, 0.42);
  transform: rotate(28deg);
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 54%;
  width: 28px;
  height: 28px;
  border: 7px solid var(--red);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 16px 32px rgba(29, 29, 36, 0.24);
}

.map-pin::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.map-label {
  position: absolute;
  top: calc(43% - 8px);
  left: calc(54% + 28px);
  width: min(300px, calc(100% - 80px));
  padding: 18px 20px;
  background: var(--white);
  color: #1c1c2e;
  box-shadow: 0 24px 60px rgba(29, 29, 36, 0.16);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.map-label span {
  margin-top: 8px;
  color: #666666;
  line-height: 1.45;
}

.detail-hero {
  height: min(700px, 58vw);
  min-height: 360px;
  overflow: hidden;
}

.detail-shell {
  width: min(902px, calc(100% - 160px));
  margin-inline: auto;
  padding: 60px 0 120px;
}

.detail-block {
  margin-top: 30px;
  color: #1c1c2e;
}

.detail-block h2,
.detail-block h3 {
  margin: 0;
  color: #1c1c2e;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.detail-subtitle {
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.detail-steps {
  display: grid;
  gap: 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: detail-step;
}

.detail-steps li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 20px;
  color: #1c1c2e;
  font-size: 18px;
  line-height: 1.3;
  counter-increment: detail-step;
}

.detail-steps li::before {
  color: var(--red);
  font-weight: 700;
  content: counter(detail-step);
}

.star-list {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.star-list li {
  position: relative;
  padding-left: 32px;
  color: #1c1c2e;
  font-size: 18px;
  line-height: 1.3;
}

.star-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("assets/icon-star.svg") center / contain no-repeat;
  content: "";
}

.detail-note {
  margin: 24px 0 0;
  color: #1c1c2e;
  font-size: 18px;
  line-height: 1.3;
}

.operation-stage {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.operation-stage h4 {
  margin: 0;
  color: #1c1c2e;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.materials {
  padding: 100px 0 120px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-title h1 {
  margin: 0;
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(40px, 3.4vw, 64px);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-title span {
  width: 40px;
  height: 1px;
  background: var(--red);
}

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

.section-title-light span {
  background: var(--white);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.material-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.material-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.material-card p {
  color: var(--body);
}

.faq {
  padding: 100px 0 120px;
  background: var(--red);
  color: var(--white);
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.faq-single .faq-columns {
  grid-template-columns: minmax(0, 760px);
}

.faq-column h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.faq-column,
.faq details {
  min-width: 0;
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 53px;
  padding: 8px 0 10px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "›";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  text-align: center;
  font-size: 24px;
  line-height: 22px;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(-90deg);
}

.faq details p {
  margin: 0;
  padding: 0 0 18px;
  font-size: 15px;
  line-height: 20px;
}

.home-contact-cta {
  position: relative;
  min-height: 867px;
  padding: 100px 0 120px;
  overflow: hidden;
  background: #d8dde0;
}

.home-contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-contact-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.56fr);
  gap: 60px;
  align-items: stretch;
  min-height: 647px;
}

.home-contact-spacer {
  min-height: 420px;
}

.home-contact-cta .home-contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  align-self: center;
  min-height: 560px;
  margin: 0;
  padding: 48px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(18, 28, 35, 0.18);
}

.home-contact-cta .home-contact-form h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(30px, 2.3vw, 44px);
  font-weight: 500;
  hyphens: manual;
  line-height: 1.22;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: keep-all;
}

.home-contact-cta .home-contact-form h2::after {
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 14px;
  background: var(--red);
  content: "";
}

.home-contact-cta .home-contact-form label {
  gap: 9px;
}

.home-contact-cta .home-contact-form input,
.home-contact-cta .home-contact-form textarea {
  border-color: #d9dde3;
  background: #fbfbfc;
}

.home-contact-cta .home-contact-form textarea {
  min-height: 118px;
}

.home-contact-cta .home-contact-form .button {
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 60px;
  min-height: 867px;
  padding: 100px 80px 120px;
  overflow: hidden;
}

.contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-spacer {
  position: relative;
  z-index: 1;
  width: 758px;
  max-width: 42vw;
  height: 560px;
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.contact-page {
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding-block: 100px;
}

.contact-page .contact-panel {
  width: min(900px, 100%);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-details div {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 29, 36, 0.16);
}

.contact-details span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-details a {
  display: inline-block;
  margin-top: 10px;
  color: #1c1c2e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--white);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.contact-form input {
  height: 48px;
  padding: 0 16px;
}

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

.contact-form .button {
  margin-top: 0;
}

.contact-form .button:disabled {
  cursor: default;
  opacity: 0.62;
}

.form-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--red);
  font-size: 14px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(29, 29, 36, 0.62);
  cursor: pointer;
}

@supports (backdrop-filter: blur(8px)) {
  .contact-modal__backdrop {
    backdrop-filter: blur(8px);
  }
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 48px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 32px 80px rgba(29, 29, 36, 0.24);
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition: transform 220ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}

.contact-modal__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.contact-modal__close span:first-child {
  transform: rotate(45deg);
}

.contact-modal__close span:last-child {
  transform: rotate(-45deg);
}

.contact-modal__form {
  gap: 20px;
  margin-top: 0;
  padding: 0;
  border: 0;
}

.contact-modal__form h2 {
  margin: 0;
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  hyphens: manual;
  line-height: 1.1;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: keep-all;
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal__dialog {
    transition: none;
  }

  .contact-modal__dialog,
  .contact-modal.is-open .contact-modal__dialog {
    transform: none;
  }
}

.contacts-page {
  background: #f8f9fa;
}

.contacts-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px 80px 120px;
}

.contacts-content h1 {
  margin: 0;
  color: #1c1c2e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 580px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contacts-info-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
}

.contacts-brand span {
  display: block;
  font-family: "Sora", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  background: linear-gradient(98deg, #ffffff 22%, #b3b1b1 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contacts-brand p {
  margin: 6px 0 0;
  color: rgba(255, 253, 253, 0.5);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.contacts-logo {
  display: flex;
  width: 160px;
  flex-direction: column;
  gap: 4px;
}

.contacts-logo .brand-wordmark {
  width: 158px;
  height: 17px;
}

.contacts-logo .brand-line {
  width: 160px;
}

.contacts-logo small {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 5.3px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.contacts-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.contacts-info-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contacts-info-list span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.contacts-info-list a,
.contacts-info-list p {
  display: block;
  margin: 0;
  color: var(--white);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

.contacts-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.contacts-question span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.contacts-question a,
.contacts-question-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-question-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.contacts-map {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 13;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.contacts-map > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts-map-pin {
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--button);
  transform: translate(-50%, -50%);
}

.contacts-map-pin img {
  width: 20px;
  height: 20px;
}

.contact-only-footer {
  background: var(--red);
}

.site-footer {
  background: #e8eaed;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  padding: 80px;
}

.footer-brand {
  width: 300px;
  max-width: 100%;
}

.footer-brand span {
  background: linear-gradient(98deg, var(--red) 22%, #b3b1b1 120%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-brand .footer-logo {
  display: flex;
  width: 150px;
  flex-direction: column;
  gap: 4px;
  background: none;
  color: inherit;
}

.footer-logo .brand-wordmark {
  width: 148px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(3437%) hue-rotate(337deg) brightness(83%) contrast(101%);
}

.footer-logo .brand-line {
  width: 150px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(3437%) hue-rotate(337deg) brightness(83%) contrast(101%);
}

.footer-logo small {
  color: rgba(185, 14, 47, 0.72);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 5px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand p {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 20px;
}

.footer-brand .footer-credit {
  margin-top: 18px;
}

.footer-credit {
  color: rgba(29, 29, 36, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.footer-credit a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links h2 {
  margin: 0;
  color: var(--red);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink);
}

.footer-links a,
.footer-bottom div a {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  transform-origin: left center;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a::after,
.footer-bottom div a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom div a:hover,
.footer-bottom div a:focus-visible {
  transform: translateX(3px);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-bottom div a:hover::after,
.footer-bottom div a:focus-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .footer-bottom div a {
    transition: none;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible,
  .footer-bottom div a:hover,
  .footer-bottom div a:focus-visible {
    transform: none;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 80px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.6;
}

.footer-bottom .footer-credit-bottom {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

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

.footer-bottom div {
  display: flex;
  gap: 24px;
  opacity: 0.8;
}

@media (max-width: 1600px) {
  .about-hero-copy {
    padding: 80px;
  }

  .about-hero-copy h1 {
    font-size: clamp(48px, 4vw, 58px);
  }

  .about-hero-copy p {
    font-size: 18px;
    line-height: 29px;
  }

  .about-stats div {
    padding-inline: 24px;
  }

  .about-stats dt {
    font-size: clamp(30px, 2.4vw, 38px);
  }

  .about-stats dd {
    font-size: 12px;
  }

  .about-red-section {
    padding: 90px 64px 110px;
  }

  .about-red-grid h2 {
    font-size: 36px;
  }

  .about-red-grid p {
    font-size: 17px;
    line-height: 28px;
  }

  .about-quote blockquote {
    font-size: clamp(38px, 3vw, 44px);
  }

  .cardiology-feature {
    gap: 64px;
    min-height: 680px;
    padding: 96px 64px;
  }

  .cardiology-feature-media {
    height: 430px;
  }

  .cardiology-feature-copy h2 {
    font-size: clamp(26px, 2.1vw, 32px);
    line-height: 1.1;
  }

  .cardiology-feature-copy p {
    font-size: 16px;
    line-height: 21px;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(900px, calc(100% - 48px));
    --narrow: min(900px, calc(100% - 48px));
  }

  .site-header {
    padding-inline: 24px;
    overflow: visible;
  }

  .site-header .nav-toggle {
    position: absolute;
    top: 50%;
    right: 24px;
    display: inline-grid !important;
    place-items: center;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    padding: 18px 24px 28px;
    background: var(--red);
    box-shadow: 0 24px 60px rgba(40, 0, 10, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition:
      opacity 160ms ease,
      transform 220ms ease,
      visibility 160ms ease;
    visibility: hidden;
  }

  .site-nav a {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(20px, 6.5vw, 28px);
    line-height: 1.18;
    overflow-wrap: normal;
    transform: none;
    white-space: nowrap;
    word-break: normal;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    transform: none;
  }

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

  .hero {
    min-height: 680px;
    min-height: min(680px, 100svh);
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 64px;
  }

  .partners {
    width: calc(100% - 48px);
    margin-top: 64px;
  }

  .solution-card,
  .belarus-network__shell,
  .company-hero,
  .company-red-inner,
  .home-about-content,
  .home-contact-cta-inner,
  .tech-feature,
  .map-layout,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .solution-card {
    gap: 28px;
    min-height: 0;
  }

  .solution-track {
    animation: none;
    transform: translateX(0);
    will-change: auto;
  }

  .carousel-controls {
    display: flex;
  }

  .solution-card,
  .tech-feature,
  .cardiology-feature,
  .about-hero,
  .home-about-content,
  .home-contact-cta-inner,
  .contacts-grid {
    align-items: stretch;
  }

  .solution-media {
    height: 380px;
  }

  .solution-copy {
    padding: 0;
  }

  .belarus-network {
    margin-top: 96px;
    padding: 92px 0 104px;
  }

  .belarus-network__shell {
    gap: 48px;
  }

  .belarus-network__copy > p:not(.section-kicker) {
    max-width: 760px;
  }

  .belarus-map-card {
    min-height: 620px;
  }

  .belarus-map-card__stage {
    height: 580px;
    padding-inline: 16px;
  }

  .home-about {
    padding: 80px 0 96px;
  }

  .home-about h2 {
    margin-bottom: 36px;
  }

  .home-about-content {
    gap: 32px;
    padding: 32px;
  }

  .home-about-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .home-about-stats div:nth-child(4) {
    border-left-color: rgba(255, 255, 255, 0.32);
  }

  .specialty-hero {
    min-height: 560px;
    padding: 0 24px 64px;
  }

  .company-hero {
    min-height: 0;
  }

  .company-hero-media {
    min-height: 420px;
  }

  .company-hero-copy {
    padding: 56px 24px 64px;
  }

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

  .company-metrics div {
    min-height: 0;
    border-top: 1px solid var(--line);
  }

  .company-metrics div:nth-child(odd) {
    border-left: 0;
  }

  .company-red-inner,
  .company-quote {
    width: calc(100% - 48px);
  }

  .about-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-hero-media {
    height: min(560px, 52vw);
    min-height: 420px;
  }

  .about-hero-copy {
    gap: 22px;
    padding: 64px 24px 72px;
  }

  .about-hero-copy h1 {
    font-size: clamp(40px, 7vw, 56px);
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .about-stats div {
    min-height: 180px;
    border-top: 1px solid #e5e7eb;
  }

  .about-stats div:not(:last-child)::after {
    display: none;
  }

  .about-stats div:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
  }

  .about-red-section {
    padding: 72px 24px 88px;
  }

  .about-red-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-red-grid h2 {
    margin-bottom: 28px;
  }

  .about-quote {
    width: calc(100% - 48px);
    padding: 72px 0 88px;
  }

  .about-quote blockquote {
    font-size: clamp(32px, 5.2vw, 44px);
  }

  .cardiology-page-hero {
    padding: 72px 24px 88px;
  }

  .cardiology-page-hero h1 {
    font-size: clamp(36px, 7vw, 46px);
  }

  .cardiology-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    min-height: 0;
    padding: 72px 24px;
  }

  .cardiology-feature-red .cardiology-feature-copy {
    order: 2;
  }

  .cardiology-feature-red .cardiology-feature-media {
    order: 1;
  }

  .cardiology-feature-media {
    height: 460px;
  }

  .solution-media,
  .tech-media,
  .cardiology-feature-media,
  .about-hero-media {
    width: 100%;
  }

  .cardiology-feature-copy {
    gap: 24px;
  }

  .cardiology-specs {
    gap: 24px 36px;
  }

  .map-layout {
    gap: 32px;
  }

  .home-contact-cta {
    min-height: auto;
    padding: 72px 0 88px;
  }

  .home-contact-cta-inner {
    gap: 32px;
    min-height: 0;
  }

  .home-contact-spacer {
    display: none;
  }

  .home-contact-cta .home-contact-form {
    width: min(640px, 100%);
    justify-self: end;
    min-height: 0;
  }

  .map-copy {
    padding: 0;
  }

  .tech-feature {
    min-height: 0;
  }

  .tech-media {
    order: -1;
    height: 420px;
  }

  .tech-specs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-specs div,
  .tech-specs div:last-child {
    border: 0;
  }

  .detail-shell {
    width: calc(100% - 48px);
  }

  .materials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .contact {
    justify-content: center;
    min-height: auto;
    padding: 72px 24px;
  }

  .contact-spacer {
    display: none;
  }

  .contacts-content {
    padding: 56px 24px 72px;
  }

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

  .contacts-info-card {
    width: 100%;
  }

  .contacts-map {
    aspect-ratio: 16 / 9;
  }

  .footer-main,
  .footer-links {
    flex-direction: column;
  }

  .footer-main {
    align-items: stretch;
    padding: 56px 24px;
  }

  .footer-brand,
  .footer-links,
  .footer-links div {
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    gap: 36px;
  }

  .footer-bottom {
    gap: 18px;
    flex-wrap: wrap;
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --narrow: calc(100% - 32px);
  }

  .site-header {
    height: 72px;
    padding-inline: 16px;
  }

  .brand {
    width: 118px;
    min-width: 118px;
  }

  .brand-logo {
    width: 118px;
    gap: 2px;
  }

  .brand-wordmark {
    width: 117px;
    height: 13px;
  }

  .brand-line {
    width: 118px;
  }

  .brand-tagline {
    font-size: 3.95px;
  }

  .brand > span:not(.brand-logo),
  .footer-brand span {
    font-size: 22px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    padding: 12px 16px 20px;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 600px;
    min-height: min(600px, 100svh);
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.62);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.18;
  }

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

  .solution-copy h2,
  .belarus-network__copy h2,
  .home-about h2,
  .home-contact-cta .home-contact-form h2,
  .company-hero-copy h1,
  .company-hero-copy h2,
  .company-red-inner h2,
  .tech-copy h2,
  .tech-copy h3,
  .detail-intro h1,
  .detail-intro h2,
  .section-title h1,
  .section-title h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    min-width: 0;
    height: 50px;
    margin-top: 28px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .partners {
    width: calc(100% - 32px);
    margin-top: 44px;
    --partner-gap: 12px;
  }

  .partner-track {
    animation-duration: 34s;
  }

  .partner-chip {
    width: auto;
    height: 52px;
    padding: 10px 18px;
    font-size: 16px;
  }

  .section-offset {
    margin-top: 64px;
  }

  .solution-card {
    gap: 22px;
  }

  .solution-media {
    height: 240px;
  }

  .contact-panel,
  .contact-form {
    padding: 20px;
  }

  .belarus-network {
    margin-top: 72px;
    padding: 64px 0 24px;
  }

  .belarus-network__shell {
    gap: 32px;
  }

  .belarus-network::after {
    top: 58%;
    left: 63%;
    width: 116vw;
    opacity: 0.42;
  }

  .belarus-network__globe {
    top: 58%;
    left: 63%;
    width: 116vw;
    height: 116vw;
  }

  .belarus-network.is-globe-ready .belarus-network__globe {
    opacity: 0.52;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .belarus-title-logo {
    width: min(250px, 92%);
    gap: 5px;
  }

  .belarus-network__copy > p:not(.section-kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.52;
  }

  .belarus-network__stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 28px;
  }

  .belarus-network__stats div {
    min-height: 0;
    padding: 14px 12px;
  }

  .belarus-network__stats strong {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .belarus-network__stats span + strong {
    margin-top: 16px;
  }

  .belarus-network__stats span {
    font-size: 11px;
  }

  .belarus-map-card {
    min-height: 330px;
  }

  .belarus-map-card__stage {
    height: 322px;
    padding: 16px 4px 0;
  }

  .belarus-region-panel {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 12px;
  }

  .belarus-region-panel h3 {
    font-size: 17px;
  }

  .belarus-region-metrics {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    margin-top: 10px;
  }

  .belarus-region-metrics div {
    padding: 8px;
  }

  .belarus-region-metrics strong {
    font-size: 15px;
  }

  .belarus-region-metrics span {
    font-size: 10px;
  }

  .home-about {
    padding: 64px 0 72px;
  }

  .home-about h2 {
    margin-bottom: 28px;
  }

  .home-about-media {
    height: 220px;
  }

  .home-about-content {
    gap: 28px;
    padding: 24px 20px 28px;
  }

  .home-about-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .home-about-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .home-about-stats div,
  .home-about-stats div:nth-child(4) {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .home-about-stats dt {
    font-size: clamp(22px, 7vw, 28px);
  }

  .home-contact-cta {
    padding: 56px 0 64px;
  }

  .home-contact-cta .home-contact-form {
    gap: 18px;
    padding: 28px 20px;
  }

  .home-contact-cta .home-contact-form textarea {
    min-height: 96px;
  }

  .company-hero-media {
    min-height: 240px;
  }

  .company-hero-copy {
    padding: 36px 16px 48px;
  }

  .company-hero-copy p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .company-metrics {
    grid-template-columns: 1fr;
  }

  .company-metrics div {
    padding: 24px 16px;
    border-left: 0;
  }

  .company-metrics dt {
    font-size: clamp(24px, 7vw, 32px);
  }

  .company-red-band,
  .technologies,
  .map-section {
    padding: 64px 0;
  }

  .company-red-inner {
    gap: 32px;
  }

  .company-red-inner p {
    font-size: 16px;
    line-height: 1.55;
  }

  .company-quote {
    padding: 64px 0;
  }

  .company-quote blockquote {
    font-size: clamp(24px, 7.6vw, 30px);
  }

  .company-quote blockquote::after {
    margin-top: 32px;
  }

  .company-quote figcaption {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.5;
  }

  .about-hero-media {
    height: auto;
    min-height: 280px;
  }

  .about-hero-copy {
    gap: 18px;
    padding: 40px 16px 56px;
  }

  .about-hero-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.18;
  }

  .about-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats div {
    min-height: 136px;
    padding: 28px 16px;
    border-right: 0;
  }

  .about-stats div:nth-child(odd) {
    border-right: 0;
  }

  .about-stats div:last-child {
    border-bottom: 1px solid #e5e7eb;
  }

  .about-stats dt {
    font-size: clamp(26px, 7.8vw, 34px);
  }

  .about-stats dd {
    margin-top: 9px;
    font-size: 12px;
  }

  .about-red-section {
    padding: 64px 16px 72px;
  }

  .about-red-grid {
    gap: 28px;
  }

  .about-red-grid h2 {
    margin-bottom: 24px;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.18;
  }

  .about-red-grid p {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-quote {
    gap: 26px;
    width: calc(100% - 32px);
    padding: 64px 0 72px;
  }

  .about-quote blockquote {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.32;
  }

  .about-quote figcaption {
    font-size: 16px;
    line-height: 1.55;
  }

  .cardiology-page-hero {
    gap: 20px;
    padding: 56px 16px 64px;
  }

  .cardiology-page-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .cardiology-page-hero p {
    font-size: 16px;
    line-height: 1.45;
  }

  .cardiology-feature {
    gap: 28px;
    padding: 56px 16px;
  }

  .cardiology-feature-media {
    height: 280px;
  }

  .cardiology-feature-copy h2 {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.16;
  }

  .cardiology-feature-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

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

  .cardiology-specs div {
    min-width: 0;
  }

  .cardiology-specs dt {
    font-size: 17px;
  }

  .tech-stack {
    gap: 40px;
    margin-top: 40px;
  }

  .tech-media {
    height: 240px;
  }

  .tech-copy {
    padding: 28px 20px;
  }

  .tech-copy p,
  .detail-intro p {
    font-size: 16px;
    line-height: 1.5;
  }

  .tech-specs {
    margin-top: 28px;
  }

  .tech-specs div {
    padding: 18px 0;
  }

  .tech-specs dt {
    font-size: 16px;
  }

  .detail-hero {
    min-height: 220px;
  }

  .specialty-hero {
    min-height: 440px;
    padding: 0 16px 44px;
  }

  .specialty-hero-copy h1 {
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1.16;
  }

  .specialty-hero-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .specialty-content {
    padding-top: 64px;
  }

  .map-frame {
    min-height: 320px;
  }

  .map-label {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 14px 16px;
  }

  .detail-shell {
    width: calc(100% - 32px);
    padding: 40px 0 64px;
  }

  .detail-block {
    margin-top: 28px;
  }

  .detail-block h2,
  .detail-block h3 {
    font-size: 21px;
  }

  .detail-subtitle,
  .operation-stage h4 {
    font-size: 18px;
  }

  .detail-steps li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .star-list li,
  .detail-note {
    font-size: 16px;
    line-height: 1.45;
  }

  .materials,
  .faq,
  .home-contact-cta {
    padding: 64px 0;
  }

  .materials-grid {
    gap: 32px;
    margin-top: 40px;
  }

  .faq-columns {
    gap: 36px;
    margin-top: 40px;
  }

  .faq-column h3 {
    font-size: 20px;
  }

  .faq summary {
    min-height: 48px;
    font-size: 15px;
  }

  .contact {
    padding: 64px 16px;
  }

  .contact-page {
    min-height: auto;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .contact-details a {
    font-size: 16px;
  }

  .contact-form {
    gap: 18px;
    margin-top: 32px;
  }

  .contact-form input {
    height: 46px;
  }

  .contact-form textarea {
    min-height: 86px;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal__dialog {
    max-height: calc(100dvh - 24px);
    padding: 52px 20px 24px;
  }

  .contact-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .contact-modal__form h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .contacts-content {
    gap: 28px;
    padding: 40px 16px 48px;
  }

  .contacts-content h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.18;
  }

  .contacts-info-card {
    gap: 24px;
    padding: 24px 20px;
  }

  .contacts-info-list {
    gap: 22px;
  }

  .contacts-info-list a,
  .contacts-info-list p {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.45;
  }

  .contacts-map {
    aspect-ratio: 4 / 3;
  }

  .footer-main {
    gap: 32px;
    padding: 44px 16px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-links {
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 16px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 360px) {
  :root {
    --shell: calc(100% - 28px);
    --narrow: calc(100% - 28px);
  }

  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .brand {
    width: 108px;
    min-width: 108px;
  }

  .brand-logo {
    width: 108px;
  }

  .brand-wordmark {
    width: 107px;
    height: 12px;
  }

  .brand-line {
    width: 108px;
  }

  .brand-tagline {
    font-size: 3.65px;
  }

  .brand > span:not(.brand-logo),
  .footer-brand span {
    font-size: 20px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
    padding-inline: 16px;
  }

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

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
  }

  .button {
    height: 48px;
  }

  .partners {
    width: calc(100% - 28px);
  }

  .partner-chip {
    padding: 10px 14px;
  }

  .section-offset {
    margin-top: 56px;
  }

  .solution-media,
  .tech-media {
    height: 216px;
  }

  .belarus-map-card {
    min-height: 318px;
  }

  .belarus-map-card__stage {
    height: 310px;
  }

  .belarus-title-logo {
    width: min(218px, 92%);
  }

  .belarus-region-panel {
    padding: 10px;
  }

  .belarus-region-metrics strong {
    font-size: 14px;
  }

  .home-about-media {
    height: 200px;
  }

  .home-about-content,
  .home-contact-cta .home-contact-form {
    padding-inline: 18px;
  }

  .specialty-hero {
    min-height: 420px;
  }

  .company-quote blockquote {
    font-size: 24px;
  }

  .about-hero-media {
    min-height: 240px;
  }

  .about-hero-copy h1 {
    font-size: 29px;
  }

  .about-quote blockquote {
    font-size: 24px;
  }

  .cardiology-page-hero {
    padding: 48px 14px 56px;
  }

  .cardiology-feature {
    padding: 48px 14px;
  }

  .cardiology-feature-media {
    height: 230px;
  }

  .cardiology-feature-copy h2 {
    font-size: 23px;
  }

  .map-frame {
    min-height: 300px;
  }

  .contacts-content {
    padding-inline: 14px;
  }

  .contacts-info-card {
    padding: 22px 18px;
  }
}
