@font-face {
  font-family: Onest;
  src: url('../fonts/Onest-Light.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url('../fonts/Onest-ExtraBold.woff') format("woff"), url('../fonts/Onest-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url('../fonts/Onest-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url('../fonts/Onest-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Onest;
  src: url('../fonts/Onest-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* PERF: Removed unused font weights: 100 (Thin), 200 (ExtraLight), 900 (Black) */

:root {
  --dark-slate-gray: #4d565d;
  --dark-slate-gray-2: #243039;
  --dark-gray: #999;
  --medium-aquamarine: #5cc489;
  --peru: #dd783f;
  --medium-turquoise: #4aaec2;
  --pale-violet-red: #d25f7c;
  --goldenrod: #e5b909;
  --firebrick: #c12424;
  --royal-blue: #0451a1;
  --goldenrod-2: #c7a109;
}

body {
  background-color: #001234;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #2eb5d0;
}

.mail {
  color: #fff;
  font-size: .8rem;
}

.cont {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1600px;
  display: flex;
}

.div7 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.se3 {
  height: 950px;
  padding-top: 117px;
  padding-bottom: 53px;
}

.link {
  z-index: 1;
  color: #fff;
  border: 1px solid #ffffff24;
  border-radius: .7rem;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 1.1rem;
  transition: color .375s, border-color .375s, box-shadow .375s, background-color .375s;
  box-shadow: inset 0 2px 5px -18px #fff0;
}

.link:hover {
  color: #2eb5d0;
  border-color: #0b2c57;
  box-shadow: inset 0 0 20px 6px #0b2c577a;
}

.link.w--current {
  color: #42cff2;
}

.link.button {
  background-color: #3898ec00;
  border-radius: .7rem;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: .9rem;
}

.link.button._2 {
  background-color: #3898ec1a;
}

.link.menu {
  border-radius: .7rem;
  width: 100%;
  font-size: 1.1rem;
}

.icon {
  margin-right: 18px;
  font-size: 11px;
}

.footer-1 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-2 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 143px;
  display: flex;
}

.footer-2 {
  justify-content: space-between;
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.se2 {
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background-color: #F4F7FA;
  /* Только укрупнённая сетка (каждые 5 клеток) */
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.085) 1px, transparent 1px);
  background-size: 100px 100px;
  transform: translateZ(0);
  contain: layout style paint;
}

/* Мелкая сетка - тонкие блеклые линии */
.se2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(180, 190, 200, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(180, 190, 200, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* Точки в углах клеток */
.se2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(140, 160, 180, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 10px 10px;
  pointer-events: none;
  z-index: 0;
}

/* CAD Frame - внешняя рамка */
.se2__frame {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

/* CAD Frame - внутренняя рамка */
.se2__frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
}

/* Угловые элементы рамки */
.se2__corner {
  position: absolute;
  width: 18px;
  height: 18px;
}

.se2__corner.tl {
  top: -2px;
  left: -2px;
  border-left: 3px solid rgba(15, 23, 42, 0.18);
  border-top: 3px solid rgba(15, 23, 42, 0.18);
  border-top-left-radius: 6px;
}

.se2__corner.tr {
  top: -2px;
  right: -2px;
  border-right: 3px solid rgba(15, 23, 42, 0.18);
  border-top: 3px solid rgba(15, 23, 42, 0.18);
  border-top-right-radius: 6px;
}

.se2__corner.bl {
  bottom: -2px;
  left: -2px;
  border-left: 3px solid rgba(15, 23, 42, 0.18);
  border-bottom: 3px solid rgba(15, 23, 42, 0.18);
  border-bottom-left-radius: 6px;
}

.se2__corner.br {
  bottom: -2px;
  right: -2px;
  border-right: 3px solid rgba(15, 23, 42, 0.18);
  border-bottom: 3px solid rgba(15, 23, 42, 0.18);
  border-bottom-right-radius: 6px;
}

.se2 .div2 {
  position: static;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px;
}

.se2 .h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(15, 23, 42, 0.72);
  margin-bottom: 80px;
}

/* ===== HIW Section Layout ===== */
.hiw__main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  overflow: hidden;
  margin-top: 30px;
}

/* Left sidebar */
.hiw__sidebar {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.95);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.hiw__stage-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  margin-bottom: 2px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-left: 3px solid transparent;
}

.hiw__stage-item:hover {
  background: rgba(0,158,186,0.04);
}

.hiw__stage-item.is-active {
  background: transparent;
  border-left-color: #009EBA;
}

.hiw__stage-number {
  font: 600 14px 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: rgba(71,85,105,0.6);
  min-width: 20px;
}

.hiw__stage-item.is-active .hiw__stage-number {
  color: rgba(15,23,42,0.9);
}

.hiw__stage-label {
  font: 600 13px 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: rgba(71,85,105,0.75);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hiw__stage-item.is-active .hiw__stage-label {
  color: rgba(15,23,42,0.9);
  font-weight: 700;
}

/* Active indicator dot */
.hiw__stage-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  margin-left: auto;
}

.hiw__stage-item.is-active::after {
  background: #009EBA;
}

/* Description under sidebar */
.hiw__description {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hiw__description-title {
  font: 700 14px 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #009EBA;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px 0;
}

.hiw__description-text {
  font: 400 13px/1.6 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: rgba(71,85,105,0.88);
  margin: 0;
}

/* Right side */
.hiw__right {
  display: flex;
  flex-direction: column;
  background: rgba(248,250,252,0.5);
}

/* Diagram wrapper */
.hiw__diagram-wrapper {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hiw__diagram {
  width: 100%;
  max-width: 850px;
  height: auto;
}

/* SVG Styles */
.hiw__svg-label {
  font: 500 12px 'Inter', ui-sans-serif, system-ui, sans-serif;
  fill: rgba(71,85,105,0.85);
}

.hiw__svg-sublabel {
  font: 400 10px 'Inter', ui-sans-serif, system-ui, sans-serif;
  fill: rgba(71,85,105,0.65);
}

.hiw__svg-text--teal {
  font: 500 11px 'Inter', ui-sans-serif, system-ui, sans-serif;
  fill: #009EBA;
}

.hiw__svg-box {
  stroke-width: 2;
}

.hiw__svg-box--input {
  fill: rgba(212,241,246,0.5);
  stroke: rgba(0,158,186,0.4);
}

.hiw__svg-box--cots {
  fill: #FFFFFF;
  stroke: rgba(100,116,139,0.35);
}

.hiw__svg-box--core {
  fill: #D4F1F6;
  stroke: rgba(0,158,186,0.7);
}

.hiw__svg-box--concentrate {
  fill: #FCF0E5;
  stroke: rgba(210,132,55,0.7);
}

.hiw__svg-module-title {
  font: 600 12px 'Inter', ui-sans-serif, system-ui, sans-serif;
  fill: rgba(15,23,42,0.85);
}

.hiw__svg-module-sub {
  font: 400 10px 'Inter', ui-sans-serif, system-ui, sans-serif;
  fill: rgba(71,85,105,0.75);
}

.hiw__svg-module-title--orange {
  fill: rgba(146,64,14,0.9);
  font-size: 11px;
}

.hiw__svg-module-sub--orange {
  fill: rgba(146,64,14,0.7);
}

.hiw__svg-stream {
  fill: none;
  stroke: rgba(100,116,139,0.5);
  stroke-width: 2;
}

.hiw__svg-stream--teal {
  fill: none;
  stroke: #009EBA;
  stroke-width: 2;
}

.hiw__svg-stream--orange {
  fill: none;
  stroke: rgba(210,132,55,0.7);
  stroke-width: 2;
  stroke-dasharray: 6 4;
}

/* Module highlight on active */
.hiw__module.is-active .hiw__svg-box {
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(0,158,186,0.3));
}

/* Legend */
.hiw__legend {
  padding: 20px 24px;
  background: rgba(248,250,252,0.8);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hiw__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hiw__legend-swatch {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  border: 2px solid;
  flex-shrink: 0;
}

.hiw__legend-swatch--core {
  background: #D4F1F6;
  border-color: rgba(0,158,186,0.7);
}

.hiw__legend-swatch--cots {
  background: #FFFFFF;
  border-color: rgba(100,116,139,0.35);
}

.hiw__legend-text {
  font: 400 12px 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: rgba(15,23,42,0.8);
}

.hiw__legend-text strong {
  font-weight: 600;
}

.hiw__legend-note {
  font: 400 11px 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: rgba(71,85,105,0.75);
  margin: 0;
  flex-basis: 100%;
}

.hiw__legend-note strong {
  font-weight: 600;
  color: rgba(15,23,42,0.8);
}

/* Responsive */
@media (max-width: 1100px) {
  .hiw__main {
    grid-template-columns: 1fr;
  }

  .hiw__sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
  }

  .hiw__stage-item {
    padding: 10px 14px;
    margin-bottom: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .hiw__stage-item.is-active {
    border-bottom-color: #009EBA;
  }

  .hiw__stage-item::after {
    display: none;
  }

  .hiw__description {
    display: none;
  }

  .hiw__diagram-wrapper {
    min-height: 300px;
    padding: 15px;
  }

  .hiw__legend {
    padding: 16px 20px;
    gap: 16px;
  }
}

.se2.no {
  display: none;
}

.phone {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
}

.div3 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.footer2 {
  background-color: #000000;
  margin-left: auto;
  margin-right: auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.div1 {
  width: 95%;
  max-width: 1600px;
  height: 97%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.dropdown-list {
  background-color: #b98686;
}

.dropdown-list.w--open {
  background-color: #001234b5;
  border: 1px solid #ffffff0d;
  border-radius: 1.1rem;
  position: relative;
}

.se6 {
  height: 950px;
  padding-top: 117px;
  padding-bottom: 53px;
}

.logo {
  background-image: url('../images/Group-1.png');
  background-image: -webkit-image-set(url('../images/Group-1.webp') type('image/webp'), url('../images/Group-1.png') type('image/png'));
  background-image: image-set(url('../images/Group-1.webp') type('image/webp'), url('../images/Group-1.png') type('image/png'));
  background-position: 50%;
  background-size: cover;
  flex: none;
  order: -9999;
  width: 14%;
  padding-bottom: 5.3%;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  background-color: #3898ec30;
  border: 1px solid #142b58;
  border-radius: 2rem;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 14px 1.9rem;
  font-size: 1rem;
  display: flex;
}

.se7 {
  height: 950px;
  padding-top: 117px;
  padding-bottom: 53px;
}

.h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 43px;
  font-weight: 600;
  line-height: 150%;
}

.div5, .div4 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.text {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 400;
}

.div6 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  background-color: #00123447;
  border: 1px solid #385a9900;
  border-radius: 1.3rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1600px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 32px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  z-index: 100;
}

.se1 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.se5 {
  height: 950px;
  padding-top: 117px;
  padding-bottom: 53px;
}

.div2 {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.h1 {
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 150%;
}

.footer, .se4 {
  height: 950px;
  padding-top: 117px;
  padding-bottom: 53px;
}

.div-block {
  order: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.but-cont {
  grid-column-gap: 2.1rem;
  grid-row-gap: 2.1rem;
  order: 9999;
  justify-content: center;
  align-items: center;
  display: flex;
}

.body {
  color: #fff;
  background-color: #000;
  font-family: Onest, Arial, sans-serif;
}

.colum-l {
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 1px;
  display: flex;
  position: relative;
}

.colum-r {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 7%;
  display: flex;
}

.content-img {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 29px;
  display: flex;
}

.div-block-3 {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  display: flex;
}

.lang {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  color: #fff;
  background-color: #0b2c5700;
  border: 1px solid #0b2c57;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 48px;
  display: flex;
}

.icon-lang {
  background-image: url('../images/Globe.svg');
  background-position: 0 0;
  background-size: cover;
  width: 24px;
  height: 24px;
}

.icon-lang._2 {
  background-image: url('../images/Notebook.svg');
}

.foto {
  background-image: url('../images/Ellipse-2.svg');
  background-position: 0%;
  background-size: cover;
  width: 90%;
  padding-bottom: 90%;
}

.sfera {
  z-index: 2;
  opacity: 1;
  background-image: radial-gradient(circle at 81% 29%, #a2edffba, #000b20d9 55%), linear-gradient(18deg, #5991b9, #27a9cc7d);
  border-radius: 200rem;
  width: 95%;
  position: relative;
  transform: rotate(0);
  /* PERF: заменили box-shadow 800px на filter для GPU-ускорения */
  box-shadow: 0 0 26px -3px #ffffff5e, inset 0 2px 5px 5px #ffffff08;
  filter: drop-shadow(0 0 80px #42cff2a1);
}

.sfera.no {
  display: none;
}

.soa {
  color: #27a9cc;
  border: 1px #0594bc;
  border-radius: 2rem;
  display: flex;
}

.text-block {
  color: #ffffffc9;
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: .6rem;
  margin-right: auto;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 151%;
}

.text-block._2 {
  color: inherit;
}

.div-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.div-block-5 {
  justify-content: flex-end;
  align-items: center;
  width: 90%;
  display: flex;
  position: relative;
}

.podpis {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-bottom: 1.8rem;
  display: flex;
}

.podpis.no {
  display: flex;
}

._1 {
  outline-offset: 0px;
  background-color: #9afdff;
  border-radius: 2rem;
  outline: 3px #fff;
  flex: none;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 21px 15px #ffffff69, 0 0 57px 32px #ffffff6e;
}

._1.no {
  display: none;
}

.text-block-2 {
  color: #fff;
  text-transform: uppercase;
  width: 245px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  position: absolute;
  top: 12%;
  left: 70%;
}

.spa {
  color: #42cff2;
}

/* .content-how-it-works - moved to HIW Interactive Panel section */

.kart-work {
  border: 1px solid #385a9959;
  border-radius: 2rem;
  width: 32%;
  margin-bottom: 2%;
  padding: 2.3rem;
  transition: color .275s, box-shadow .275s;
  box-shadow: inset 20px 20px 101px 83px #40cdf005;
}

.kart-work:hover {
  color: #07a1c7;
  box-shadow: inset 20px 20px 101px 83px #40cdf012;
}

.kart-work._2 {
  background-color: #49d8fa0d;
  width: 50%;
  display: flex;
}

.foto-wirk {
  background-image: url('../images/Frame-6.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 94%;
}

.foto-wirk._2 {
  background-image: url('../images/Frame-7.png');
}

.foto-wirk._3 {
  background-image: url('../images/Frame-8.png');
  background-position: 50%;
}

.foto-wirk._4 {
  background-image: url('../images/Frame-9.png');
}

.foto-wirk._5 {
  background-image: url('../images/Frame-11.png');
}

.foto-wirk._6 {
  background-image: url('../images/Frame-12.png');
  background-size: cover;
}

.numb {
  color: #ffffff12;
  background-color: #08a2c800;
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
  font-size: 5.5rem;
  font-weight: 200;
  display: flex;
  position: relative;
  top: 17px;
}

.div-block-6 {
  height: 0;
  position: relative;
}

.head {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 400;
}

.text-work {
  color: #fff9;
  font-size: 1rem;
  line-height: 150%;
}

.text-block-3 {
  color: #ffffff73;
  font-size: .8rem;
}

.div-block-7 {
  border-top: 2px solid #069dc4;
  border-right: 2px solid #069dc4;
  border-radius: .4rem;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -177px;
  left: auto;
  right: 0%;
  transform: rotate(45deg);
}

.div-block-8 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.foto-wirk-dop {
  background-image: url('../images/Frame-13.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 2rem;
  flex: none;
  width: 50%;
  margin-bottom: 2rem;
  padding-bottom: 47%;
}

.foto-wirk-dop._2 {
  background-image: url('../images/Frame-14.png');
}

.foto-wirk-dop._3 {
  background-image: url('../images/Frame-8.png');
  background-position: 50%;
}

.foto-wirk-dop._4 {
  background-image: url('../images/Frame-9.png');
}

.foto-wirk-dop._5 {
  background-image: url('../images/Frame-11.png');
}

.foto-wirk-dop._6 {
  background-image: url('../images/Frame-12.png');
  background-size: cover;
}

.div-block-9 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 2%;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 2%;
  grid-row-gap: 2%;
  display: flex;
}

.noize {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 117px;
  padding-bottom: 53px;
  display: flex;
}

.menu-button {
  box-shadow: none;
  border: 1px solid #fff0;
  border-radius: .7rem;
  order: 9999;
  padding: 7px;
  font-size: 33px;
  transition: color .325s;
}

.menu-button:hover {
  color: #059fc8;
}

.menu-button:focus-visible, .menu-button[data-wf-focus-visible] {
  box-shadow: none;
}

.menu-button.w--open {
  background-color: #42cff205;
}

.nav-menu-2 {
  z-index: 2;
  background-color: #031028f7;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 96px 3% 31px 2%;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.dropdown, .menu {
  width: 100%;
}

.div-block-11 {
  order: 9999;
}

.div-block-12 {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: column;
  width: 261px;
  display: flex;
}

.text-block-4 {
  order: 9999;
}

.content-how {
  display: flex;
}

.board {
  width: 100%;
}

.dahboard {
  background-image: url('../images/image-21-2-1.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 2rem;
}

.content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 6% 5% 7%;
  display: flex;
}

.kart {
  background-color: #000b20e8;
  border-radius: 1rem;
  width: 25%;
  margin-top: 22.4rem;
  margin-bottom: 67px;
  padding: 40px 2rem;
}

.head-text {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.div-block-14 {
  grid-column-gap: 1%;
  grid-row-gap: 1%;
  width: 100%;
  margin-bottom: 2%;
  display: flex;
}

.div-block-14._2 {
  margin-bottom: 0%;
}

.punkt {
  background-color: #ffffff57;
  width: 1px;
  height: 158px;
  padding-left: 1px;
  position: absolute;
  transform: rotate(0);
}

.div-block-15 {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.text-block-5 {
  margin-bottom: 18px;
}

.info-up {
  color: #fff;
  text-transform: none;
  background-color: #000b20e0;
  border-radius: .9rem;
  flex: none;
  width: 300px;
  margin-bottom: 78px;
  padding: 16px 13px;
}

.point-map-act {
  cursor: pointer;
  background-color: #42cff2;
  background-image: url('../images/Info.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 27px 27px;
  background-attachment: scroll;
  border-radius: 70px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 2%;
  text-decoration: none;
  transition: transform .35s;
  display: flex;
  position: absolute;
  bottom: 23%;
  left: 5%;
  box-shadow: 0 2px 17px 10px #42cff25c;
}

.point-map-act:hover {
  transform: scale(1.1);
}

.point-map-act._7 {
  bottom: 67%;
  left: 77%;
}

.point-map-act._5 {
  bottom: 87%;
  left: 72%;
}

.point-map-act._8 {
  bottom: 41%;
  left: 85%;
}

.point-map-act._6 {
  bottom: 95%;
  left: 86%;
}

.point-map-act._2 {
  bottom: 58%;
  left: 25%;
}

.point-map-act._3 {
  bottom: 68%;
  left: 41%;
}

.point-map-act._4 {
  bottom: 78%;
  left: 57%;
}

.board-map {
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 1336px;
  margin-left: 20%;
  margin-right: 20%;
  padding-bottom: 54%;
  display: flex;
  position: relative;
}

.head-how {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.text-how {
  color: #ffffffc7;
}

.div-block-16 {
  margin-top: 44px;
}

.dropdown-list-lang {
  background-color: #b98686;
}

.dropdown-list-lang.w--open {
  background-color: #001234b5;
  border: 1px solid #ffffff0d;
  border-radius: 1.1rem;
  position: absolute;
}

.spline-scene {
  height: 100vh;
  padding-top: 42px;
  position: absolute;
  inset: 0%;
}

.spline-scene canvas {
  /* GPU compositing handled by WebGL context itself — no extra will-change needed */
}

.spline-content {
  height: 0;
}

.div-block-17 {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 0;
  display: flex;
}

@media screen and (max-width: 991px) {
  .board-map {
    padding-bottom: 61%;
  }
}

@media screen and (max-width: 479px) {
  .info-up {
    font-size: 11px;
  }

  .board-map {
    padding-bottom: 50%;
  }
}

/* ===================================
   HEADER ICONS REFINEMENT
   =================================== */

/* Бургер-меню: полностью переопределяем на CSS-only с тонкими линиями 1px */
.w-icon-nav-menu {
  width: 22px !important;
  height: 16px !important;
  display: block !important;
  position: relative !important;
}

/* Скрыть icon font */
.w-icon-nav-menu:before {
  content: none !important;
  display: none !important;
}

/* Создаем свои линии 1px */
.w-icon-nav-menu {
  background: currentColor;
  height: 1px !important;
  width: 22px !important;
  position: relative;
  top: 7px;
}

.w-icon-nav-menu:before,
.w-icon-nav-menu:after {
  content: '' !important;
  display: block !important;
  background: currentColor;
  height: 1px !important;
  width: 22px !important;
  position: absolute;
  left: 0;
  border: none !important;
}

.w-icon-nav-menu:before {
  top: -7px !important;
}

.w-icon-nav-menu:after {
  top: 7px !important;
}

/* Выравнивание: бургер и глобус на одной линии */
.menu-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  height: 24px !important;
  width: 32px !important;
  transform: translateY(-15px) !important;
}

.navbar .w-dropdown {
  transform: translateY(-6px) !important;
  display: flex !important;
  align-items: center !important;
}

.navbar .div-block-11 {
  display: flex !important;
  align-items: center !important;
  height: 24px !important;
}

/* Стрелка dropdown справа от глобуса */
.navbar .w-dropdown .w-dropdown-toggle {
  display: flex !important;
  gap: 20px !important;
}

.navbar .w-dropdown .icon-lang {
  order: 1 !important;
}

.navbar .w-dropdown .icon.w-icon-dropdown-toggle {
  order: 2 !important;
  font-size: 10px !important;
}
/* Desktop only - sphere position */
@media screen and (min-width: 769px) {
  .spline-scene {
    transform: translateX(-20%) !important;
  }
}
/* =============================================
   HERO TEXT REPOSITIONING - PRODUCTION FIX
   =============================================
   
   Elements moved:
   1. ".text-block" (Planet of 8+ billion people) → top-left under logo
   2. ".text-block._2" (~97.5% of water...) → below first text, same position
   3. ".text-block-2" (<1% SHARE...) → lower-right, single line near planet
   
   Paste this CSS at the END of aquintaqa.webflow.css
   ============================================= */

/* ---- HERO SECTION CONTAINER ---- */
.se1 {
  position: relative !important;
}

.se1 .noize {
  position: relative !important;
}

.se1 .div1 {
  position: relative !important;
}

/* ---- TOP-LEFT TEXT GROUP (under logo) ---- */
/* Create positioning context */
.se1 .colum-l {
  position: static !important;
}

.se1 .content-img {
  position: static !important;
  display: block !important;
}

/* "Planet of 8+ billion people." - вверху слева под логотипом */
.se1 .content-img > .text-block {
  position: absolute !important;
  top: -30px !important;
  left: 30px !important;
  width: auto !important;
  max-width: 500px !important;
  text-align: left !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  letter-spacing: 1.5px !important;
  margin: 0 !important;
  z-index: 100 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}

/* "~97.5% of water..." - под первым текстом */
.se1 .content-img > .text-block._2 {
  position: absolute !important;
  top: 8px !important;
  left: 40px !important;
  width: auto !important;
  max-width: 500px !important;
  text-align: left !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
  z-index: 100 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}

/* "<1% SHARE..." - справа от сферы, по центру */
.se1 .div-block-17 {
  position: absolute !important;
  top: 45px !important;
  left: 160px !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  z-index: 100 !important;
}
/* FIX: .se1 .div-block-17 above has specificity (0,2,0) with !important on display,
   which overrode .lang-ru (0,1,0) causing BOTH EN and RU text to show simultaneously.
   This rule (0,3,0) ensures the RU duplicate stays hidden. */
.se1 .div-block-17.lang-ru {
  display: none !important;
}

.se1 .div-block-17 .text-block-2 {
  white-space: nowrap !important;
  text-align: left !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}
.navbar .menu-button {
  position: relative !important;
  top: -6.5px !important;
}
/* Глобус ближе к бургеру (премиальный spacing) */
.navbar .w-dropdown {
  margin-right: 6px !important;
}
/* ===== FIX: стрелка справа от глобуса ===== */

.navbar .w-dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;        /* расстояние между глобусом и стрелкой */
  padding: 0 !important;
}

/* Глобус */
.navbar .icon-lang {
  order: 1 !important;
  margin: 0 !important;
}

/* Стрелка */
.navbar .w-icon-dropdown-toggle {
  order: 2 !important;
  margin: 0 !important;
  font-size: 9px !important;
  opacity: 0.8;
  transform: translateY(1px); /* микро-выравнивание по центру */
}

/* Убрать ВСЕ фоны/рамки */
.navbar .w-dropdown-toggle,
.navbar .w-dropdown-toggle:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* FIX: стрелка справа от глобуса (Webflow dropdown arrow override) */
.navbar .w-dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
}

/* ВАЖНО: Webflow часто делает стрелку absolute — сбрасываем */
.navbar .w-dropdown-toggle .w-icon-dropdown-toggle {
  position: static !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  flex: none !important;
  font-size: 10px !important;
  transform: translateY(1px) !important;
}

/* Глобус */
.navbar .w-dropdown-toggle .icon-lang {
  margin: 0 !important;
  flex: none !important;
}

/* Порядок: глобус слева, стрелка справа */
.navbar .w-dropdown-toggle .icon-lang { order: 1 !important; }
.navbar .w-dropdown-toggle .w-icon-dropdown-toggle { order: 2 !important; }

/* Сфера: больше и правее (desktop only) */
@media screen and (min-width: 769px) {
  .spline-scene {
    transform: scale(1.08) translateX(-6%) translateY(3%) !important;
  }
}
/* Уменьшить заголовок */
.se1 .h1,
.se1 h1 {
  font-size: 2.85rem !important;
  line-height: 1.3 !important;
}
/* Navbar: логотип влево, иконки вправо */
.navbar {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* Стрелка ближе к глобусу */
.navbar .w-dropdown .w-dropdown-toggle {
  gap: 4px !important;
  padding-right: 0 !important;
}

/* Стрелка dropdown видимая */
.navbar .w-dropdown .w-icon-dropdown-toggle {
  position: static !important;
  display: inline-block !important;
  opacity: 0.7 !important;
  font-size: 8px !important;
  margin-left: 2px !important;
}

/* Аккуратный spacing между глобусом и бургером */
.navbar .w-dropdown {
  margin-right: 6px !important;
}
/* Navbar на всю ширину, элементы в углы */
.navbar {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: absolute !important;
}

/* Убрать ограничение ширины контейнера */
.navbar.w-container {
  max-width: 100% !important;
}
.se1 .content-img > .text-block,
.se1 .content-img > .text-block._2 {
  font-family: inherit !important;  /* вернет оригинальный шрифт Webflow */
  letter-spacing: 0.08em;
  font-weight: 300;

  margin-left: 35px !important;  /* ← ВОТ ЭТО СДВИГАЕТ ВПРАВО */

}
.se1 .content-img > .text-block,
.se1 .content-img > .text-block._2 {
  max-width: 560px !important;
}

.se1 .content-img > .text-block._2 {
  opacity: 1 !important;
}

}
/* ===== HERO SUBTITLE: make smaller ===== */

.se1 .colum-r .text {
  font-size: 1.1rem !important;   /* было ~1.4rem → стало аккуратнее */
  line-height: 1.4 !important;
  opacity: 0.9 !important;
}

/* Hover — тоже без рамок */
.se1 .div-block-4 .link.button:hover,
.se1 .div-block-4 .link.button._2:hover {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: rgba(66, 207, 242, 0.14) !important;
}
/* ===== LANGUAGE DROPDOWN: clean + under globe ===== */

/* Контейнер дропдауна */
.navbar .dropdown-list-lang {
  background: rgba(0, 0, 0, 0.92) !important; /* чёрный как фон */
  border: none !important;
  box-shadow: none !important;
  border-radius: 10px !important;

  position: absolute !important;
  top: calc(100% + 8px) !important; /* ⬇️ ниже глобуса */
  right: 0 !important;
  left: auto !important;

  padding: 6px 0 !important;
  min-width: 80px !important;
}

/* Убрать Webflow-рамки/фон в открытом состоянии */
.dropdown-list-lang.w--open {
  background: rgba(0, 0, 0, 0.92) !important;
  border: none !important;
  box-shadow: none !important;
}

/* Ссылки языков */
.navbar .dropdown-list-lang .w-dropdown-link {
  color: #ffffff !important;
  background: transparent !important;
  padding: 8px 14px !important;
  font-size: 0.85rem !important;
  text-align: center !important;
}

/* Hover — лёгкая подсветка */
.navbar .dropdown-list-lang .w-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
}
/* ===== LANGUAGE DROPDOWN: centered under globe, no borders ===== */

/* Родитель (кнопка-глобус) — якорь */
.navbar .w-dropdown {
  position: relative !important;
}

/* Сам выпадающий список */
.navbar .dropdown-list-lang {
  position: absolute !important;
  top: calc(100% + 6px) !important;   /* строго вниз */
  left: 50% !important;               /* центрируем */
  transform: translateX(-50%) !important;

  background: rgba(0, 0, 0, 0.95) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  padding: 6px 0 !important;
  min-width: 72px !important;
  border-radius: 10px !important;
}

/* Webflow open-state — тоже без рамок */
.navbar .dropdown-list-lang.w--open {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Пункты языков */
.navbar .dropdown-list-lang .w-dropdown-link {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  background: transparent !important;
  color: #ffffff !important;
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  text-align: center !important;
}

/* Hover — мягкий, без рамок */
.navbar .dropdown-list-lang .w-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}
/* ===== LANG DROPDOWN: anchor to globe icon precisely ===== */

/* Языковой dropdown — это прямой дочерний .w-dropdown в .navbar (в отличие от "More" в меню) */
.navbar > .w-dropdown {
  position: relative !important;
  width: 28px !important;              /* = ширина области под глобус */
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Кнопка-глобус: строго по центру */
.navbar > .w-dropdown > .w-dropdown-toggle {
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

/* Сам список: ровно под глобусом */
.navbar > .w-dropdown .dropdown-list-lang {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;

  background: rgba(0, 0, 0, 0.95) !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 10px !important;

  padding: 6px 0 !important;
  min-width: 76px !important;
}

/* Убираем "пилюли/рамки" — они идут от класса .link */
.navbar > .w-dropdown .dropdown-list-lang .link,
.navbar > .w-dropdown .dropdown-list-lang .w-dropdown-link {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;

  color: #fff !important;
  display: block !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  text-align: center !important;
  font-size: 0.85rem !important;
}

/* Hover без рамок */
.navbar > .w-dropdown .dropdown-list-lang .link:hover,
.navbar > .w-dropdown .dropdown-list-lang .w-dropdown-link:hover {
  background: rgba(255,255,255,0.06) !important;
}
/* ===== BURGER MENU (Webflow Nav): half-screen, black, no borders ===== */

/* Сам выезжающий контейнер меню */
.w-nav-menu {
  width: 50vw !important;                 /* пол экрана */
  max-width: 520px !important;            /* чтобы не было огромным на 4K */
  min-width: 320px !important;            /* чтобы не было слишком узким */
  height: 100vh !important;

  background: rgba(0, 0, 0, 0.97) !important;
  border: none !important;
  box-shadow: none !important;

  padding: 28px 22px !important;
}

/* Если Webflow добавляет рамку/тень в открытом состоянии */
.w-nav-menu.w--open {
  border: none !important;
  box-shadow: none !important;
}

/* Пункты меню (сейчас они выглядят как "кнопки") — убираем рамки */
.w-nav-menu .w-nav-link,
.w-nav-menu .w-dropdown-toggle,
.w-nav-menu .w-dropdown-link,
.w-nav-menu .link {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;

  color: #ffffff !important;
  padding: 14px 8px !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Hover — лёгкая подсветка, без рамок */
.w-nav-menu .w-nav-link:hover,
.w-nav-menu .w-dropdown-toggle:hover,
.w-nav-menu .w-dropdown-link:hover,
.w-nav-menu .link:hover {
  background: rgba(255,255,255,0.06) !important;
}

/* "Get Full Details" внутри меню — тоже без рамок, но можно чуть заметнее */
.w-nav-menu .link.button {
  border: none !important;
  box-shadow: none !important;
  background: rgba(66, 207, 242, 0.10) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
}
.w-nav-menu .link.button:hover {
  background: rgba(66, 207, 242, 0.16) !important;
}
/* ===== BURGER MENU: TRUE 50% SCREEN OVERLAY ===== */

/* Само меню — делаем overlay относительно viewport */
.w-nav-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 35vw !important;          /* РОВНО половина экрана */
  height: 100vh !important;
  max-width: none !important;

  background: rgba(0, 0, 0, 0.97) !important;
  border: none !important;
  box-shadow: none !important;

  padding: 32px 28px !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
}

/* Webflow open state */
.w-nav-menu.w--open {
  right: 0 !important;
}

/* ===== УБИРАЕМ СИНИЕ "КНОПКИ" У ПУНКТОВ ===== */

.w-nav-menu .w-nav-link,
.w-nav-menu .w-dropdown-toggle {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;

  padding: 14px 6px !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Hover — аккуратная подсветка */
.w-nav-menu .w-nav-link:hover,
.w-nav-menu .w-dropdown-toggle:hover {
  background: rgba(255,255,255,0.06) !important;
}
/* ===== "More" dropdown inside burger ===== */

.w-nav-menu .w-dropdown-list {
  background: rgba(0, 0, 0, 0.97) !important;
  border: none !important;
  box-shadow: none !important;
}

/* Пункты внутри More */
.w-nav-menu .w-dropdown-list .w-dropdown-link {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;

  padding: 12px 10px !important;
}

/* Hover */
.w-nav-menu .w-dropdown-list .w-dropdown-link:hover {
  background: rgba(255,255,255,0.06) !important;
}

/* ===== FORCE BLACK TOP BAR (NAVBAR) ===== */

.navbar,
.w-nav,
.w-nav-overlay {
  background: #000000 !important;
  background-image: none !important;
}
/* ===== FORCE BLACK BODY BACKGROUND ===== */

html, body {
  background: #000000 !important;
}

/* ===== FINAL FIX: NO RO exactly under H1 ===== */

.se1 .colum-r {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.se1 .colum-r h1,
.se1 .colum-r .text {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
  text-align: left !important;
}

/* ТОНКАЯ ЮСТИРОВКА под заголовок */
.se1 .colum-r .text {
  position: relative !important;
  transform: translateX(2px) !important;
}
/* Меню: справа у края экрана */
.nav-menu-2 {
  right: 0 !important;
  left: auto !important;
  width: 35% !important;
  min-width: 50% !important;
  padding: 96px 50px 31px 40px !important;
  align-items: flex-end !important;
}

.nav-menu-2 .div-block-12 {
  align-items: flex-end !important;
}

.nav-menu-2 .link.menu {
  text-align: right !important;
  width: auto !important;
}
/* Текст меню прижат к правому краю */
.nav-menu-2 {
  right: 0 !important;
  left: auto !important;
  width: 50% !important;
  padding: 96px 30px 31px 40px !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

.nav-menu-2 .div-block-12 {
  align-items: flex-end !important;
  margin-left: auto !important;
  padding-right: 0 !important;
}

.nav-menu-2 .link.menu {
  text-align: right !important;
  padding-right: 0 !important;
}
.se1 .content-img > .text-block._2 {
  color: rgba(255,255,255,0.72) !important;
  opacity: 1 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}
/* ===== HERO CTA BUTTONS: clean SpaceX-like ===== */
.se1 .div-block-4{
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: center !important;
}

/* сами кнопки */
.se1 .div-block-4 .link.button,
.se1 .div-block-4 .link.button._2{
  background: transparent !important;
  background-color: transparent !important;

  border: 0.5px solid rgba(8, 145, 178, 0.5) !important;
  border-radius: 8px !important; /* не пилюля */

  padding: 8px 14px !important;   /* рамка ближе к тексту */
  font-size: 0.95rem !important;
  line-height: 1 !important;

  color: #fff !important;

  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease !important;

  white-space: nowrap !important;
}

/* hover */
.se1 .div-block-4 .link.button:hover,
.se1 .div-block-4 .link.button._2:hover{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(8, 145, 178, 0.8) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15) !important;
  transform: translateY(-1px);
}

/* active (клик) */
.se1 .div-block-4 .link.button:active,
.se1 .div-block-4 .link.button._2:active{
  transform: translateY(0px);
}
/* Burger menu = like Learn the Technology buttons */

.nav-menu-2 .w-nav-link {
  font-family: inherit !important;
  font-weight: 300 !important;        /* тоньше чем Planet */
  letter-spacing: 0.02em !important;  /* как у кнопок */
  font-size: 16px !important;         /* аккуратный UI размер */
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.35s ease, transform 0.35s ease;
}

/* Hover effect */
.nav-menu-2 .w-nav-link:hover {
  color: #ffffff !important;
  transform: translateX(-2px);
}
/* Planet overlay: make both lines identical */
.se1 .content-img > .text-block,
.se1 .content-img > .text-block._2{
  color: rgba(255,255,255,0.88) !important;
  opacity: 1 !important;

  font-size: 1.11rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  line-height: 151% !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}
.se1 .div-block-4 {
  margin-top: 2.5rem !important;
}


/* Ширина меню */
.w-nav-menu,
.nav-menu-2 {
  width: 48vw !important;
  min-width: 48vw !important;
}
/* === HERO LEFT TEXT: -15% SCALE (ALL 3 LINES) === */
.se1 .content-img > .text-block,
.se1 .content-img > .text-block._2 {
  font-size: 0.94rem !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}

/* ==============================================
   MOBILE HERO - SpaceX-style layout
   Full sphere visible, no cropping
   ============================================== */

@media screen and (max-width: 768px) {
  /* === PREVENT HORIZONTAL SCROLL === */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  * {
    box-sizing: border-box !important;
  }

  /* === HEADER: icons aligned, larger logo === */
  .navbar {
    padding: 14px 20px !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin-top: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* Larger logo on mobile */
  .logo {
    width: 160px !important;
    padding-bottom: 52px !important;
    min-width: 140px !important;
  }

  /* Icons container: align globe and burger on same line */
  .navbar .div-block-11 {
    display: flex !important;
    align-items: center !important;
    height: 24px !important;
    transform: none !important;
  }

  .navbar .w-dropdown {
    display: flex !important;
    align-items: center !important;
    height: 24px !important;
    margin-right: 16px !important;
    transform: none !important;
  }

  .navbar .w-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    height: 24px !important;
    padding: 0 !important;
  }

  .navbar .icon-lang {
    width: 22px !important;
    height: 22px !important;
  }

  /* Arrow: pull it right next to the globe, not floating in the padding gap */
  .navbar .w-dropdown-toggle {
    padding-right: 0 !important;
  }
  .navbar .w-icon-dropdown-toggle {
    position: static !important;
    right: auto !important;
    top: auto !important;
    margin: 0 0 0 3px !important;
    font-size: 8px !important;
    opacity: 0.7 !important;
  }

  .navbar .menu-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 24px !important;
    width: 24px !important;
    padding: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  .w-icon-nav-menu {
    width: 22px !important;
    color: #fff !important;
    top: 0 !important;
  }

  /* === HERO SECTION: Full viewport with flex === */
  .se1 {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .se1 .noize {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
  }

  .se1 .div1 {
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    display: flex !important;
    overflow: visible !important;
  }

  /* Stats text — force static flow on mobile so <1% SHARE sits under second line */
  .se1 .colum-l .content-img .div-block-17 {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: auto !important;
    width: auto !important;
    margin-top: 6px !important;
    margin-left: 0 !important;
  }

  .se1 .colum-l .content-img > .text-block,
  .se1 .colum-l .content-img > .text-block._2 {
    position: static !important;
    top: auto !important;
    left: auto !important;
  }

  /* === SPHERE CONTAINER: Full screen, no clipping === */
  .spline-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  /* Sphere scene: wider than viewport to show full sphere */
  .spline-scene {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-35%, -50%) !important;
    width: 140vw !important;
    height: 140vw !important;
    max-width: 600px !important;
    max-height: 600px !important;
    padding-top: 0 !important;
    z-index: 1 !important;
    overflow: visible !important;
    inset: auto !important;
  }

  .spline-scene canvas {
    width: 100% !important;
    height: 100% !important;
  }

  /* === BOTTOM: Title + Subtitle + Button (SpaceX style) === */
  .se1 .colum-r {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 20 !important;
    padding: 30px 24px 50px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 70%, transparent 100%) !important;
  }

  .se1 .h1,
  .se1 h1 {
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px !important;
    text-align: left !important;
    text-transform: uppercase !important;
  }

  .se1 .colum-r .text {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: left !important;
    transform: none !important;
    max-width: 90% !important;
  }

  .se1 .div-block-4 {
    margin-top: 1.75rem !important;
    width: auto !important;
  }

  .se1 .div-block-4 .link.button,
  .se1 .div-block-4 .link.button._2 {
    font-size: 0.9rem !important;
    padding: 14px 28px !important;
    border-width: 1px !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 400 !important;
  }

  /* Hide desktop elements */
  .se1 .podpis,
  .se1 .sfera,
  .se1 .div-block-5 {
    display: none !important;
  }

  /* Menu mobile: full-screen overlay */
  .nav-menu-2 {
    width: 100vw !important;
    min-width: 100vw !important;
    right: 0 !important;
    left: 0 !important;
  }
}

/* === TABLET / LARGE MOBILE (430-768px) === */
@media screen and (min-width: 430px) and (max-width: 768px) {
  .spline-scene {
    transform: translate(-38%, -50%) !important;
    width: 130vw !important;
    height: 130vw !important;
    max-width: 550px !important;
    max-height: 550px !important;
  }

  .se1 .h1,
  .se1 h1 {
    font-size: 2rem !important;
  }
}

/* === MEDIUM MOBILE (≤430px) - iPhone 14 Pro Max === */
@media screen and (max-width: 430px) {
  .spline-scene {
    transform: translate(-35%, -50%) !important;
    width: 140vw !important;
    height: 140vw !important;
    max-width: 580px !important;
    max-height: 580px !important;
  }


  .se1 .h1,
  .se1 h1 {
    font-size: 1.65rem !important;
  }
}

/* === SMALL MOBILE (≤390px) === */
@media screen and (max-width: 390px) {
  .logo {
    width: 145px !important;
    padding-bottom: 48px !important;
  }

  .spline-scene {
    transform: translate(-35%, -50%) !important;
    width: 135vw !important;
    height: 135vw !important;
    max-width: 520px !important;
    max-height: 520px !important;
  }


  .se1 .colum-r {
    padding: 25px 20px 40px 20px !important;
  }

  .se1 .h1,
  .se1 h1 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }

  .se1 .colum-r .text {
    font-size: 0.92rem !important;
  }

  .se1 .div-block-4 {
    margin-top: 1.2rem !important;
  }

  .se1 .div-block-4 .link.button,
  .se1 .div-block-4 .link.button._2 {
    font-size: 0.85rem !important;
    padding: 12px 20px !important;
  }
}

/* === EXTRA SMALL MOBILE (≤350px) === */
@media screen and (max-width: 350px) {
  .navbar {
    padding: 12px 16px !important;
  }

  .logo {
    width: 130px !important;
    padding-bottom: 42px !important;
  }

  .navbar .w-dropdown {
    margin-right: 12px !important;
  }

  .spline-scene {
    transform: translate(-35%, -50%) !important;
    width: 130vw !important;
    height: 130vw !important;
    max-width: 450px !important;
    max-height: 450px !important;
  }

  .se1 .colum-r {
    padding: 20px 16px 35px 16px !important;
  }

  .se1 .h1,
  .se1 h1 {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
  }

  .se1 .colum-r .text {
    font-size: 0.85rem !important;
  }

  .se1 .div-block-4 {
    margin-top: 1rem !important;
  }

  .se1 .div-block-4 .link.button,
  .se1 .div-block-4 .link.button._2 {
    font-size: 0.8rem !important;
    padding: 10px 16px !important;
  }
}

/* =============================================
   DESKTOP/TABLET: WebGL fallback sphere
   Shows when Spline 3D fails, no WebGL, or
   user prefers reduced motion / save-data.
   Mobile: untouched (sphere hidden on mobile).
   ============================================= */
@media screen and (min-width: 768px) {
  .sphere-fallback {
    display: none;
    position: absolute;
    inset: 0%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }

  .sphere-fallback.visible {
    display: block;
  }

  .sphere-fallback.fade-out {
    opacity: 0;
  }

  .sphere-fallback img {
    position: absolute;
    width: 80vh;
    height: 80vh;
    max-width: none;
    max-height: none;
    top: 62%;
    left: 20%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
  }
}

/* Desktop/tablet: contain spline scene within viewport (prevents Safari left-clip) */
@media screen and (min-width: 769px) {
  .spline-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
}

/* Tablet (769–1200px): sphere lower-left + text block raised above sphere
   Upper bound 1200px covers iPad Air / iPad Pro landscape (1180px logical width) */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .spline-scene {
    transform: scale(1.08) translateX(-12%) translateY(14%) !important;
  }

  /* Raise the 3-line text group so it clears the sphere */
  .se1 .content-img > .text-block {
    top: -55px !important;
  }
  .se1 .content-img > .text-block._2 {
    top: -18px !important;
  }
  .se1 .div-block-17 {
    top: 14px !important;
    left: 120px !important;
  }
}

/* Ultrawide screens: reduce sphere scale to prevent cropping */
@media screen and (min-width: 769px) and (min-aspect-ratio: 21/9) {
  .spline-scene {
    transform: scale(1.0) translateX(-5%) translateY(4%) !important;
  }
  .sphere-fallback img {
    width: 84vh;
    height: 84vh;
  }
}

/* Short screens (< 700px height): less aggressive scaling */
@media screen and (min-width: 769px) and (max-height: 680px) {
  .spline-scene {
    transform: scale(1.05) translateX(-5%) translateY(4%) !important;
  }
}

/* Reduced motion: disable all sphere animations */
@media screen and (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sphere-fallback::before {
    animation: none;
  }
}
